From 9d102f1f697345dee097012507ca7a33dbda6402 Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:56:56 +0200 Subject: [PATCH 1/3] chore: add legacy project templates --- .../TelerikBlazorServerAdmin.sln | 25 + .../TelerikBlazorServerAdmin/App.razor | 12 + .../Data/DataService.cs | 1584 + .../Data/IDataService.cs | 13 + .../Models/Employee/Employee.cs | 23 + .../Models/Employee/EmployeeViewModel.cs | 11 + .../Models/Employee/Team.cs | 20 + .../Models/MyDropDownListModel.cs | 8 + .../Models/ProductDto.cs | 9 + .../Models/Sales/Sale.cs | 23 + .../Models/Sales/SalesByDateViewModel.cs | 18 + .../Models/Sales/SalesImportDTO.cs | 19 + .../Models/SettingsModel.cs | 24 + .../Pages/About.razor | 44 + .../Pages/Dashboard.razor | 213 + .../Pages/Dashboard.razor.cs | 61 + .../Pages/Error.cshtml | 42 + .../Pages/Error.cshtml.cs | 28 + .../Pages/PerformanceAndSales.razor | 236 + .../Pages/PerformanceAndSales.razor.cs | 76 + .../Pages/Products.razor | 113 + .../Pages/Products.razor.cs | 118 + .../Pages/Settings.razor | 191 + .../Pages/Settings.razor.cs | 57 + .../Pages/_Host.cshtml | 6 + .../Pages/_Layout.cshtml | 38 + .../Pages/_ViewImports.cshtml | 5 + .../Pages/_ViewStart.cshtml | 3 + .../TelerikBlazorServerAdmin/Program.cs | 63 + .../Properties/launchSettings.json | 28 + .../Properties/serviceDependencies.json | 8 + .../Properties/serviceDependencies.local.json | 8 + .../Shared/MainLayout.razor | 146 + .../Shared/SurveyPrompt.razor | 16 + .../Shared/TelerikLayout.razor | 5 + .../TelerikBlazorServerAdmin.csproj | 28 + .../TelerikBlazorServerAdmin/_Imports.razor | 13 + .../wwwroot/assets/employees/1.jpg | Bin 0 -> 5941 bytes .../wwwroot/assets/employees/10.jpg | Bin 0 -> 8692 bytes .../wwwroot/assets/employees/2.jpg | Bin 0 -> 9577 bytes .../wwwroot/assets/employees/3.jpg | Bin 0 -> 9113 bytes .../wwwroot/assets/employees/4.jpg | Bin 0 -> 8013 bytes .../wwwroot/assets/employees/5.jpg | Bin 0 -> 8008 bytes .../wwwroot/assets/employees/6.jpg | Bin 0 -> 8692 bytes .../wwwroot/assets/employees/7.jpg | Bin 0 -> 7963 bytes .../wwwroot/assets/employees/8.jpg | Bin 0 -> 11580 bytes .../wwwroot/assets/employees/9.jpg | Bin 0 -> 10647 bytes .../wwwroot/assets/navigation/Avatar.svg | 9 + .../wwwroot/assets/products/1.png | Bin 0 -> 24976 bytes .../wwwroot/assets/products/2.png | Bin 0 -> 26903 bytes .../wwwroot/assets/products/3.png | Bin 0 -> 48688 bytes .../wwwroot/assets/products/4.png | Bin 0 -> 55658 bytes .../wwwroot/assets/products/5.png | Bin 0 -> 36132 bytes .../wwwroot/assets/products/6.png | Bin 0 -> 48049 bytes .../wwwroot/assets/products/7.png | Bin 0 -> 51736 bytes .../wwwroot/assets/products/8.png | Bin 0 -> 48222 bytes .../wwwroot/assets/products/9.png | Bin 0 -> 23898 bytes .../wwwroot/assets/sales_data.json | 299957 +++++++++++++++ .../wwwroot/assets/settings/cloud.svg | 3 + .../wwwroot/assets/signin/background.svg | 22 + .../wwwroot/assets/signin/bgr-image.svg | 14 + .../wwwroot/assets/signin/kendoka.svg | 30 + .../wwwroot/assets/signin/kendoka_kendo.svg | 42 + .../wwwroot/assets/signin/signin.svg | 9 + .../wwwroot/css/bootstrap/bootstrap.min.css | 7 + .../css/bootstrap/bootstrap.min.css.map | 1 + .../wwwroot/css/open-iconic/FONT-LICENSE | 86 + .../wwwroot/css/open-iconic/ICON-LICENSE | 21 + .../wwwroot/css/open-iconic/README.md | 114 + .../font/css/open-iconic-bootstrap.min.css | 1 + .../open-iconic/font/fonts/open-iconic.eot | Bin 0 -> 28196 bytes .../open-iconic/font/fonts/open-iconic.otf | Bin 0 -> 20996 bytes .../open-iconic/font/fonts/open-iconic.svg | 543 + .../open-iconic/font/fonts/open-iconic.ttf | Bin 0 -> 28028 bytes .../open-iconic/font/fonts/open-iconic.woff | Bin 0 -> 14984 bytes .../wwwroot/css/site.css | 122 + .../wwwroot/favicon.ico | Bin 0 -> 5430 bytes .../wwwroot/imports/finserv.csv | 19998 + .../TelerikBlazorServerCRUD.sln | 25 + .../TelerikBlazorServerCRUD/App.razor | 12 + .../Models/DropDownModel.cs | 8 + .../Models/MenuItem.cs | 11 + .../TelerikBlazorServerCRUD/Models/Person.cs | 31 + .../Models/WeatherForecast.cs | 43 + .../TelerikBlazorServerCRUD/Pages/Chart.razor | 108 + .../TelerikBlazorServerCRUD/Pages/Error.razor | 16 + .../TelerikBlazorServerCRUD/Pages/Form.razor | 137 + .../TelerikBlazorServerCRUD/Pages/Grid.razor | 111 + .../TelerikBlazorServerCRUD/Pages/Index.razor | 143 + .../Pages/_Host.cshtml | 6 + .../Pages/_Layout.cshtml | 38 + .../TelerikBlazorServerCRUD/Program.cs | 38 + .../Properties/launchSettings.json | 27 + .../Services/WeatherForecastService.cs | 79 + .../Shared/MainLayout.razor | 13 + .../Shared/NavMenu.razor | 97 + .../Shared/TelerikLayout.razor | 5 + .../TelerikBlazorServerCRUD.csproj | 28 + .../TelerikBlazorServerCRUD/_Imports.razor | 12 + .../appsettings.Development.json | 9 + .../TelerikBlazorServerCRUD/appsettings.json | 10 + .../wwwroot/css/bootstrap/bootstrap.min.css | 7 + .../css/bootstrap/bootstrap.min.css.map | 1 + .../wwwroot/css/open-iconic/FONT-LICENSE | 86 + .../wwwroot/css/open-iconic/ICON-LICENSE | 21 + .../wwwroot/css/open-iconic/README.md | 114 + .../font/css/open-iconic-bootstrap.min.css | 1 + .../open-iconic/font/fonts/open-iconic.eot | Bin 0 -> 28196 bytes .../open-iconic/font/fonts/open-iconic.otf | Bin 0 -> 20996 bytes .../open-iconic/font/fonts/open-iconic.svg | 543 + .../open-iconic/font/fonts/open-iconic.ttf | Bin 0 -> 28028 bytes .../open-iconic/font/fonts/open-iconic.woff | Bin 0 -> 14984 bytes .../wwwroot/css/site.css | 85 + .../wwwroot/favicon.ico | Bin 0 -> 32038 bytes .../TelerikBlazorServerDashboard.sln | 25 + .../TelerikBlazorServerDashboard/App.razor | 12 + .../Components/Tiles/PerformanceTrend.razor | 42 + .../Components/Tiles/PlatformsChart.razor | 50 + .../Components/Tiles/TopEpisodes.razor | 87 + .../Components/Tiles/TotalDownloads.razor | 12 + .../Components/Tiles/TotalReach.razor | 12 + .../Components/Tiles/TotalRevenue.razor | 12 + .../Components/Tiles/TotalStreams.razor | 13 + .../Components/Tiles/WeeklyRecap.razor | 42 + .../Models/PlatformViewModel.cs | 8 + .../Models/PodcastViewModel.cs | 35 + .../Pages/Index.razor | 85 + .../Pages/_Host.cshtml | 6 + .../Pages/_Layout.cshtml | 38 + .../TelerikBlazorServerDashboard/Program.cs | 39 + .../Properties/launchSettings.json | 27 + .../Services/DashboardDataService.cs | 79 + .../Shared/MainLayout.razor | 24 + .../Shared/TelerikLayout.razor | 5 + .../TelerikBlazorServerDashboard.csproj | 28 + .../_Imports.razor | 12 + .../appsettings.Development.json | 9 + .../appsettings.json | 10 + .../wwwroot/css/bootstrap/bootstrap.min.css | 7 + .../css/bootstrap/bootstrap.min.css.map | 1 + .../wwwroot/css/site.css | 68 + .../wwwroot/favicon.ico | Bin 0 -> 32038 bytes .../TelerikBlazorWASMAdmin.Client/App.razor | 10 + .../Pages/About.razor | 44 + .../Pages/Dashboard.razor | 210 + .../Pages/Dashboard.razor.cs | 46 + .../Pages/PerformanceAndSales.razor | 234 + .../Pages/PerformanceAndSales.razor.cs | 46 + .../Pages/Products.razor | 111 + .../Pages/Products.razor.cs | 102 + .../Pages/Settings.razor | 190 + .../Pages/Settings.razor.cs | 78 + .../TelerikBlazorWASMAdmin.Client/Program.cs | 20 + .../Properties/launchSettings.json | 30 + .../Shared/CultureChooser.razor | 51 + .../Shared/MainLayout.razor | 147 + .../Shared/SurveyPrompt.razor | 16 + .../Shared/TelerikLayout.razor | 5 + .../TelerikBlazorWASMAdmin.Client.csproj | 26 + .../_Imports.razor | 13 + .../wwwroot/assets/employees/1.jpg | Bin 0 -> 5941 bytes .../wwwroot/assets/employees/10.jpg | Bin 0 -> 8692 bytes .../wwwroot/assets/employees/2.jpg | Bin 0 -> 9577 bytes .../wwwroot/assets/employees/3.jpg | Bin 0 -> 9113 bytes .../wwwroot/assets/employees/4.jpg | Bin 0 -> 8013 bytes .../wwwroot/assets/employees/5.jpg | Bin 0 -> 8008 bytes .../wwwroot/assets/employees/6.jpg | Bin 0 -> 8692 bytes .../wwwroot/assets/employees/7.jpg | Bin 0 -> 7963 bytes .../wwwroot/assets/employees/8.jpg | Bin 0 -> 11580 bytes .../wwwroot/assets/employees/9.jpg | Bin 0 -> 10647 bytes .../wwwroot/assets/navigation/Avatar.svg | 9 + .../wwwroot/assets/products/1.png | Bin 0 -> 24976 bytes .../wwwroot/assets/products/2.png | Bin 0 -> 26903 bytes .../wwwroot/assets/products/3.png | Bin 0 -> 48688 bytes .../wwwroot/assets/products/4.png | Bin 0 -> 55658 bytes .../wwwroot/assets/products/5.png | Bin 0 -> 36132 bytes .../wwwroot/assets/products/6.png | Bin 0 -> 48049 bytes .../wwwroot/assets/products/7.png | Bin 0 -> 51736 bytes .../wwwroot/assets/products/8.png | Bin 0 -> 48222 bytes .../wwwroot/assets/products/9.png | Bin 0 -> 23898 bytes .../wwwroot/assets/settings/cloud.svg | 3 + .../wwwroot/assets/signin/background.svg | 22 + .../wwwroot/assets/signin/bgr-image.svg | 14 + .../wwwroot/assets/signin/kendoka.svg | 30 + .../wwwroot/assets/signin/kendoka_kendo.svg | 42 + .../wwwroot/assets/signin/signin.svg | 9 + .../wwwroot/css/app.css | 123 + .../wwwroot/css/bootstrap/bootstrap.min.css | 7 + .../css/bootstrap/bootstrap.min.css.map | 1 + .../wwwroot/css/open-iconic/FONT-LICENSE | 86 + .../wwwroot/css/open-iconic/ICON-LICENSE | 21 + .../wwwroot/css/open-iconic/README.md | 114 + .../font/css/open-iconic-bootstrap.min.css | 1 + .../open-iconic/font/fonts/open-iconic.eot | Bin 0 -> 28196 bytes .../open-iconic/font/fonts/open-iconic.otf | Bin 0 -> 20996 bytes .../open-iconic/font/fonts/open-iconic.svg | 543 + .../open-iconic/font/fonts/open-iconic.ttf | Bin 0 -> 28028 bytes .../open-iconic/font/fonts/open-iconic.woff | Bin 0 -> 14984 bytes .../wwwroot/favicon.ico | Bin 0 -> 5430 bytes .../wwwroot/index.html | 28 + .../Models/Employee/Employee.cs | 23 + .../Models/Employee/EmployeeViewModel.cs | 11 + .../Models/Employee/Team.cs | 20 + .../Models/ProductDto.cs | 9 + .../Models/Sales/Sale.cs | 23 + .../Models/Sales/SalesByDateViewModel.cs | 18 + .../Models/Sales/SalesImportDTO.cs | 20 + .../TelerikBlazorWASMAdmin.Shared.csproj | 12 + .../TelerikBlazorWASMAdmin.sln | 37 + .../Controllers/EmployeeController.cs | 27 + .../Controllers/SalesController.cs | 62 + .../Data/DataService.cs | 1584 + .../Data/IDataService.cs | 13 + .../TelerikBlazorWASMAdmin/Program.cs | 54 + .../Properties/launchSettings.json | 30 + .../Properties/serviceDependencies.json | 8 + .../Properties/serviceDependencies.local.json | 8 + .../TelerikBlazorWASMAdmin.Server.csproj | 18 + .../wwwroot/assets/sales_data.json | 299957 +++++++++++++++ .../wwwroot/imports/finserv.csv | 19998 + .../TelerikBlazorWASMCRUD.Client/App.razor | 12 + .../Pages/Chart.razor | 108 + .../Pages/Form.razor | 136 + .../Pages/Grid.razor | 110 + .../Pages/Index.razor | 141 + .../TelerikBlazorWASMCRUD.Client/Program.cs | 21 + .../Properties/launchSettings.json | 27 + .../Services/WeatherForecastService.cs | 43 + .../Shared/CultureChooser.razor | 57 + .../Shared/MainLayout.razor | 13 + .../Shared/NavMenu.razor | 97 + .../Shared/TelerikLayout.razor | 5 + .../TelerikBlazorWASMCRUD.Client.csproj | 18 + .../_Imports.razor | 13 + .../wwwroot/css/bootstrap/bootstrap.min.css | 7 + .../css/bootstrap/bootstrap.min.css.map | 1 + .../wwwroot/css/open-iconic/FONT-LICENSE | 86 + .../wwwroot/css/open-iconic/ICON-LICENSE | 21 + .../wwwroot/css/open-iconic/README.md | 114 + .../font/css/open-iconic-bootstrap.min.css | 1 + .../open-iconic/font/fonts/open-iconic.eot | Bin 0 -> 28196 bytes .../open-iconic/font/fonts/open-iconic.otf | Bin 0 -> 20996 bytes .../open-iconic/font/fonts/open-iconic.svg | 543 + .../open-iconic/font/fonts/open-iconic.ttf | Bin 0 -> 28028 bytes .../open-iconic/font/fonts/open-iconic.woff | Bin 0 -> 14984 bytes .../wwwroot/css/site.css | 85 + .../wwwroot/favicon.ico | Bin 0 -> 32038 bytes .../wwwroot/index.html | 25 + .../DropDownModel.cs | 8 + .../TelerikBlazorWASMCRUD.Shared/MenuItem.cs | 11 + .../TelerikBlazorWASMCRUD.Shared/Person.cs | 31 + .../TelerikBlazorWASMCRUD.Shared.csproj | 17 + .../WeatherForecast.cs | 45 + .../TelerikBlazorWASMCRUD.sln | 37 + .../Controllers/WeatherForecastController.cs | 100 + .../TelerikBlazorWASMCRUD/Program.cs | 40 + .../Properties/launchSettings.json | 29 + .../TelerikBlazorWASMCRUD.Server.csproj | 16 + .../App.razor | 12 + .../Components/Tiles/PerformanceTrend.razor | 42 + .../Components/Tiles/PlatformsChart.razor | 50 + .../Components/Tiles/TopEpisodes.razor | 87 + .../Components/Tiles/TotalDownloads.razor | 12 + .../Components/Tiles/TotalReach.razor | 12 + .../Components/Tiles/TotalRevenue.razor | 12 + .../Components/Tiles/TotalStreams.razor | 13 + .../Components/Tiles/WeeklyRecap.razor | 42 + .../Pages/Index.razor | 88 + .../Program.cs | 22 + .../Properties/launchSettings.json | 27 + .../Services/DashboardDataService.cs | 51 + .../Shared/CultureChooser.razor | 57 + .../Shared/MainLayout.razor | 24 + .../Shared/TelerikLayout.razor | 5 + .../TelerikBlazorWASMDashboard.Client.csproj | 18 + .../_Imports.razor | 13 + .../wwwroot/css/bootstrap/bootstrap.min.css | 7 + .../css/bootstrap/bootstrap.min.css.map | 1 + .../wwwroot/css/site.css | 68 + .../wwwroot/favicon.ico | Bin 0 -> 32038 bytes .../wwwroot/index.html | 25 + .../Models/PlatformViewModel.cs | 8 + .../Models/PodcastViewModel.cs | 35 + .../TelerikBlazorWASMDashboard.Shared.csproj | 14 + .../TelerikBlazorWASMDashboard.sln | 37 + .../Controllers/PodcastDataController.cs | 98 + .../TelerikBlazorWASMDashboard/Program.cs | 41 + .../Properties/launchSettings.json | 29 + .../TelerikBlazorWASMDashboard.Server.csproj | 16 + 289 files changed, 654315 insertions(+) create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.sln create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/App.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/DataService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/IDataService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Employee.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/EmployeeViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Team.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/MyDropDownListModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/ProductDto.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/Sale.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesByDateViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesImportDTO.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/SettingsModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/About.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Host.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Layout.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewImports.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewStart.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.local.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/MainLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/SurveyPrompt.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/TelerikLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/_Imports.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/1.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/10.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/2.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/3.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/4.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/5.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/6.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/7.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/8.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/9.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/navigation/Avatar.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/1.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/2.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/3.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/4.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/5.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/6.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/7.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/8.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/9.png create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/sales_data.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/settings/cloud.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/background.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/bgr-image.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka_kendo.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/signin.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css.map create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/FONT-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/ICON-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/README.md create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/font/fonts/open-iconic.eot create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/font/fonts/open-iconic.otf create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/font/fonts/open-iconic.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/open-iconic/font/fonts/open-iconic.woff create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/site.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/favicon.ico create mode 100644 common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/imports/finserv.csv create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD.sln create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/App.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Models/DropDownModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Models/MenuItem.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Models/Person.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Models/WeatherForecast.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/Chart.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/Error.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/Form.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/Grid.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/Index.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/_Host.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Pages/_Layout.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Services/WeatherForecastService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Shared/MainLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Shared/NavMenu.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/Shared/TelerikLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/TelerikBlazorServerCRUD.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/_Imports.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/appsettings.Development.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/appsettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/bootstrap/bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/bootstrap/bootstrap.min.css.map create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/FONT-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/ICON-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/README.md create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/font/fonts/open-iconic.eot create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/font/fonts/open-iconic.otf create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/font/fonts/open-iconic.svg create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/open-iconic/font/fonts/open-iconic.woff create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/css/site.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerCrudApp/TelerikBlazorServerCRUD/wwwroot/favicon.ico create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard.sln create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/App.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/PerformanceTrend.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/PlatformsChart.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/TopEpisodes.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/TotalDownloads.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/TotalReach.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/TotalRevenue.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/TotalStreams.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Components/Tiles/WeeklyRecap.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Models/PlatformViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Models/PodcastViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Pages/Index.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Pages/_Host.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Pages/_Layout.cshtml create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Services/DashboardDataService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Shared/MainLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/Shared/TelerikLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/_Imports.razor create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/appsettings.Development.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/appsettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/wwwroot/css/bootstrap/bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/wwwroot/css/bootstrap/bootstrap.min.css.map create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/wwwroot/css/site.css create mode 100644 common/legacy-project-templates/TelerikBlazorServerDashboard/TelerikBlazorServerDashboard/wwwroot/favicon.ico create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/App.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/About.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/Dashboard.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/Dashboard.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/PerformanceAndSales.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/PerformanceAndSales.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/Products.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/Products.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/Settings.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Pages/Settings.razor.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Shared/CultureChooser.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Shared/MainLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Shared/SurveyPrompt.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/Shared/TelerikLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/TelerikBlazorWASMAdmin.Client.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/_Imports.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/1.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/10.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/2.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/3.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/4.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/5.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/6.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/7.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/8.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/employees/9.jpg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/navigation/Avatar.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/1.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/2.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/3.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/4.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/5.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/6.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/7.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/8.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/products/9.png create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/settings/cloud.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/signin/background.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/signin/bgr-image.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/signin/kendoka.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/signin/kendoka_kendo.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/assets/signin/signin.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/app.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/bootstrap/bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/bootstrap/bootstrap.min.css.map create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/FONT-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/ICON-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/README.md create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/favicon.ico create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Client/wwwroot/index.html create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/Employee/Employee.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/Employee/EmployeeViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/Employee/Team.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/ProductDto.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/Sales/Sale.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/Sales/SalesByDateViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/Models/Sales/SalesImportDTO.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Shared/TelerikBlazorWASMAdmin.Shared.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.sln create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Controllers/EmployeeController.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Controllers/SalesController.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Data/DataService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Data/IDataService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Properties/serviceDependencies.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/Properties/serviceDependencies.local.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin.Server.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/wwwroot/assets/sales_data.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMAdmin/TelerikBlazorWASMAdmin/wwwroot/imports/finserv.csv create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/App.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Pages/Chart.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Pages/Form.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Pages/Grid.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Pages/Index.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Services/WeatherForecastService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Shared/CultureChooser.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Shared/MainLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Shared/NavMenu.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/Shared/TelerikLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/TelerikBlazorWASMCRUD.Client.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/_Imports.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/bootstrap/bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/bootstrap/bootstrap.min.css.map create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/FONT-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/ICON-LICENSE create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/README.md create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/css/site.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/favicon.ico create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Client/wwwroot/index.html create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Shared/DropDownModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Shared/MenuItem.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Shared/Person.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Shared/TelerikBlazorWASMCRUD.Shared.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Shared/WeatherForecast.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.sln create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD/Controllers/WeatherForecastController.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD/TelerikBlazorWASMCRUD.Server.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/App.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/PerformanceTrend.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/PlatformsChart.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/TopEpisodes.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/TotalDownloads.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/TotalReach.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/TotalRevenue.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/TotalStreams.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Components/Tiles/WeeklyRecap.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Pages/Index.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Services/DashboardDataService.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Shared/CultureChooser.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Shared/MainLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/Shared/TelerikLayout.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/TelerikBlazorWASMDashboard.Client.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/_Imports.razor create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/wwwroot/css/bootstrap/bootstrap.min.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/wwwroot/css/bootstrap/bootstrap.min.css.map create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/wwwroot/css/site.css create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/wwwroot/favicon.ico create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Client/wwwroot/index.html create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Shared/Models/PlatformViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Shared/Models/PodcastViewModel.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Shared/TelerikBlazorWASMDashboard.Shared.csproj create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.sln create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard/Controllers/PodcastDataController.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard/Program.cs create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard/Properties/launchSettings.json create mode 100644 common/legacy-project-templates/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard/TelerikBlazorWASMDashboard.Server.csproj diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.sln b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.sln new file mode 100644 index 00000000..55fe5eac --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33103.184 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelerikBlazorServerAdmin", "TelerikBlazorServerAdmin\TelerikBlazorServerAdmin.csproj", "{5E27769C-0C62-4798-A08E-1D87964CCD09}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5E27769C-0C62-4798-A08E-1D87964CCD09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E27769C-0C62-4798-A08E-1D87964CCD09}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E27769C-0C62-4798-A08E-1D87964CCD09}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E27769C-0C62-4798-A08E-1D87964CCD09}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5B31FD59-784D-4927-AAA8-81FEE269DF48} + EndGlobalSection +EndGlobal diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/App.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/App.razor new file mode 100644 index 00000000..9c5b0e0a --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/App.razor @@ -0,0 +1,12 @@ + + + + + + + +

Sorry, there's nothing at this address.

+
+
+
+
\ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/DataService.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/DataService.cs new file mode 100644 index 00000000..7b7fd686 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/DataService.cs @@ -0,0 +1,1584 @@ +using Microsoft.AspNetCore.Hosting; +using System.Collections.Generic; +using System.IO; +using System.Text.Json; +using TelerikBlazorServerAdmin.Models.Employee; +using TelerikBlazorServerAdmin.Models.Sales; + +namespace TelerikBlazorServerAdmin.Data +{ + public class DataService : IDataService + { + public IWebHostEnvironment WebHostEnvironment { get; set; } + + public DataService(IWebHostEnvironment webHostEnvironment) + { + WebHostEnvironment = webHostEnvironment; + } + private static List? Teams { get; set; } + private static List? Sales { get; set; } + private static List? Employees { get; set; } + public List GetTeams() + { + if (Teams == null) + { + + Teams = new List { + new Team{ + TeamId = 1, + TeamName = "Tiger Team", + TeamColor = "#FF6358" + }, + new Team { + TeamId = 2, + TeamName = "Lemon Team", + TeamColor = "#F7C62F" + }, + new Team { + TeamId = 3, + TeamName = "Organic Team", + TeamColor = "#55AB1D" + }, + new Team { + TeamId = 4, + TeamName = "Ocean Team", + TeamColor = "#28B4C8" + } + }; + } + + return Teams; + } + + public List GetEmployees() + { + if (Employees == null) + { + + Employees = new List { + new Employee { + + TeamId = 3, + FullName = "Sig Jeannel", + JobTitle = "Human Resources Assistant III", + Country = "US", + IsOnline = true, + Rating = 3, + Target = 100, + Budget = 47601, + Phone = "(936) 9429601", + Address = "138 Buhler Avenue", + ImgId = 1, + Gender = "M", + }, + new Employee { TeamId = 3, + FullName = "Shelden Greyes", + JobTitle = "Operator", + Country = "GB", + IsOnline = true, + Rating = 5, + Target = 40, + Budget = 12253, + Phone = "(343) 6656271", + Address = "2 Waxwing Point", + ImgId = 2, + Gender = "M"}, + new Employee { TeamId = 4, + + FullName = "Megen Cody", + JobTitle = "Operator", + Country = "BR", + IsOnline = true, + Rating = 1, + Target = 66, + Budget = 96183, + Phone = "(178) 2336256", + Address = "4082 Stephen Court", + ImgId = 6, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Clevey Thursfield", + JobTitle = "VP Quality Control", + Country = "BR", + IsOnline = true, + Rating = 2, + Target = 58, + Budget = 54936, + Phone = "(277) 7415010", + Address = "1563 Glacier Hill Parkway", + ImgId = 5, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Ruthi Baldini", + JobTitle = "Data Coordiator", + Country = "BR", + IsOnline = true, + Rating = 3, + Target = 37, + Budget = 46572, + Phone = "(766) 5691615", + Address = "6 Laurel Avenue", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Annecorinne Morter", + JobTitle = "Professor", + Country = "FR", + IsOnline = false, + Rating = 2, + Target = 35, + Budget = 37198, + Phone = "(807) 2524830", + Address = "106 Green Street", + ImgId = 3, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Gracia Punyer", + JobTitle = "Assistant Manager", + Country = "ES", + IsOnline = true, + Rating = 4, + Target = 64, + Budget = 84752, + Phone = "(515) 9749536", + Address = "69 Brentwood Alley", + ImgId = 2, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Duky Hurring", + JobTitle = "Account Executive", + Country = "BR", + IsOnline = false, + Rating = 3, + Target = 61, + Budget = -1266, + Phone = "(897) 7202034", + Address = "39 Morning Circle", + ImgId = 3, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Briana Shemelt", + JobTitle = "Professor", + Country = "US", + IsOnline = false, + Rating = 3, + Target = 63, + Budget = -9308, + Phone = "(205) 2560799", + Address = "11 Walton Court", + ImgId = 2, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Lexis Mostin", + JobTitle = "Analyst Programmer", + Country = "FR", + IsOnline = true, + Rating = 4, + Target = 81, + Budget = 38153, + Phone = "(903) 8388089", + Address = "38547 Westend Way", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Felizio Gooda", + JobTitle = "GIS Technical Architect", + Country = "DE", + IsOnline = true, + Rating = 3, + Target = 89, + Budget = 81585, + Phone = "(372) 2389397", + Address = "9 Summer Ridge Circle", + ImgId = 2, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Aubry Oxberry", + JobTitle = "Financial Advisor", + Country = "BR", + IsOnline = false, + Rating = 2, + Target = 3, + Budget = -6095, + Phone = "(665) 4176083", + Address = "06 Lerdahl Point", + ImgId = 10, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Orly Glasbey", + JobTitle = "Environmental Tech", + Country = "BR", + IsOnline = true, + Rating = 5, + Target = 63, + Budget = 63945, + Phone = "(449) 8482879", + Address = "4035 Porter Parkway", + ImgId = 6, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Stephanus Culp", + JobTitle = "Cost Accountant", + Country = "BR", + IsOnline = false, + Rating = 2, + Target = 60, + Budget = 10613, + Phone = "(148) 3124030", + Address = "57028 Moland Terrace", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Roseanna Janecek", + JobTitle = "Database Administrator IV", + Country = "FR", + IsOnline = false, + Rating = 4, + Target = 97, + Budget = 77351, + Phone = "(125) 4421623", + Address = "21973 Beilfuss Alley", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Weidar McCombe", + JobTitle = "Civil Engineer", + Country = "FR", + IsOnline = true, + Rating = 1, + Target = 77, + Budget = 35924, + Phone = "(488) 7911627", + Address = "7 Dahle Terrace", + ImgId = 1, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Evelin Spirritt", + JobTitle = "Analyst Programmer", + Country = "BR", + IsOnline = false, + Rating = 2, + Target = 18, + Budget = 58552, + Phone = "(821) 9538078", + Address = "89418 Knutson Pass", + ImgId = 1, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Andria Helbeck", + JobTitle = "Nurse Practicioner", + Country = "BR", + IsOnline = true, + Rating = 4, + Target = 53, + Budget = 72526, + Phone = "(387) 9614638", + Address = "8589 Vernon Drive", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Mariellen Ravelus", + JobTitle = "Systems Administrator I", + Country = "DE", + IsOnline = true, + Rating = 2, + Target = 22, + Budget = -6659, + Phone = "(300) 6741661", + Address = "707 Gale Hill", + ImgId = 9, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Corri Pergens", + JobTitle = "Help Desk Operator", + Country = "BR", + IsOnline = true, + Rating = 2, + Target = 74, + Budget = 12376, + Phone = "(769) 7145603", + Address = "856 Forest Crossing", + ImgId = 3, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Friedrick Macknish", + JobTitle = "Human Resources Assistant II", + Country = "FR", + IsOnline = true, + Rating = 2, + Target = 38, + Budget = 97848, + Phone = "(196) 4156385", + Address = "157 Talisman Trail", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Georgette Trevorrow", + JobTitle = "VP Accounting", + Country = "FR", + IsOnline = true, + Rating = 3, + Target = 3, + Budget = 17327, + Phone = "(319) 1412549", + Address = "07 Marquette Point", + ImgId = 3, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Vanya Goalby", + JobTitle = "Senior Cost Accountant", + Country = "FR", + IsOnline = false, + Rating = 2, + Target = 77, + Budget = 33584, + Phone = "(496) 7538982", + Address = "2192 Iowa Lane", + ImgId = 6, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Abel Ansell", + JobTitle = "Actuary", + Country = "US", + IsOnline = false, + Rating = 4, + Target = 52, + Budget = 12312, + Phone = "(571) 9908377", + Address = "4355 Iowa Parkway", + ImgId = 4, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Odille Barus", + JobTitle = "Speech Pathologist", + Country = "FR", + IsOnline = true, + Rating = 4, + Target = 60, + Budget = 46911, + Phone = "(974) 1137672", + Address = "496 Lotheville Avenue", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Rudolf Consadine", + JobTitle = "Structural Analysis Engineer", + Country = "FR", + IsOnline = true, + Rating = 4, + Target = 20, + Budget = 94258, + Phone = "(450) 7612220", + Address = "93 Thierer Park", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Christabel Bick", + JobTitle = "Engineer III", + Country = "FR", + IsOnline = true, + Rating = 5, + Target = 0, + Budget = 65359, + Phone = "(361) 5159566", + Address = "191 Bunting Pass", + ImgId = 5, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Lancelot Tanzer", + JobTitle = "Senior Developer", + Country = "US", + IsOnline = true, + Rating = 5, + Target = 80, + Budget = 13246, + Phone = "(502) 3949900", + Address = "4287 Corben Plaza", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Bink Byk", + JobTitle = "Software Engineer I", + Country = "FR", + IsOnline = false, + Rating = 3, + Target = 17, + Budget = 56472, + Phone = "(475) 9070061", + Address = "075 Eggendart Avenue", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Rhys Pheazey", + JobTitle = "Speech Pathologist", + Country = "BR", + IsOnline = false, + Rating = 5, + Target = 98, + Budget = 62483, + Phone = "(365) 8904529", + Address = "987 Carioca Lane", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Lyndell Howieson", + JobTitle = "Speech Pathologist", + Country = "DE", + IsOnline = true, + Rating = 2, + Target = 82, + Budget = 16694, + Phone = "(461) 3130038", + Address = "9 Pennsylvania Crossing", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Cassey Fitchell", + JobTitle = "Software Engineer III", + Country = "FR", + IsOnline = true, + Rating = 2, + Target = 10, + Budget = 91253, + Phone = "(985) 5060547", + Address = "652 Merry Place", + ImgId = 9, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Coralyn Steljes", + JobTitle = "Accounting Assistant III", + Country = "FR", + IsOnline = false, + Rating = 2, + Target = 81, + Budget = -9871, + Phone = "(760) 5696853", + Address = "4 Norway Maple Pass", + ImgId = 9, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Bruis Creavin", + JobTitle = "Nuclear Power Engineer", + Country = "BR", + IsOnline = false, + Rating = 1, + Target = 59, + Budget = -5798, + Phone = "(570) 8801169", + Address = "71 Carioca Park", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Adrianne Peery", + JobTitle = "Chief Design Engineer", + Country = "FR", + IsOnline = false, + Rating = 2, + Target = 2, + Budget = 56575, + Phone = "(793) 1143493", + Address = "3 2nd Drive", + ImgId = 7, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Port Gerauld", + JobTitle = "Senior Cost Accountant", + Country = "FR", + IsOnline = true, + Rating = 2, + Target = 27, + Budget = 97919, + Phone = "(155) 5488067", + Address = "9 High Crossing Center", + ImgId = 5, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Boy Antoszewski", + JobTitle = "VP Accounting", + Country = "GB", + IsOnline = true, + Rating = 2, + Target = 11, + Budget = 74779, + Phone = "(715) 9192627", + Address = "3773 Hazelcrest Road", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Gib Yakebowitch", + JobTitle = "Marketing Assistant", + Country = "BR", + IsOnline = false, + Rating = 5, + Target = 57, + Budget = 89028, + Phone = "(923) 6953600", + Address = "7 Mariners Cove Point", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Minerva Gilders", + JobTitle = "Administrative Officer", + Country = "BR", + IsOnline = false, + Rating = 3, + Target = 54, + Budget = 32267, + Phone = "(773) 8863232", + Address = "82 Annamark Way", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Wait Peperell", + JobTitle = "Sales Representative", + Country = "US", + IsOnline = true, + Rating = 4, + Target = 94, + Budget = 72251, + Phone = "(419) 5806752", + Address = "0355 Petterle Avenue", + ImgId = 1, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Ailsun Esmead", + JobTitle = "Software Test Engineer III", + Country = "FR", + IsOnline = true, + Rating = 1, + Target = 12, + Budget = 69596, + Phone = "(852) 7039628", + Address = "0 Lunder Crossing", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Vallie Van der Velde", + JobTitle = "Nurse", + Country = "GB", + IsOnline = true, + Rating = 3, + Target = 89, + Budget = 19530, + Phone = "(331) 7690832", + Address = "2 Almo Lane", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Dov Amber", + JobTitle = "Sales Representative", + Country = "FR", + IsOnline = false, + Rating = 4, + Target = 55, + Budget = 61106, + Phone = "(793) 4768356", + Address = "4 Rockefeller Street", + ImgId = 3, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Tedie Alu", + JobTitle = "Business Systems Analyst", + Country = "FR", + IsOnline = false, + Rating = 1, + Target = 76, + Budget = 3114, + Phone = "(602) 5831373", + Address = "28 Claremont Plaza", + ImgId = 5, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Tally Rizzi", + JobTitle = "Civil Engineer", + Country = "US", + IsOnline = false, + Rating = 1, + Target = 5, + Budget = 78575, + Phone = "(302) 6856300", + Address = "1 Roth Park", + ImgId = 10, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Ilise Lewnden", + JobTitle = "Database Administrator I", + Country = "BR", + IsOnline = false, + Rating = 4, + Target = 33, + Budget = -1059, + Phone = "(659) 8660881", + Address = "19 Stuart Alley", + ImgId = 2, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Farr Penwright", + JobTitle = "Senior Editor", + Country = "US", + IsOnline = true, + Rating = 3, + Target = 82, + Budget = 30505, + Phone = "(505) 3900066", + Address = "9200 Karstens Crossing", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Chantal Bidgod", + JobTitle = "Vice President, Sales", + Country = "BR", + IsOnline = false, + Rating = 3, + Target = 62, + Budget = 25742, + Phone = "(746) 3962702", + Address = "8807 Kinsman Drive", + ImgId = 2, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Johanna Bergin", + JobTitle = "Electrical Engineer", + Country = "BR", + IsOnline = false, + Rating = 2, + Target = 54, + Budget = 25864, + Phone = "(720) 6442547", + Address = "93166 Spohn Court", + ImgId = 3, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Padriac Syphas", + JobTitle = "Marketing Assistant", + Country = "BR", + IsOnline = true, + Rating = 1, + Target = 50, + Budget = 20879, + Phone = "(606) 9062546", + Address = "50465 Buena Vista Plaza", + ImgId = 5, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Garey De Maria", + JobTitle = "Operator", + Country = "US", + IsOnline = true, + Rating = 2, + Target = 54, + Budget = 94251, + Phone = "(972) 1133958", + Address = "24 Maple Wood Terrace", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Glenn Thorwarth", + JobTitle = "Developer IV", + Country = "BR", + IsOnline = false, + Rating = 5, + Target = 39, + Budget = 33511, + Phone = "(394) 3115946", + Address = "8 Dryden Park", + ImgId = 1, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Bron Crosson", + JobTitle = "Sales Representative", + Country = "FR", + IsOnline = true, + Rating = 2, + Target = 80, + Budget = 62081, + Phone = "(686) 7934926", + Address = "974 Mayfield Place", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Garey Malecky", + JobTitle = "Account Executive", + Country = "BR", + IsOnline = false, + Rating = 5, + Target = 51, + Budget = 76354, + Phone = "(304) 6324519", + Address = "3 Paget Court", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Elisabet Kimblin", + JobTitle = "Automation Specialist I", + Country = "US", + IsOnline = true, + Rating = 3, + Target = 35, + Budget = 26755, + Phone = "(904) 3334563", + Address = "75 Buell Court", + ImgId = 1, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Berk Uttley", + JobTitle = "Health Coach IV", + Country = "FR", + IsOnline = false, + Rating = 4, + Target = 58, + Budget = 82064, + Phone = "(200) 2124940", + Address = "4 Mockingbird Trail", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Kenny Clackers", + JobTitle = "Assistant Manager", + Country = "FR", + IsOnline = true, + Rating = 4, + Target = 37, + Budget = 47477, + Phone = "(926) 3235464", + Address = "53315 Bashford Lane", + ImgId = 2, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Rickard Pingston", + JobTitle = "Sales Representative", + Country = "BR", + IsOnline = true, + Rating = 5, + Target = 72, + Budget = 94173, + Phone = "(902) 4658383", + Address = "8 Mesta Court", + ImgId = 2, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Hobard Clabburn", + JobTitle = "Sales Representative", + Country = "BR", + IsOnline = true, + Rating = 2, + Target = 37, + Budget = 66166, + Phone = "(711) 6587550", + Address = "29796 Mcbride Court", + ImgId = 4, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Uri Champken", + JobTitle = "Software Test Engineer IV", + Country = "BR", + IsOnline = false, + Rating = 1, + Target = 39, + Budget = 65176, + Phone = "(514) 1953919", + Address = "78 Rowland Alley", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Obidiah Fold", + JobTitle = "Budget/Accounting Analyst I", + Country = "FR", + IsOnline = false, + Rating = 5, + Target = 66, + Budget = 74529, + Phone = "(747) 8711780", + Address = "58 Lakeland Court", + ImgId = 9, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Angelia Marconi", + JobTitle = "Associate Professor", + Country = "FR", + IsOnline = false, + Rating = 4, + Target = 91, + Budget = 38996, + Phone = "(530) 7506861", + Address = "7 Ohio Parkway", + ImgId = 2, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Ronda Lock", + JobTitle = "Quality Engineer", + Country = "US", + IsOnline = false, + Rating = 5, + Target = 36, + Budget = 69903, + Phone = "(916) 6819628", + Address = "802 American Ash Street", + ImgId = 6, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Rachele Fantham", + JobTitle = "Business Systems Analyst", + Country = "FR", + IsOnline = true, + Rating = 2, + Target = 100, + Budget = 79333, + Phone = "(652) 3112938", + Address = "62 Grim Center", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Emanuel Deery", + JobTitle = "Sales Representative", + Country = "BR", + IsOnline = false, + Rating = 3, + Target = 93, + Budget = 77477, + Phone = "(860) 8318923", + Address = "850 Mifflin Junction", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Clay Ellins", + JobTitle = "Design Engineer", + Country = "US", + IsOnline = true, + Rating = 4, + Target = 98, + Budget = 4120, + Phone = "(682) 4688237", + Address = "458 Scoville Lane", + ImgId = 5, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Bettina Menlove", + JobTitle = "Senior Financial Analyst", + Country = "FR", + IsOnline = false, + Rating = 5, + Target = 78, + Budget = 80574, + Phone = "(293) 8801412", + Address = "29 Onsgard Junction", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Claiborne Willoughey", + JobTitle = "Food Chemist", + Country = "US", + IsOnline = true, + Rating = 5, + Target = 44, + Budget = 44673, + Phone = "(707) 3380798", + Address = "39114 Killdeer Terrace", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Desmond Gritskov", + JobTitle = "Pharmacist", + Country = "BR", + IsOnline = false, + Rating = 4, + Target = 66, + Budget = 45319, + Phone = "(412) 1336481", + Address = "6912 Farwell Street", + ImgId = 6, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Codee Maybery", + JobTitle = "Clinical Specialist", + Country = "US", + IsOnline = true, + Rating = 2, + Target = 26, + Budget = 43462, + Phone = "(682) 7969803", + Address = "4 Tennessee Plaza", + ImgId = 3, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Denys Beynke", + JobTitle = "Occupational Therapist", + Country = "BR", + IsOnline = true, + Rating = 4, + Target = 60, + Budget = 32402, + Phone = "(110) 4341370", + Address = "99 Trailsway Park", + ImgId = 4, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Guthry Limpricht", + JobTitle = "Geologist II", + Country = "DE", + IsOnline = true, + Rating = 3, + Target = 65, + Budget = 68462, + Phone = "(100) 8946768", + Address = "3117 Commercial Crossing", + ImgId = 2, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Cammie Knoble", + JobTitle = "Community Outreach Specialist", + Country = "GB", + IsOnline = false, + Rating = 2, + Target = 1, + Budget = 70198, + Phone = "(352) 1663192", + Address = "55 Longview Place", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Kiri Espinal", + JobTitle = "Accounting Assistant I", + Country = "FR", + IsOnline = false, + Rating = 3, + Target = 47, + Budget = 3712, + Phone = "(946) 6686147", + Address = "90480 Chinook Drive", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Joy Tiddy", + JobTitle = "Engineer III", + Country = "FR", + IsOnline = true, + Rating = 5, + Target = 80, + Budget = 61355, + Phone = "(849) 1097790", + Address = "76 Summerview Hill", + ImgId = 9, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Arlene Karlsson", + JobTitle = "Civil Engineer", + Country = "BR", + IsOnline = true, + Rating = 4, + Target = 98, + Budget = 14267, + Phone = "(699) 4713080", + Address = "90 Dorton Point", + ImgId = 5, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Melony Millwater", + JobTitle = "Sales Representative", + Country = "US", + IsOnline = true, + Rating = 2, + Target = 27, + Budget = 67126, + Phone = "(352) 5197697", + Address = "65242 Derek Place", + ImgId = 1, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Mab Ballham", + JobTitle = "Sales Representative", + Country = "FR", + IsOnline = false, + Rating = 1, + Target = 34, + Budget = 65648, + Phone = "(699) 9285470", + Address = "2579 Messerschmidt Crossing", + ImgId = 8, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Nixie MacAskie", + JobTitle = "Structural Analysis Engineer", + Country = "BR", + IsOnline = true, + Rating = 2, + Target = 13, + Budget = -5312, + Phone = "(434) 6153212", + Address = "59672 Village Court", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Gianni Crafts", + JobTitle = "Tax Accountant", + Country = "FR", + IsOnline = false, + Rating = 3, + Target = 54, + Budget = 85744, + Phone = "(428) 3135618", + Address = "53766 Buhler Parkway", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Moyra Summerlie", + JobTitle = "Business Systems Analyst", + Country = "FR", + IsOnline = true, + Rating = 5, + Target = 3, + Budget = 19109, + Phone = "(960) 7792763", + Address = "127 Spohn Crossing", + ImgId = 6, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Hagan Trevers", + JobTitle = "Sales Representative", + Country = "FR", + IsOnline = false, + Rating = 2, + Target = 93, + Budget = 28290, + Phone = "(749) 8913157", + Address = "516 Clove Road", + ImgId = 7, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Sela Westmacott", + JobTitle = "Account Executive", + Country = "BR", + IsOnline = false, + Rating = 3, + Target = 29, + Budget = 58239, + Phone = "(130) 9778509", + Address = "81 Maple Point", + ImgId = 2, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Lilia Wiz", + JobTitle = "VP Product Management", + Country = "FR", + IsOnline = false, + Rating = 1, + Target = 65, + Budget = 1438, + Phone = "(418) 5940094", + Address = "905 Hauk Point", + ImgId = 1, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Orlan MacAlpin", + JobTitle = "Statistician I", + Country = "US", + IsOnline = false, + Rating = 1, + Target = 1, + Budget = 9094, + Phone = "(512) 7106617", + Address = "6055 Truax Way", + ImgId = 2, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Ty Nutton", + JobTitle = "Speech Pathologist", + Country = "FR", + IsOnline = false, + Rating = 5, + Target = 88, + Budget = 76684, + Phone = "(250) 2530424", + Address = "37247 Merry Plaza", + ImgId = 1, + Gender = "M", + + }, + new Employee { TeamId = 1, + + FullName = "Mirelle Jandl", + JobTitle = "Civil Engineer", + Country = "DE", + IsOnline = true, + Rating = 3, + Target = 19, + Budget = 94486, + Phone = "(871) 7917453", + Address = "31 Anderson Hill", + ImgId = 10, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Diann Bertram", + JobTitle = "Structural Engineer", + Country = "BR", + IsOnline = true, + Rating = 2, + Target = 38, + Budget = 2769, + Phone = "(716) 9445650", + Address = "958 Swallow Drive", + ImgId = 4, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Cindra Slobom", + JobTitle = "Web Designer III", + Country = "BR", + IsOnline = true, + Rating = 5, + Target = 48, + Budget = 81624, + Phone = "(409) 9223432", + Address = "82525 Northridge Junction", + ImgId = 1, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Tymon Mattheissen", + JobTitle = "Dental Hygienist", + Country = "FR", + IsOnline = false, + Rating = 2, + Target = 51, + Budget = 42972, + Phone = "(724) 3234885", + Address = "64363 Anzinger Plaza", + ImgId = 3, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Fancie Heighton", + JobTitle = "Paralegal", + Country = "FR", + IsOnline = true, + Rating = 5, + Target = 52, + Budget = 67403, + Phone = "(738) 9982239", + Address = "4353 Hermina Junction", + ImgId = 1, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Kit Utteridge", + JobTitle = "Office Assistant I", + Country = "FR", + IsOnline = true, + Rating = 4, + Target = 93, + Budget = 36268, + Phone = "(710) 2371400", + Address = "46806 Moland Center", + ImgId = 7, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Lea Willey", + JobTitle = "VP Quality Control", + Country = "US", + IsOnline = false, + Rating = 3, + Target = 19, + Budget = 54614, + Phone = "(304) 3327700", + Address = "1 Moland Crossing", + ImgId = 6, + Gender = "F", + + }, + new Employee { TeamId = 1, + + FullName = "Arri Halton", + JobTitle = "Staff Accountant II", + Country = "GB", + IsOnline = true, + Rating = 5, + Target = 73, + Budget = 32500, + Phone = "(743) 8449571", + Address = "3 Starling Trail", + ImgId = 3, + Gender = "M", + + }, + new Employee { TeamId = 2, + + FullName = "Malva Pierpoint", + JobTitle = "Operator", + Country = "US", + IsOnline = true, + Rating = 4, + Target = 98, + Budget = 20312, + Phone = "(423) 8195288", + Address = "57584 Algoma Plaza", + ImgId = 1, + Gender = "F", + + }, + new Employee { TeamId = 2, + + FullName = "Dalston Sabben", + JobTitle = "Social Worker", + Country = "BR", + IsOnline = true, + Rating = 4, + Target = 85, + Budget = 99048, + Phone = "(388) 2523908", + Address = "53578 Clove Lane", + ImgId = 4, + Gender = "M", + + }, + new Employee { TeamId = 3, + + FullName = "Delinda Margrie", + JobTitle = "Financial Advisor", + Country = "US", + IsOnline = false, + Rating = 1, + Target = 1, + Budget = 8398, + Phone = "(702) 6480692", + Address = "9 Dapin Plaza", + ImgId = 9, + Gender = "F", + + }, + new Employee { TeamId = 3, + + FullName = "Meggi Westman", + JobTitle = "Librarian", + Country = "US", + IsOnline = true, + Rating = 3, + Target = 64, + Budget = 63413, + Phone = "(682) 3495155", + Address = "82 Duke Terrace", + ImgId = 7, + Gender = "F", + + }, + new Employee { TeamId = 4, + + FullName = "Bret Barnsdall", + JobTitle = "Registered Nurse", + Country = "BR", + IsOnline = true, + Rating = 3, + Target = 52, + Budget = 55153, + Phone = "(222) 2089814", + Address = "4 Corry Park", + ImgId = 8, + Gender = "M", + + }, + new Employee { TeamId = 4, + + FullName = "Matthus Shyres", + JobTitle = "Marketing Manager", + Country = "FR", + IsOnline = false, + Rating = 3, + Target = 68, + Budget = 33697, + Phone = "(539) 9486139", + Address = "460 Norway Maple Junction", + ImgId = 1, + Gender = "M", + + } + }; + + for (int i = 0; i < Employees.Count; i++) + { + Employees[i].Id = i + 1; + } + } + + return Employees; + } + + public IEnumerable GetSales() + { + if (Sales == null) + { + Sales = new List(); + + var physicalPath = Path.Combine(WebHostEnvironment.WebRootPath, "assets", "sales_data.json"); + using (StreamReader r = new StreamReader(physicalPath)) + { + string json = r.ReadToEnd(); + Sales = JsonSerializer.Deserialize>(json); + } + } + + return Sales!; + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/IDataService.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/IDataService.cs new file mode 100644 index 00000000..6aa6ca51 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Data/IDataService.cs @@ -0,0 +1,13 @@ +using System.Collections.Generic; +using TelerikBlazorServerAdmin.Models.Employee; +using TelerikBlazorServerAdmin.Models.Sales; + +namespace TelerikBlazorServerAdmin.Data +{ + public interface IDataService + { + List GetEmployees(); + IEnumerable GetSales(); + List GetTeams(); + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Employee.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Employee.cs new file mode 100644 index 00000000..a5e17de9 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Employee.cs @@ -0,0 +1,23 @@ +using System.ComponentModel.DataAnnotations; + +namespace TelerikBlazorServerAdmin.Models.Employee +{ + public class Employee + { + [Key] + public int Id { get; set; } + public int TeamId { get; set; } + public Team? Team { get; set; } + public string FullName { get; set; } = string.Empty; + public string JobTitle { get; set; } = string.Empty; + public string Country { get; set; } = string.Empty; + public bool IsOnline { get; set; } + public int Rating { get; set; } + public int Target { get; set; } + public int Budget { get; set; } + public string Phone { get; set; } = string.Empty; + public string Address { get; set; } = string.Empty; + public int ImgId { get; set; } + public string Gender { get; set; } = string.Empty; + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/EmployeeViewModel.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/EmployeeViewModel.cs new file mode 100644 index 00000000..5c522705 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/EmployeeViewModel.cs @@ -0,0 +1,11 @@ +namespace TelerikBlazorServerAdmin.Models.Employee +{ + public class EmployeeViewModel + { + public int Id { get; set; } + public string FullName { get; set; } = string.Empty; + public string JobTitle { get; set; } = string.Empty; + public int Rating { get; set; } + public int Budget { get; set; } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Team.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Team.cs new file mode 100644 index 00000000..19e81569 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Employee/Team.cs @@ -0,0 +1,20 @@ +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Text.Json.Serialization; + +namespace TelerikBlazorServerAdmin.Models.Employee +{ + public class Team + { + [Key] + public int TeamId { get; set; } + public string TeamName { get; set; } = string.Empty; + public string TeamColor { get; set; } = string.Empty; + + [JsonIgnore] + // ^^^^^^^ + // System.Text.Json does not identify circular references. + // We need to ignore the employees reference otherwise it will loop. + public List? Employees { get; set; } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/MyDropDownListModel.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/MyDropDownListModel.cs new file mode 100644 index 00000000..44cbccdf --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/MyDropDownListModel.cs @@ -0,0 +1,8 @@ +namespace TelerikBlazorServerAdmin.Models +{ + public class MyDropDownListModel + { + public int MyValueField { get; set; } + public string MyTextField { get; set; } = string.Empty; + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/ProductDto.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/ProductDto.cs new file mode 100644 index 00000000..9ec1a0f8 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/ProductDto.cs @@ -0,0 +1,9 @@ +namespace TelerikBlazorServerAdmin.Models +{ + public class ProductDto + { + public int ID { get; set; } + public string Title { get; set; } = string.Empty; + public string Description { get; set; } = string.Empty; + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/Sale.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/Sale.cs new file mode 100644 index 00000000..44d62d08 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/Sale.cs @@ -0,0 +1,23 @@ +using System; +using System.ComponentModel.DataAnnotations; + +namespace TelerikBlazorServerAdmin.Models.Sales +{ + public class Sale + { + [Key] + public int Id { get; set; } + public string Region { get; set; } = string.Empty; + public string Country { get; set; } = string.Empty; + public string Code { get; set; } = string.Empty; + public string StoreId { get; set; } = string.Empty; + public DateTime TransactionDate { get; set; } + public int TransactionId { get; set; } + public string ProductGroup { get; set; } = string.Empty; + public string Sku { get; set; } = string.Empty; + public double Amount { get; set; } + public int PromotionId { get; set; } + public int CustomerInfo { get; set; } + public string PaymentType { get; set; } = string.Empty; + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesByDateViewModel.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesByDateViewModel.cs new file mode 100644 index 00000000..10129772 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesByDateViewModel.cs @@ -0,0 +1,18 @@ +namespace TelerikBlazorServerAdmin.Models.Sales +{ + public class SalesByDateViewModel + { + public double Sum { get; set; } + public double SumOne { get; set; } + public double SumTwo { get; set; } + public double SumThree { get; set; } + public string Cost { get; set; } = string.Empty; + public double SegmentValue { get; set; } + public double SegmentValueOne { get; set; } + public double SegmentValueTwo { get; set; } + public double SegmentValueThree { get; set; } + public int X { get; set; } + public int Y { get; set; } + public int Size { get; set; } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesImportDTO.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesImportDTO.cs new file mode 100644 index 00000000..e4aafc98 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/Sales/SalesImportDTO.cs @@ -0,0 +1,19 @@ +namespace TelerikBlazorServerAdmin.Models.Sales +{ + public class SalesImportDTO + { + public string Region { get; set; } = string.Empty; + public string Country { get; set; } = string.Empty; + public string Code { get; set; } = string.Empty; + public string StoreId { get; set; } = string.Empty; + public string TransactionHour { get; set; } = string.Empty; + public string TransactionDate { get; set; } = string.Empty; + public int TransactionId { get; set; } + public string ProductGroup { get; set; } = string.Empty; + public string Product { get; set; } = string.Empty; + public double Amount { get; set; } + public int PromotionId { get; set; } + public int CustomerInfo { get; set; } + public string PaymentType { get; set; } = string.Empty; + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/SettingsModel.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/SettingsModel.cs new file mode 100644 index 00000000..ba1017b0 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Models/SettingsModel.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; + +namespace TelerikBlazorServerAdmin.Models +{ + public class SettingsModel + { + [Required] + public string Username { get; set; } = string.Empty; + [Required] + public string Nickname { get; set; } = string.Empty; + [Required] + public string Email { get; set; } = string.Empty; + [Required] + public string Phone { get; set; } = string.Empty; + [Required] + public DateTime BirthDate { get; set; } + + public List? Country { get; set; } + + public string Website { get; set; } = string.Empty; + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/About.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/About.razor new file mode 100644 index 00000000..b97a0601 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/About.razor @@ -0,0 +1,44 @@ +@page "/about" + +
+

Telerik Admin Dashboard

+
+

+ Telerik Admin Dashboard is a web app built with Progress Telerik UI for Blazor components - UI components to help you build responsive websites and apps fast. Telerik UI for Blazor® offers components for every need - from the must-have for every app Grids, Dropdowns and Menus to the advanced line-of-business UI, such as Charts, Gantt, ListView, Scheduler. +

+ +

+ The sample app showcases some of the most popular Telerik UI for Blazor components, such as Grid, TileLayout, Form, Charts, Gauges, etc. in a real world scenario. +

+

+

+

Telerik UI for Blazor components

+ +
+

+
\ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor new file mode 100644 index 00000000..0bd90a14 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor @@ -0,0 +1,213 @@ +@page "/" +@using TelerikBlazorServerAdmin.Models.Employee; +@using TelerikBlazorServerAdmin.Models.Sales; +@using Data; + +@inject IDataService _dataService; + +
+
+ Hello Again, Jacksons Danniels! +
+ + + + + +
22
+
In Backlog: 43
+
+
+ + +
7
+
From Yesterday: 16
+
+
+ + +
47
+
Closed By Team: 15
+
+
+ + + + + + + + + + + + + + + +
25 of 50GB Used
+
+
+ + + Total Points + + Trend + Volume + + + + + + + + + @if (FirstSelectedBtn == true) + { + + + + + } + + + + + + + + + + @if (FirstSelectedBtn == true) + { + + } + else + { + + } + + + + + + + + + Blazor Team + + My Team + All Teams + + + + @if (ThirdSelectedBtn == true) + { + GridEmployees = employees?.Where(e => e.TeamId == 2).ToList(); + } + else + { + GridEmployees = employees; + } + + + + Export to Excel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor.cs new file mode 100644 index 00000000..a81d533c --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Dashboard.razor.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Telerik.Blazor.Components; +using TelerikBlazorServerAdmin.Models.Employee; +using TelerikBlazorServerAdmin.Models.Sales; + +namespace TelerikBlazorServerAdmin.Pages +{ + public partial class Dashboard + { + public Dashboard() + { + + } + + TelerikChart DashboardChartRef { get; set; } = null!; + private List? employees = new List(); + private List? GridEmployees = new List(); + private List? sales = new List(); + public List PageSizes = new List { 5, 10, 15, 20, null }; + public string[] Categories = new string[] { "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015" }; + int PageSize = 10; + int CurrentPage = 1; + public int ArcGaugeValue { get; set; } = 50; + + bool FirstSelectedBtn { get; set; } = true; + bool SecondGroupBtn { get; set; } + + bool ThirdSelectedBtn { get; set; } = true; + bool FourthdGroupBtn { get; set; } + + public object[] AxisCrossingValue = new object[] { -10 }; + + bool ExportAllPages { get; set; } + + protected override void OnInitialized() + { + employees = _dataService.GetEmployees(); + GridEmployees = employees?.Where(e => e.TeamId == 2).ToList(); + sales = _dataService.GetSales().Where(sale => sale.TransactionDate > new DateTime(2019, 12, 30) && sale.TransactionDate < new DateTime(2019, 12, 31)) + .Select(s => new SalesByDateViewModel + { + Sum = s.Amount, + SumOne = s.Amount + 100, + SumTwo = s.Amount + 200, + SumThree = s.Amount + 300, + X = s.Id + 500, + Y = (int)s.Amount + 250, + Size = (int)s.Amount + 600, + }) + .ToList(); + } + + void ItemResize() + { + StateHasChanged(); + DashboardChartRef.Refresh(); + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml new file mode 100644 index 00000000..122ea019 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml @@ -0,0 +1,42 @@ +@page +@model TelerikBlazorServerAdmin.Pages.ErrorModel + + + + + + + + Error + + + + + +
+
+

Error.

+

An error occurred while processing your request.

+ + @if (Model.ShowRequestId) + { +

+ Request ID: @Model.RequestId +

+ } + +

Development Mode

+

+ Swapping to the Development environment displays detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

+
+
+ + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml.cs new file mode 100644 index 00000000..e4d41c1e --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Error.cshtml.cs @@ -0,0 +1,28 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; +using Microsoft.Extensions.Logging; +using System.Diagnostics; + +namespace TelerikBlazorServerAdmin.Pages +{ + [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] + [IgnoreAntiforgeryToken] + public class ErrorModel : PageModel + { + public string? RequestId { get; set; } + + public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + + private readonly ILogger _logger; + + public ErrorModel(ILogger logger) + { + _logger = logger; + } + + public void OnGet() + { + RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier; + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor new file mode 100644 index 00000000..8e1ce7b0 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor @@ -0,0 +1,236 @@ +@page "/performance-and-sales" +@using TelerikBlazorServerAdmin.Models.Sales; +@using Data; + +@inject IDataService _dataService; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + +
Active Users
+
100000
+
+
+ + + + + + + + + + + +
Inactive Users
+
100000
+
+
+
+
+ + + Top 5 Cities + Europe + + + + + + + + + + + + + + + + + + + + + + Top 5 Cities + World + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + +
Active Users
+
15000
+
+
+ + + + + + + + + + + +
Inactive Users
+
15000
+
+
+
+
+ + + + + + + + + + + + + + + +
+
+ + \ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor.cs new file mode 100644 index 00000000..d83e9c4b --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/PerformanceAndSales.razor.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Telerik.Blazor.Components; +using TelerikBlazorServerAdmin.Models.Sales; + +namespace TelerikBlazorServerAdmin.Pages +{ + public partial class PerformanceAndSales + { + public PerformanceAndSales() + { + + } + TelerikChart PieChartRef { get; set; } = null!; + TelerikChart EuropeChartRef { get; set; } = null!; + TelerikChart WorldChartRef { get; set; } = null!; + TelerikChart ColumnChartRef { get; set; } = null!; + TelerikChart AreaChartRef { get; set; } = null!; + TelerikCircularGauge UserFirstCirclGauge { get; set; } = null!; + TelerikCircularGauge UserSecondCirclGaugeRef { get; set; } = null!; + TelerikCircularGauge UserThirdCirclGaugeRef { get; set; } = null!; + TelerikCircularGauge UserFourthCirclGaugeRef { get; set; } = null!; + private List sales = new List(); + private List salesPerformance = new List(); + public string[] xAxisItems = new string[] { "Q1", "Q2", "Q3", "Q4" }; + public string[] xAxisItemsBarFirst = new string[] { "Sofia, Bulgaria", "Berlin, Germany", "Paris, France", "Madrid, Spain" }; + public string[] xAxisItemsBarSecond = new string[] { "Moscow, Russia", "Beijing, China", "Dubai, UAE", "Tokyo, Japan" }; + public object[] AxisCrossingValue = new object[] { -10 }; + + protected override void OnInitialized() + { + sales = _dataService.GetSales().Where(sale => sale.TransactionDate > new DateTime(2019, 12, 30) && sale.TransactionDate < new DateTime(2019, 12, 31)) + .Select(s => new SalesByDateViewModel + { + Sum = s.Amount, + SumOne = s.Amount + 100, + SumTwo = s.Amount + 200, + SumThree = s.Amount + 300, + X = s.Id + 500, + Y = (int)s.Amount + 250, + Size = (int)s.Amount + 600, + }) + .ToList(); + + salesPerformance = _dataService.GetSales().Where(sale => sale.TransactionDate > new DateTime(2019, 12, 30) && sale.TransactionDate < new DateTime(2019, 12, 31)) + .Select(s => new SalesByDateViewModel + { + Sum = s.Amount, + SumOne = s.Amount + 100, + SumTwo = s.Amount + 200, + SumThree = s.Amount + 300, + SegmentValue = s.Amount, + SegmentValueOne = s.Amount + 1, + SegmentValueTwo = s.Amount + 2, + SegmentValueThree = s.Amount + 3, + Cost = "Product Region- " + s.Region + $" {s.Id}" + }) + .ToList(); + salesPerformance.RemoveRange(3, 10); + } + + void ItemResize() + { + PieChartRef.Refresh(); + EuropeChartRef.Refresh(); + WorldChartRef.Refresh(); + ColumnChartRef.Refresh(); + AreaChartRef.Refresh(); + UserFirstCirclGauge.Refresh(); + UserSecondCirclGaugeRef.Refresh(); + UserThirdCirclGaugeRef.Refresh(); + UserFourthCirclGaugeRef.Refresh(); + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor new file mode 100644 index 00000000..7d2c57ec --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor @@ -0,0 +1,113 @@ +@page "/products" +@using TelerikBlazorServerAdmin.Models.Sales; +@using Data; + +@inject IDataService _dataService; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor.cs new file mode 100644 index 00000000..7dd7ee30 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Products.razor.cs @@ -0,0 +1,118 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Telerik.Blazor.Components; +using Telerik.DataSource; +using Telerik.DataSource.Extensions; +using TelerikBlazorServerAdmin.Models; +using TelerikBlazorServerAdmin.Models.Sales; + +namespace TelerikBlazorServerAdmin.Pages +{ + public partial class Products + { + public Products() + { + + } + + private List sales = new List(); + private List products = new List(); + private List productsData = new List(); + int PageSize = 8; + int CurrentPage = 1; + public string FilterText { get; set; } = string.Empty; + TelerikChart BubbleRef { get; set; } = null!; + public List PageSizes = new List { 2, 4, 6, 8, null }; + + public class ModelBubbleData + { + public double LifeExpectancy { get; set; } + public double FertilityRate { get; set; } + public int PopulationChange { get; set; } + public string Country { get; set; } = string.Empty; + } + + public List Series1Data = new List() + { + new ModelBubbleData() { LifeExpectancy = 80.66, FertilityRate = 1.27, PopulationChange = 500000, Country = "Canada" }, + new ModelBubbleData() { LifeExpectancy = 78.09, FertilityRate = 2.3, PopulationChange = 7600000, Country = "USA" } + }; + + public List Series2Data = new List() + { + new ModelBubbleData() { LifeExpectancy = 67.3, FertilityRate = 1.54, PopulationChange = 25000, Country = "Denmark" }, + new ModelBubbleData() { LifeExpectancy = 74.3, FertilityRate = 1.85, PopulationChange = 3000000, Country = "Great Britain" } + }; + + private void Filter() + { + var request = new DataSourceRequest() + { + Filters = new List() + }; + request.Filters.Add(new FilterDescriptor("Title", FilterOperator.Contains, FilterText)); + + productsData = products.ToDataSourceResult(request).Data.Cast().ToList(); + } + + void OnItemResize() + { + BubbleRef.Refresh(); + } + + protected override void OnInitialized() + { + sales = _dataService.GetSales().Where(sale => sale.TransactionDate > new DateTime(2019, 12, 30) && sale.TransactionDate < new DateTime(2019, 12, 31)) + .Select(s => new SalesByDateViewModel + { + Sum = s.Amount, + SumOne = s.Amount + 100, + SumTwo = s.Amount + 200, + SumThree = s.Amount + 300, + X = s.Id + 500, + Y = (int)s.Amount + 250, + Size = (int)s.Amount + 600, + }) + .ToList(); + + var Titles = new string[] { + "All-in-One Mac", + "Colorful Future with SSG500", + "The Prestige Series", + "Designs into Websites", + "Out of the Shadow", + "Design Solutions", + "Remote Life", + "Through the Lens", + "Wireless Culture", + "Changing the Game", + "Thin Tech", + "Mobile Edu" + }; + var Descriptions = new string[] + { + "An alternative solution for your business. Get our latest offer now and save up to $300 with the terrific All-in-One Mac laptop!", + "Add some color to the dull and grey everyday life with our latest laptop offer! SSG500 will bring your creative ideas to life!", + "The SA325 Prestige Series deliver an excellent audio performance, combined with the best noise cancellation and a ton of additional features.", + "Advance the web development process with Artificial Design Intelligence to deliver the best user experience directly through your website.", + "This is the right place if you’re trying to reduce your Shadow IT risk. Explore our latest guide on how to protect and manage your software assets.", + "This is the right place if you’re looking for a new laptop design. Spice up your environment with our fresh ideas for laptop skins, stickers, and sleeves.", + "Smart phones of the future are coming our way! Get a glimpse of how they might develop and what to expect from their functionalities.", + "Look forward to the future in a different light with AI. Enjoy better, faster, and more intuitive photos in the 3D world.", + "Listen to your favorite genres with style! Our latest headphone design offers excellent wireless audio for a better music experience.", + "The future of the headphone technology is wireless. Get to know the latest trends for fashionable designs and improvements in the headphone world.", + "The changing technology and economy are driving a new world of mobile computing. Explore our super-thin designs with folding displays.", + "Harness the nature of the mobile phone with our latest Mobile Edu design, created to assist you with your studies for a more informal approach to learning.", + }; + products = Enumerable.Range(1, 50).Select(x => new ProductDto + { + ID = x, + Title = Titles[x % 12], + Description = Descriptions[x % 12] + }).ToList(); + + Filter(); + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor new file mode 100644 index 00000000..334840fd --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor @@ -0,0 +1,191 @@ +@page "/settings" +@using System.ComponentModel.DataAnnotations +@using Models; +@inject NavigationManager navManager + + + + + +
+
+ Account + Security +
 
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ + Public Profile + WindowVisible = true) ThemeColor="@(ThemeConstants.Button.ThemeColor.Primary)">Save Changes +
+
+
+
+ + +
+ + +
+
+
+ + + Weather + +
Sofia
+
+ +
+
+
Partly Cloudy
+
12 °C
+
+ +
+
+
+
+ + + + Changed Settings + + + + + +
Successfully made changes!
+ Return to Home Page +
+
+ + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor.cs new file mode 100644 index 00000000..ec8d84fe --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/Settings.razor.cs @@ -0,0 +1,57 @@ +using Microsoft.AspNetCore.Components.Forms; +using System; +using System.Collections.Generic; +using TelerikBlazorServerAdmin.Models; + +namespace TelerikBlazorServerAdmin.Pages +{ + public partial class Settings + { + public Settings() + { + + } + int selectedValue { get; set; } + bool switchValue { get; set; } = true; + + private DateTime min = new DateTime(2015, 1, 1); + private DateTime max = new DateTime(2025, 12, 31); + private DateTime theDate { get; set; } = DateTime.Now; + private string selectedDate = ""; + public bool WindowVisible { get; set; } + + private void MyValueChangeHandler(DateTime newValue) + { + selectedDate = newValue.ToString("dd MMM yyyy"); + } + public void WindowButtonClicked() + { + navManager.NavigateTo("/", true); + } + + SettingsModel settingsModel { get; set; } = new SettingsModel() + { + Username = "JaxonWhite", + Nickname = "Jax", + Email = "jaxon.white@gmail.com", + Phone = "(+1) 8373-837-93-02", + Website = "jxnss.com", + Country = new List + { + new MyDropDownListModel() { MyValueField = 1, MyTextField = "USA"}, + new MyDropDownListModel() { MyValueField = 2, MyTextField = "Bulgaria"}, + new MyDropDownListModel() { MyValueField = 3, MyTextField = "Argentina"} + }, + + }; + + public EditContext? EditContext { get; set; } + + protected override void OnInitialized() + { + EditContext = new EditContext(settingsModel); + selectedValue = 3; + base.OnInitialized(); + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Host.cshtml b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Host.cshtml new file mode 100644 index 00000000..4450fa90 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Host.cshtml @@ -0,0 +1,6 @@ +@page "/" +@namespace TelerikBlazorServerAdmin.Pages +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@{ Layout = "_Layout"; } + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Layout.cshtml b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Layout.cshtml new file mode 100644 index 00000000..7a775a4d --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_Layout.cshtml @@ -0,0 +1,38 @@ +@using Microsoft.AspNetCore.Components.Web +@namespace TelerikBlazorServerAdmin.Pages +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@using Microsoft.AspNetCore.Localization +@using System.Globalization + + + + + + + TelerikBlazorServerAdmin + + + + + + + + + + + @RenderBody() + +
+ + An error has occurred. This application may no longer respond until reloaded. + + + An unhandled exception has occurred. See browser dev tools for details. + + Reload + 🗙 +
+ + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewImports.cshtml b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewImports.cshtml new file mode 100644 index 00000000..df85ccac --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewImports.cshtml @@ -0,0 +1,5 @@ +TelerikBlazorServerAdmin.Pages + + + +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewStart.cshtml b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewStart.cshtml new file mode 100644 index 00000000..a5f10045 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Pages/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_Layout"; +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Program.cs b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Program.cs new file mode 100644 index 00000000..49f2e2ec --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Program.cs @@ -0,0 +1,63 @@ +using Microsoft.AspNetCore.Components; +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Localization; +using Microsoft.Extensions.Options; +using TelerikBlazorServerAdmin.Data; +using System.Globalization; +using Telerik.Blazor.Services; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +builder.Services.AddRazorPages(); +builder.Services.AddServerSideBlazor(); +builder.Services.AddTelerikBlazor(); +builder.Services.AddScoped(); + +#region Localization + +builder.Services.AddControllers(); +builder.Services.AddLocalization(options => options.ResourcesPath = "Resources"); +builder.Services.Configure(options => +{ + // define the list of cultures your app will support + var supportedCultures = new List() + { + new CultureInfo("en-US"), + new CultureInfo("de-DE"), + new CultureInfo("es-ES"), + new CultureInfo("bg-BG") + }; + + // set the default culture + options.DefaultRequestCulture = new RequestCulture("en-US"); + + options.SupportedCultures = supportedCultures; + options.SupportedUICultures = supportedCultures; +}); + +// the custom localizer service is registered later, after the Telerik services + +#endregion + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (!app.Environment.IsDevelopment()) +{ + app.UseExceptionHandler("/Error"); + // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. + app.UseHsts(); +} + +app.UseHttpsRedirection(); + +app.UseStaticFiles(); + +app.UseRouting(); + +app.MapControllers(); +app.MapBlazorHub(); +app.MapFallbackToPage("/_Host"); + +app.Run(); diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/launchSettings.json b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/launchSettings.json new file mode 100644 index 00000000..2827c450 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/launchSettings.json @@ -0,0 +1,28 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:61105", + "sslPort": 44392 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "TelerikBlazorServerAdmin": { + "commandName": "Project", + "dotnetRunMessages": "true", + "launchBrowser": true, + "applicationUrl": "https://localhost:5001;http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.json b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.json new file mode 100644 index 00000000..d8177e07 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.json @@ -0,0 +1,8 @@ +{ + "dependencies": { + "mssql1": { + "type": "mssql", + "connectionId": "ConnectionStrings:DefaultConnection" + } + } +} \ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.local.json b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.local.json new file mode 100644 index 00000000..299aa9aa --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Properties/serviceDependencies.local.json @@ -0,0 +1,8 @@ +{ + "dependencies": { + "mssql1": { + "type": "mssql.local", + "connectionId": "ConnectionStrings:DefaultConnection" + } + } +} \ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/MainLayout.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/MainLayout.razor new file mode 100644 index 00000000..af1b6a88 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/MainLayout.razor @@ -0,0 +1,146 @@ +@layout TelerikLayout +@inherits LayoutComponentBase +@inject NavigationManager navigationManager + + + + + + +
+ +
+ About + Contacts +
+ +
+ @Body +
+
+
+
+ +@code{ + bool DrawerExpanded { get; set; } = true; + DrawerItem? SelectedItem { get; set; } + TelerikDrawer DrawerRef { get; set; } = null!; + + List NavigablePages { get; set; } = new List + { + new DrawerItem { Text = "Dashboard", Url = "/", Icon = SvgIcon.Grid }, + new DrawerItem { Text = "Performance & Sales", Url = "/performance-and-sales", Icon = SvgIcon.Globe }, + new DrawerItem { Text = "Products", Url = "/products", Icon = SvgIcon.AggregateFields }, + new DrawerItem { Text = "Settings", Url = "/settings", Icon = SvgIcon.Gear } + }; + + protected override void OnInitialized() + { + string currPage = navigationManager.Uri; + DrawerItem? ActivePage = NavigablePages.Where(p => p.Url.ToLowerInvariant() == GetCurrentPage().ToLowerInvariant()).FirstOrDefault(); + if (ActivePage != null) + { + SelectedItem = ActivePage; + } + + base.OnInitialized(); + } + + public void NavigateToPage(DrawerItem item) + { + SelectedItem = item; + navigationManager.NavigateTo(SelectedItem.Url); + } + + public string GetCurrentPage() + { + string uriWithoutQueryString = navigationManager.Uri.Split("?")[0]; + string currPage = uriWithoutQueryString.Substring(Math.Min(navigationManager.Uri.Length, navigationManager.BaseUri.Length)); + return string.IsNullOrWhiteSpace(currPage) ? "/" : currPage; + } + + public string GetSelectedItemClass(DrawerItem item) + { + if (SelectedItem == null) + { + return string.Empty; + } + return SelectedItem.Text.ToLowerInvariant().Equals(item.Text.ToLowerInvariant()) ? "text-info" : ""; + } + + public class DrawerItem + { + public string Text { get; set; } = string.Empty; + public string Url { get; set; } = string.Empty; + public ISvgIcon? Icon { get; set; } + public bool IsSeparator { get; set; } + } + + void LogoutClick() + { + } +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/SurveyPrompt.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/SurveyPrompt.razor new file mode 100644 index 00000000..ef9ad218 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/SurveyPrompt.razor @@ -0,0 +1,16 @@ + + +@code { + // Demonstrates how a parent component can supply parameters + [Parameter] + public string Title { get; set; } = string.Empty; +} diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/TelerikLayout.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/TelerikLayout.razor new file mode 100644 index 00000000..9ac34acb --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/Shared/TelerikLayout.razor @@ -0,0 +1,5 @@ +@inherits LayoutComponentBase + + + @Body + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.csproj b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.csproj new file mode 100644 index 00000000..bfa784ea --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.csproj @@ -0,0 +1,28 @@ + + + net6.0 + enable + enable + + + + + + + + + True + True + TelerikMessages.resx + + + + + + PublicResXFileCodeGenerator + TelerikMessages.Designer.cs + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/_Imports.razor b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/_Imports.razor new file mode 100644 index 00000000..658beb54 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/_Imports.razor @@ -0,0 +1,13 @@ +@using System.Net.Http +@using Microsoft.AspNetCore.Authorization +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using TelerikBlazorServerAdmin +@using TelerikBlazorServerAdmin.Shared +@using Telerik.Blazor +@using Telerik.Blazor.Components +@using Telerik.SvgIcons diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/1.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac6ec6980dfdfc6d1408bb08ba848bb5e25f2fd0 GIT binary patch literal 5941 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/10.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca455332243c100ad886ab368ec9ffa9c9d379cf GIT binary patch literal 8692 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 G#s2|J#by5h literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/2.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d9ec2faef651037d39173cb6577b3a0218eb09e GIT binary patch literal 9577 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%0DlF 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/3.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33b0a5c2b47eafcfacac3b8b3e92a1e247263443 GIT binary patch literal 9113 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 KvkIZl%l`%DW8!@P literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/4.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4aea2ac5e7792c65227ada0ec8b98efda69c0d6 GIT binary patch literal 8013 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/5.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31274f1f682013d99d912a103c31cdc6af305a93 GIT binary patch literal 8008 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 G#s2|J#by5h literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/7.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccd2c42ce3c49235e495951e69cdaf89688f3e2c GIT binary patch literal 7963 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 AuK)l5 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/8.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09ec113a91528c0e74ebd40e78256c40deda6f26 GIT binary patch literal 11580 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 K`Q`B2(tiPGco(q% literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/9.jpg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/employees/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e254d6a8bc29749d50f8400db41d56352419106a GIT binary patch literal 10647 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/navigation/Avatar.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/navigation/Avatar.svg new file mode 100644 index 00000000..e6547bed --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/navigation/Avatar.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/1.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5aea67b460396ef93bdb45a315d283954799201c GIT binary patch literal 24976 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/2.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/2.png new file mode 100644 index 0000000000000000000000000000000000000000..79e2bf823ea4aa167926737a6eacecff80b050ee GIT binary patch literal 26903 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Νx6GR;E>x-Nu4!38T`LZn%xLCt7M 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
03Sp&|PdhNsYJzZuO0`@Q1gd6A!ri9(*on!cTHT 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 z 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/4.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb9c5c1b5ada6ecc729f8b998ccaa1f8c64facc GIT binary patch literal 55658 zcmV(_K-9m9P)O(L zWm$41h}qspT;(bvQWXjX6o6?l&96B>_z-*vJ}2kLeB?~?Bd43w)6-}G4U|Bs%#6&C zF0VXlbFF1|u16-Sn==XA@(2(2E6&-bmMvSB{-^)zQ%T1E%VsHCRaN?PN@m5(rZVAC zY#4hR`R6nlegXd_d@WX{F@6SL@f+hfSm86K+NxYxof~|u@w3TB{QQ9D>c-KAiGQBV zGM)pkoAA2)_owd3wx@f0+~48rllA3*XH9rtEq=E4_l4gpBYtl*ThG zUbV3G^1?1w8*3L0-t%C`)83x8_qIE3?Swy%*5SSOde3d%*yZXgyS(}m&ztSg@9p;K z4|ezTTfEOlyk6Gp^IGt|Pk4`f6a4##&oJTH{D1NJ)1YfrRV&-HFYW5`3tOzN?Jyqg z{ljT#f3BC-P? zHLh*bEUazt^UcQUror!2mMdKMoc#TacnrACCw$U=z~6iPJMTxO`%>l1o2Yv_etHiJ z?|ac_=4ZFKH+PYQ`LCwY`^&H zxAyi|zs2kAZRiiypN_iDIyj;MPj~pe5BNNf_})i6 zws^k1@ksN&WxOuVQKLU391`9*zLyaJ6+ZP!2AcK@KSyZ*sWW2ZN>sBduaH@J?i zoXxSj$NPKIpR2U=3tSpJ;|h*pW6Q-#H?_z6e!Rc6_q%s?I6mU0;AEtDugMQT4}8YK ztm=*4?||d*ZHdc3%u_Y4&6pyEiG^z)^JSt*=mCWwUPtnHB7wuFo05MknR}h2r3vQ z9e2UCo#?bv(P8cT6Yg1u!v}{q@DxunzFfI;9&w%fVbpt>c(|ug_cq1-r%~{0h3l8) z$SW8o9Zx0W^>e~#fcuVn$#XJvot^Ny`@XXy&kO#ws$ocaJ~|y3Bfd0s11H(q66bA= z_rJzBVaIj}L;h@I_LEo1KK}}L@fDoGOB_yo?`emxzbSV6hsxf=z-i11Shyw)yhy#K zzvNlcN43MY;DLLx$3Y(PITYI9h>i!_-9Opk0S5F4Bfxt#+&?ll|l?e&}R(A4mJuA3oT3-`(5C zKfJcQ{b-p^fB}WR71wu4S;1()eHh`0cySOy@P*DD=YVH;eQnFl4PNI0L5&Uozk~DM z!?~OeJ3H)dZTI-S9S-mDS>D?OheNNGY1tJ$I_^Kt@HoQZ4Il7$!1;f`hk_$0xTp$- z9iG?iIpOSES>R6$Hnc@P*;XcUSpg&u#zd#G`s*S1J& zT$fe`nQ_w?K?i07G^A-#mQdls(u0VBy!=aav;UKiUkuZ|nHrB&X_eXfl!xJ8lcwSrxLxzD5Z^p-{C~NYvya{;U zbaFK=c+N78<8ZKTcWaNl&}DC3?)BO41BLGt$FhD{%0*(|O?MFYHS9m%qU0Z*g5WI0yXN;2R4V^AaBe$$+hK zaMw+;OBnvk7kK;(-}_U%yDJ>mdeZ%Xud!`kkX7+2!!fOSui*e%TqE536SBndX|&@3 z#&UwOb#MX`90kuEe&_M=!McZA>kkM9$Xb{kUGg3wdz3?Ucctqw>b!Tl4sz(YA1&@z z-6Aq815@6tpwjh6MCOE`QQPuV*?w5U+4T1HZ$Bur`l~Kua9Mqv3^?~#Z%tCPR znDsKUbRDvQZfkp#1Otq#nzm=Pf{#G}#88*njC1(BfN!5MUR-+!>% z{txyreT~Uo1(0Y82}Cp9URj-m1>?w%B+|L@OpPNy{rRSc=K`HjLsA9dmIKuNdCv{g3)Ts zqkgX%JW5w|#wtJHkn2{CyTP?v!1xvmI4nfH7S_60@F3EO;0m5bIP8N;yq;<2UI&AVjZ?2wUNBD0{=qCba&=utw9N1Rz+0%QVoVr!<_xJKO;<-i@z)$s^p z7~yr$MzT(Azp-%<}fD)kV@A130 zc)$3$X^YomARGb=piRN>8T?^WrM`k)T_cl&6IgzQ_XS73e2G8f@3*J7NM8m;9Hsrq zBZ91#bw7;7BRsq?E@;K*3WI2I;M>g9w^hVF@zB6?4k{m#YIzaQcNkcE3^Nr86p1 z_WB;-YfT4`;nmw$h@{K{Uf^1+X(T#QMA8~HBTEq;=z?p*nsh=9IpKyAW8k%}7*&$reqt<4Gb3r$ZaDXfNv6_a2=UCy2tZ_aX`qg6FMnDEitYXc5R^*>{*`Dr; zz5X!T!&3zV!5xDG$fw>G@R%>~p1(lJu)3)2o5y7DK0eqZaDn3iXX<7EyfLAv?tLFMon-2WJ4|%N2sgK!l|i<|-R1N}+0VP)I#-nQwaqV+Ir?eX{rdpdqphSI>;=>Qh+rpx*joFBZp z9KuG{A*qpp>KgB(K?cC+!z`d~5z(8X`%J*` z)Sc|ZZp1z6RnjRFp~FmGvM>W!u#}MTz!|W_!i&L#VEA}6%m9jK0)##B`J3#3wDJ-j zPGkWY(K*3GAW*Wj$C)VtI~8~EZzsG)_Z~0#J~WXjuHfr7iIHz*Ha+z6HiAU&g0<(b#LW#$M6&<*zp z+#hj{Zj}X0vXi26RX`=2P61e5)t|w@@!Bn%&=Mtg%W{AYfyNI^3uO@MCS~H8fs3D= z*92#>R=J8-?NeMNmISz7d62yrn|U-6A#mqQtX~-DN>OIF2V}6JU>8( zRF(kY0U*eTgFLDOVG1Qo&vMfUHFsqCAV)waa3U~Pdc7asylG1E)J*sL0T~8Tse&5u zV*Q1!7dN``j|1KZLdb4>4>0ok08AX@WCvqVHsIX>Wexm0p+aRcbb~N>ID#7KzS3TJ zkXOrpj_d&6IQ;I-$ZHu1mq66EX=JU9;E-P*esYFf|D{Qz~l?1hP(M z^d}CmT)?Te#WRwD&UvuA9f8>yA9AB27}Y49PjcohjD}8(z~%;#pIrqy0{+aZ@=So3 zK&=YKO9k9aU1Mg59g{Jn2^nBPzwoXAvyQ_S|Hdp_9wY1Z8+_&iZprOKvh5Qb! zMeq}6r>C>FIlP2HxO)A5`PB z3}{)}GIM5DequK82EhP$0JC3~0&DT>Yu7HmJMc?T-CP>CzJ})@oGrI)cP(@{rZ@ZN}8 zp~+1L-H93iC?AXZB@Q@{g%x717F#-+@In8+FifVoB5p^=CwByKRRE?+iJ)9*Y|6vOU-j8ws#6RY;kdd6u;{p!mVpZAIChM`_Tf*nV zZH6JhQB2_|_*zwfkCoYJ47gTz*tG66WvB{2*bI-StTTg>WF;k70K^7wbu+Wiq{ zXuy;^jhFC}$|YIcZlMkckS5pfYTDx4bvgH7vcc)P?sMJAvw0nbtEoE3H}_K!ON z-S@}>{s4zSj=(L-znvm{Mi6e~8e!-xqv6C3a1i74;O_%xgDv?M2A-Oq;pBswPqt0%<`WN;3w^EH?S7|Tw5J;|Spjxj>1hr-4 zLd04l>aq_`gE+!y52t(EtDVIb(h@1|g$#j4@`N;de`It<3Uu13J0V!C;vprF;Tge! z^*P_n;B7H^3rG1_uqn-)#8E&m8#kA&N1Q2K3?Q;m zAWrvHS}tU zR&b0<8oJWgCU_iK(U|EvTevOCfQFb##VDQ~0LOdY?oo2VIO(j3u_#->&m?gW@Oy3L z?M?g+oxu`c+3s5cOIRVTzr4T$Z9klA95zIJo|Wj%p5P3Qi10n`$+2fk7JtV}4=njs zxE8pCNBqtnCCK54(U$MI(miH`gulVzgA<_PJ^}=Lcmyzr$OI(45k^v}^wB|1-qxct zq{C&&vS=4_d@qo3yg)Z%1!r)i9pTLWH=keH>0kd#`yc-H(cV77;nhXG{31iZS!4?v zz}yKfyAFom0i+mFRt_*aO9wA2RevXCgCv9*%EOArhI5keXRG;lWCH9C)CAzXF25i! zxV}_2Nw7Al9DozpJ)-O(N8l}-!1s9lk7@zZ@K~0K$i<9xWKcY)1W|jC2B}^#g23V> z&d{Yg0CEEOGYvl17qTgp3B;IK1~6+RUd4AH zWt9XKBOt*>yg_Ca{Sz7ZM!|OL<;8CA_aA2_E>oM}d5u*JEn+u?^>)26i6Y5v=rFHJu87Zt_k6 zTVZ@K>Q(??*)^e&*SP+~3B;&ljSj;l8&0I6%F7)wL)8u(#0KPhUg5Pjizq$fzVf;1 zROC#W?4^Z2r#fo-N<08f21B_HLxTfengGrnKGsJ7dSBmmX#4H#>9Dm9pqjBRN2{&6 zSlftSW*_GSr#3!007<9S;ECyUTBN}vGJ*YD0B`rV;soHr35Uomx2lDAQNn@c=^+h5dcNTksF+$_WIlz;a3N-gCa<$c6#)3kO6n>)ovFjg~3Urx=xuTyFGI-_QJ0y zYftQ21gNU)h&-wi9W9q<jFlMC$v1U~!Ms_i1Mt^>boY#DmYEp%!Tt2|1+yH`w3&_G|mwU;Sr$@oJ^}_1C}tAMKlW{~ka0Rt(ljY}i59KB+GE zOo=V#acV^fQX38tKjSQo8SOXr8dN=`fI^qK|fdhcS z$A`CQd4CJ6IE6&w7JD{ki zqj$`K3lLo=Qp;a_0>1Fre?%J&tq}k<1H0!W<*>HpffT@%1Pl)S(QgD^g(V2V8>Xr& zl63fEa1aN0>=SG3auE7Ik`x3F)r;%|AP#ZI0YMt(UiHyLQU%^iU21t-5-eN%EVJeo zpZ2Q#0`L8mr<`;Eql0t=P@G8B>x0WE*cMHJ$X7gwjr0HGb9im<)>DG2-7w!FON|#! zfMjE$ilgtTPb$II}BcZX9fY>xbOGNlOA^m3E zEs86<0OTF8w4fsi4uBj$U=;ixJs*uy*|+!nMv=IZx22~bXcqr>PtQ&KidHd&XR6p1 z)!i-Hkb7bcuP*GfudbZMDTg|u-PxnesP$akkX23$`o+u_V!!zPf3Vkg z{{hB}dK@k2BihC#ADpNapH-i^WC6(&(e*^Y_XfXn6`273TzPp=qm-;k&>x$`fUqLdp2;L?$^3`l4;-yK6D%`x`QJChJdzSuP4p|Xln7jlin18 zietBPKC}#y90X_QF?#aY?MDE8LoYx_Lq&OTXTT(!{Da~{A2Y3%hc5@|g+0+l=AaM2 zM1q|x2}p+O9f9}Z3tYsh5|}97`8oY5ULTpyJCLecRi2ib47bwfAh{=t%;WuYav$V8 z=mdg`?{#J)!(XB_AWM&bPGVG+xaLkA8vD+NZYHOD6PYi;@nD@tBdBE{g6U9xbST4m zZ+S9}Mid^^5}a@-;doH1Pvb)U@_s01Z|`#gNy9ga{{Bv#O;}0{o)vv&wb^n$I|p6? zbqMJAP?YCWtrFtE>ve%L5l*#5hvA3=*%Hs;01iD`G6IM>oEh%VgzzUs#&Be6_iRc9AFlo>ypsRb915fYq048w!C^~y$WX_J0a43oQdsM}i#ReoH ztmUi@&WNGxuppTkZ6|r%KL?>v69Gw}eu?^?XW8vx5`m7uv-2bzZ}Ud81)CVxnD~}h ztW}Ww9E?_Xg+ZilghL2mMbOWUx5b?f?}1eJif8j`^-{g<9`)eU{=I;@ExH88muIRpL079TOxXdY4nWFD83S%4YPcN6sgIF78akk(kE3otQ-CPj zQlKWW0675ERLjJ_vrV{C#L+>c!4(HYctGN*+(76B!{cU=Xc}j`q)5R0MqiMyh8Dn2Y!I~KuSIHxXW z9zeasJ6x>Xq3RxwD1jOv>op$Urh7sf|FI)Tl>B|>7!YG?c9>?2$YKap18Ol0fzRvs z1A)Rxgq-O-Wx7oIgvhw?SCk8nZ~`BmkQpAm#<@c0;AWj|vm%;c#OvF8N;(v$PBZ0ai8z%VQ5ckpJK#nzG#EQO1RW6np3VVSQdfXG z!T1LOZ-pkfCga=U$R50CHAR(&Uc(iHTHn4Zi!Ec@UdaS34{ zwNEdm$UJ@GD!X&a&vbMz^Ct77k<@WeNvT8ShOennI?)u4Kc~RAk}^b{@5D2dpe?53LucIKj8zF13m;s z2!!;=1O~Q5L;=lm6s%*Je)9tlzykR1J)Z+NnyC$gZAHRP@-b+EBLH+3$vv2A$FlNK zSWf(*J-8&-J9$hca#)e~-ZAvqw@3jZv8opCIkUMK}?hV@-_%)u3y! zSg!@dDca*8T&!zBj4ha35eWziyUQ|7wa$MIj?Xe#?LxW7AB2C_Q@3!{-``_5z z_V;RGojDrj#!rST>F#_m3t(ILh+pg{W}15$zYmF#hkx{W6LAGtDoqjflKHqd+tEiE zRzis~SUJ;>r^(AIv+L*%+&Di!e<5IyM6--CfEhqlu_M4z0PSX#0~=*|GG`97p=3U6 zkqvK2M}7~i>^&UK6P{-f@Rr$SBEnDOt~?4WEvLa+4nB#ud6k4sK0ZbxjGu@ATcD3tBn@TW@d# z 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/5.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7522b15dd4b388c14ea4c35645efa0bed6f401c7 GIT binary patch literal 36132 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 M07*qoM6N<$f=OjD2><{9 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/6.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6022d6e4c49179959ce1b25af8840286e9376e13 GIT binary patch literal 48049 zcmV(`K-0g8P)o&Y*lYjabjFtEJs|fq?$B2LXPeDFe zR?eVs$Cb}mdRO+TpRI0h{aNalJFoa&xQcMj@`|A&ScG#h^bhiXqq{-;vhF+m^4FvL z_SaIlzxfp-zw5p5=bG%&+GjUpLNgP$P?7#@iA;>!nN{Gn-$1P9%TlDY(TGe<#`O`{%y)}3cibG z17*2_L7u_1k73{AKaTV7y^3=60_`Yy?(z)%{iS2k4ouF!won`2hyF?*W83HO;NwqX zYH~a6<4xG{Js8>Z0j%~L=xuIc-^>^qbWXM?<@xnXive9)pZ}%<6_&2b>fe3Zf43;G zMSpM7&mL{pqm2u>oqQn!ItTjcz74-d`=*`Kqb%hfn6hxM(f-RW{Z6l0{v6#8+o#{@ zJ{9gK-5HcUd7Xdqc989Od;OdD$G=;CkMFF!ub+|Qx&38)Jl+pKd)}6Q=8xm&pHEF0 zL&Fh?v8HAl2dD=Q|Jicr=kUI8+rFy%OwR+!V5)8%AAkH@GCYU&f#m1Q;!Gre|Gy)=`P5tbtu+i?UKnMS=v$GY)4&b;{o<{$ht4j%m& z+B5sHL3WXm;T+sPiVhh^gPuz*qh~|_M*ktFedqLdE`RH5ayS|bJR0f*RJqaj_)URF zezx?t3Fl?>@fd%v^mTndZfC>+8vhZ0Aos&>0~v=heB3kF_cFh^x;OV)I?lq=G`AnW zmU?yn$jTwJwaKft^8W%ukJR?yTsP_Qx(l|@BED1j4L zeNXs@$-@1WeOL^gOBjL4Ju}G`Ly#s6qYQul=YQGn@t#3^evtv{vsIR*zL-5_*D=CE zy_s-@8w3oa$Y!6!hkxp?;mvP+fwnu3yieO_9Ta4!W#+(@kjl_Au_Yo15#X%eyi8v4 zBK^Gtvw4Ny+l8g20cLhs^!hzw1U>BCK1Ta2krAV?wG3Od|2okNA~AFf0t8_S1QdqZ zjFH!KI%Y1c!O9c#fFXCiV5Y<8#v4Gd*SN9cHz@g;>3EZIU}|ogLX1?NwN(eC+huyI zOZOD5-a|2LW>n z0>aTV*)CpX^rim6LyY9itDuDr6^nq>TV4lxlP!hl} zF_pigAtbjSk(g;Z_;V?OUdwNWX4BTI3DGf8(}2 z+RA}aP#)$TRyCV2ZVLCU&rU&r|L)VzK6zperzsY$ZBRVENREx@{=uKX?9r$2*4KU) zZ+`cyC~Gx*=(9hG`6G{EW3|A_^{W&fFA~M?%6&%O)@!hZGpah83@#g2ku~OV>@)uj z_8j{ddSrbgb&DNS9n{E>a?@ACGj1eUWgQ$g82YJzpwHij3|VF(MK?ME`L&wTZ~AN| zz!5l-W0r1Usj~{d`^RFEr(@%L9;m}U+z9ervKfCChlpneaBHl0QUj> zx#xjum=J%ahV8a6(d(B92*AB3+nTtKNEAy9^AA*B^PknN{b&4F`n$cu0K{$k_BYVS zW0`{jHvAg>tS2B)6G)KXjY+mQm3_tk-|4Grm?;>2>>f(Ik7S!a_XCu=%Dy zki?m&LQ`d%$F$3p4Azyp9j6V(bz_U4AcpsRWT2n?`J zVjYQ#*#xE^`WZ~_I*fC#e~EUnNlIQ9*Ds&MTQ7eXUHbF>r@kK#Jo7mc_1ajvzJOx$ zCVhSbwVY3`F6UXxR?%O-g>2*q9{L=E!IS9rdYB%~F*n*EFepeffHR_83{D_iUb7AW z^t(n{K_=kf#|H^m^Rj-~h3nXCTw@rWE z2^gyW%-@2{u>vxD)1cq$^6kMOHC$t=rsi*51e<6|sF>E!?;`FvhT*^^e$K+U@9?1g z9vy-wFD1qq&&IzKMI?8&Lq=LXr}T=3_H)PIfj>^9j0|D;j@!!r)j2ruV|Cj^FtCz8 zAi>b|p-h3l*T{3Pqpa`3%p-pa_2v#-KKWHq&-0S?mw~GAlG^zk0Hb#hEK>u8X{)bg5m zS4o;C2l{80gfDEFldLH-$3UWu^aAAc$k;trw0?SPVc z$0`V=pfk)Y60Z{gB?W}!oWeb{AuPzykndc8pe9Vg`2j)uXz1QxQlN^j8(5^EV1l6m zkyWJrIQ>e`)h6#JOdxrZX2=+$$2OI3lbm5Va_WT;2go_c09C{~|a2-%{_#NKJ!c1vHxLu z?p;hZ2n;$+GIlj&IcxFqJYHBcC_^S8Gd2MPy+bPg>F;@-+^)>T_rm8R$TM>&OBYxxYvz|7q`Iwk$w;JX|0~`(sH0B!)84zel zHD&0$fyI!K$3c>^gA`o+1(hC2?QnPyMqnaRRtIVdXezX+vF8i~h8O{}Vk=V2Zkcx=@MtOKElAB~Cr4{wQ)R;~6Uf;IQ>X%8bCVdLG0fO7T>IMTDbjl5s z5%6mRHgYTz7|_qoLCik(V_3OK#=r17eYh_GUJ9VF9+2zPaswx$(4Z7SZyuu)GdOqZ z1-$pd@8a$cK8qjxOaBv=Z*9^i$@uG|D0-Wi?9?&VcG%i0DeVndu z@$qC7SasN<%jFJ$2lQf{z^V|g5i(G<(v2q`YrJitK&m3YQNfi(!OT7HLWY@+t&JL5+&Y5sm0vv^GRuqit%y5XG}qVDO@c z4x$Ja>4OiZXj8hcucq}02?Ss`8xW3_e5Ja9KlbpK4a&S%**)IX1q@Ux$R!;U1vhQ~iH1?j%cKBkq={x)0;;6&%V} z@X{X%h&X)1orb4GIwu84Oq#=$Z|=V|MH) z=05m&EML8X;^t}nlu`KAw1Im*COVgrfxa<^vDpJyTcPyi(q**sWt{lRKgOOT_v6r^ z`_ZL@MR%)*Ht7YO29E~K9Fzqe-{jE~TL;K#VV8T2;k&d(?aMI%(JWnx-_v*o1?$p_ zH8Rpx&f+9-R0bU~?yOFK)9bYY0&{&jzEoT=P)c!s>aH&+yIJjrYzn7Y> zlrKIv{@W$PkhzSQ%j$@@Xr0I?f@zN6;AvmA;Xptip61#ukO+tf520$*soAIdNkPN@ zF<^ipuOAH~6(Iqj$_nBDEM4VZOc>_M3dk$e=qJOs6s;hVV;io|$XzoPQ^+uE7N&9? z-cu_mlnEGkZs7;4Y-RnKX3m@YGxcdz4-GkdHDgNjtq&XgAeBGeeUu05>lgwtOs>GX zvq)+jymB5uA!P}}U)gQ^FGS;YqaGW9lixl#YNyO!(mfq(j47}wT+9gE0@qV>)2Ynf~ljQL}O%^fI-BV6R|bJbEz|l0aQf7UJ!Vq0 z1Yr*R9xb7GCyR<&Rq@DeOob-q;}vA{}6tb)mJ?oPD*=`>=Q`AV0du) zo2ECFzw2D0D$JlsKu|{nfpmZIdJAVT(TDr(Oy!s!2K*;Ho5+C5^$B}$=&b@3+&MY` z3irqhJ4wNp^`TC@etmw4z#EE~YydZ}HCXF2D(Tt#GmlIr0s)4u6}R21G&s1^moHh4 zVWSV*O1)QX{G4f!zx(>lUrnRyD^9{UL_zVnC3`WNX_ZSq$1{0jbTE^)jE zKe< z2W&9u?^Zpo;3$KE+7kayG8z2L#JG%>WfKLLy}F0MtjKLfW77tao>PL*woJ;t4YQU+ zGq9Daz;qB+Q;uo%V3{zB2r9!F1dCzj5K3R&zHbME)cEfN20B!8`IBYCCJn7NeK#dM zkT5}ROqLuq)+G3JWESH6+=T-E_!+8o8T#4G8Dl($9F?#Mkx}TwGZiEE9LXeCI-J}~ zuhk^~M=-v`Tew0TRA3+tOVR=F_^pjkCp~U-mI){t}2nC&0M#7F<{=;a;C4E#D-_XXsw31rPNl-USkq zg;~xXCGHo`?lc2f=l)C861;Pg*rf)~&Po>wDI2cAYZfxkf#1t=7lP#R$?`Qkgr9j{ z&#eju(KLNgi8I;+Akr|yhF9WWr~pI!X_L4){jA@%I#s2rBUEd$RXA)A5VSCgrWp}d zP;)883~|oD?dB4_elYbBXH}--1DZg=7zSfNs(Md&CMhv1Jw|92nX8 z9NLE-#oEFJOifRqO<91gejCNDYrw_=?Q4TvR!h`*OR;%YpG0$V5AyajvPJ`g!Il;i z^|{Vq5%Z7#Y25YfpFwk+Cns4<)oCn9Bvxo@&*-%oeOh=4Rd>h?B<{yEz;hc=KyR>el;wX(j2NO@G z@?34$&@*hWV%LIUTbmepq|X5;Jd3DIGKx~!ok9r={RTuTJS z#>o6T^i8^fttD!II;=GoW8ua)kxOrPE;rXC0w5~KFX1b^47@sD>J4^`#vn?E{9EQ2 zLzx`K=M^M`uAo;`@0C%;BU(Z{88-v*|SVQT+_ z7`^XFTt9mXTkm}hSUgYILHw^tY$5BQ-(5w0WCnvZPDS>Sb#KsXC1#)cS?vG7PoX_d zj=}aYUhB}6b%TfH1OQX_S}g*5DK!GO-<$9x3=#ns;pxa|w>~9lgn3BObxPEDD`79n z)HQ^#Q8RRZ^F9WCJ^~=~GQ1la@a#hZiou{SJ1O)8Gz}R}$k7chhxS^yV1OSt?s;XU zhBgimV~Cn-ctY=UXp}#QKm9z047uXXlL<_=LaF^$sIY=^h!s@#T7`$`&}=jkq`0hT zXe$FzFQP`ApouYzWYh9{O|lBE;?O8J@C6v@aQ2V2>Xp4m&u)7~^2abqs&be`RQ+PRzF!6rC9riN(R|?wR0hBV>jie6? z5qQf?%aFC`h?0dODDswzq^K{`HZvI8`z&gsbGUW+I1QLBC#;h3ZeGPEy|%KriuR6s zu=D<>kk1^(#tJcuWiC&?O50O= z?@2UlL-Gn*iRk_%Xl@brStb1yvj>vj<92Z#LHfF9A-5ZuKW2J_EZKLG_VllsZ0H;e zQV>fGJ6_N2*O!J4!{?R$9axBo-q4@3-=fM<;-SG)DG5g3V0| zL9Smx-d%w0E|M5GhUuq&0Xy#d9NHrtj1l`ACor&fLp(1ie6++qy1jM$&Tsz~u3ox~ zt<3?>zJD4QDVs4ql4EpiM72o*l02`8$Mu;ZH9!a0a`~l44!tYZ!i)G~JEiyZM#MVU z)CFeZfy215DVVq|MD14tW$mFR3`T`(omFY0L0b>$C8}`bG7iBOqu^^C2t;NVnXq^5 z=4Z?wSYLZkqUzJ(9!9g-c6@*HMM4Dz=u%nZ^hiNeB>VF`}2OGNAGf`%V8P z*Cy9zV;JW4T?Ip1+1^$jYHU2C`$9#W^-ln|T@MhO&Lj3xrrQMWNgs@z0I&VhRw5KlJ+eU>PDuX`0= z{K6mL$U{$KYgsju-+uu658WlY2D1hu$JLBMFh1+XCGArU zpR)sMj-@m@;W`3Wt5E7|{BfQx&3_MgDs-Wrp;|*{+n&>Ng9E{_j%42HBV8 z&lNJeShp`^8+jJ=dnw;syfx4aL!nJm`-U`#1x}r84gvw$FoD*8es)3k`Bi)VkSv97$woD zuJN}?W+n2lGFjr8buSe{ZsL4}EUoEAm1I}BKx7rNKa*~gvYIqhFt|Ms7!C{4BPQ3J zyl#{C!VwHA$E&a)lb+MCo>2WOIdHh=sNVf#JPZrXzL|+;5;%=mnx5-)ME~dc2$V_a z*;Syq7n65Ai;eYl^j9y_m}N0AN6h)CSS^{Jj7yYN5SDz7IZ%1bY7^8iS%CqWgJWPh#sv9gWU%;2Y^kv-h$g`w7%#qmM5ryB9n9wU5 zm>_|2*ZfYbF0bN^*Iq(@V+qsaZ8RyjSg`T3GeU+~G-t)|)WKx(9fE%(f}qzPyfgPK zqO6V;>o(VIY~+a{JEipuSrSU9jIQ50@)JhjM1SKm8%Fo#Pa=*-m#TN{F3zm53J9qY z-pMnSLq;E8jULYro(L=614i$kzK`TcDIu<;F&$X6i4Anj6zK(%sM|JCsRlAvf+UGR zrxIrgJ(s($>M&f!l5rQfjc9qC3X{b{StaTgQ>fpK~8DODU!sS zbofz9q1BDDxXiGU)W^b&(|GZl-@<{1K7sbwcG3`PlBQ&Bfm?@34&OA0X*AI6Ok&s0 zy<&XF-+B!TSI%R6tbx&yx_I-bZE+}|g;F|4p>WIr@Ts#11V;4(9~u-kh7%3|$}$Pi z1LpYOo$*^W_&oSw8!``^LJR<6%K%!+kV_p4Wx__?zGQpH{CybVxDJb;iGhZigxe{9 z$_4(o2~4p#B@QU1mnop6zNbuvr3rs4%5mN`Bb{KBz+i$>ilYJqssGjK%#Ov_JQ>Dr zK7sYVSdX3iquHqb4|~uIwsMBi->QTg>lXZ%Z;z5y?uXxB)$96mk2MZy;!*dKA%)>I z_OGx33#Wod#vymq+7t;x211XOsluFiHK6LX{BwnS{uL)-{d@#JQ;|J#Pdt-QW%}Ka zaJW@25>Paej~+yO_k&ouaRtTJ73YygA?13kHI%sH>fiW|g$Gf|Uxx^r*9%}R(h+AUnac^)sl@DlF%z{iod#^p?p*tXO;B+=^%bs4G zPZ0${UvrYGjGi3(IS4wDO2@c(e*>Mz04**nlMiYIq%&TNkYR8&RdF^YXCasyIYCc@ zJ7*=CT1?PJv_hV%Hy;xp2O9pn6jGIBbCOQLqXj{~EGL9TW zQ(wMrP{n=?&GH)Q5ldG{T)Y>Z5B(*q&fY_MM24AOpSEvdka3R$(hV|l7!RuoC711s(Acq{Q+egc;+R?<5`pT)ui~H_LWaz{=g%oRTa2- z@m-vJ=l8L5&o1oVf0RBmj!j}ITo7fl!fAYteaYn{fZ*eSTMupm;a9q#bipsNb zpkQ3LCO;yKRx+C4?Oh0w>AYUnEJSB;uu~W}4vZ5r5r%gF1-LXOgF`a8DH`@|%}8vN zq|$AZEl?H95@s+A2JXGMf4>JcU+z-FS%fxe1sxU-ibn`P6@o!KeF8&uVx)M7Ch9LV-?LavB01x5ur?1PGSJi{>+j z(4N_ias@#;-JlIG`!0$ip6U%+aE*w(Vxcp)FCvQ zP0Y}sA7SyYrd^2{81ifjm(IVA)9;NmfN(a{bL+;tynof&NQ^}P8xmM)!Wy)Y1b zK=ktRvvlErzfNb==@Sso9jYUt>0EdVfj}{*BaKXCD&RXZ)v{c}Hp}T=by}rOGGfL= zUlAU??8t>`W!hxbn{^x#cltMkbGN@|s$fu73{g$igikv1g1sxI&$4FIfVGMcM za2*fxaQ@X{>YJO!cg6F%8C}s6r>VjWx6%3p0FX4Ol;FTdUgAqeOkf?!yaPK777paB zKc>GA;i#2;`fG>=XaWG5Bt%03Eec}BQOqm=k8I_Ok1Q%6p#~TClS0n$Ie6AqI7YyF zfwb*5I(3w>)Uz}}*F*XXqtnzKjHnAnDuYp2Pe*Wl$Zo>U~+ip-Z!4;(Dl+&$Bh zTAO8V&dnMLkT;OeKaS?ZKZCWYBWSfU?4Yn@jK+oW{SdO6G(ov|>J41Jcp3LT$Z5@S zD3SK2Aih$=l2UzbPV6MhwDS=^q}-^X>hyExNpoh19W3`P8WjEqB6W#M>b za_&Cnu9k^9(+e{Um1UG}@9E=7WBsbh#;MQgbM$mS=7deyYXr4ewFv(iqbV(uyk?Vu zZjpuoF|5(chz~lwM{!Rc3rkd8hX;EtF0xX7+;hLX_@C2@3_g=$|h3mNczGsQ85Tm5?3Fq3FkSUyFjQ3D%*R1b6?P9SOe`x^Kgn^kF8mlFSuQWo|qaHf9C+NDY|S z#nN4)X9faA45~)ZNkfLx9ViG*L0ELgZc|18+(si2hj5&^h;Splu@tUy%-Faeeo&Mh zq8r!5q@g@@K1(OmbPvU91B){8zP+3CUcXHYIPlXTu zTs_G9EP}5->^aRK&QD;Lz@3ds$|Q8{vb0E_*m0Mf;mX2$WHfz#;B^05G(ZOkt;3Ue zR@8ZUEF8ldtq9M0G#1t{SlvML;3v?y|0l54-i6Ud19QanM@aH-aseArdG_e-Mh}2uY4CPE-*MvSJZ2PJ#k zQEUuq7@42Jjy)Tqlf3nv|A>jHY0U1u8>Tsnt-g*O>pLk67HQ5u9wz}T#3Cfs3bfG4 z&xf!93?kDIyK>vcryQLv|IQ)Oz%dRFE?(x4vBoncImOBjm>5Pa75FSX7$j*!R6~N{ zx`fCK0)zxw19#G1xHBnyxS3o{JC3PrJ0{EwjSX#P!h=q!-0iZR*An76rTqoGETvOH zg@^^F;M0;y(EQxS$RP9xLH{@Umrvzr7i`D%5CKWYdF*vyJgyrLQE}Y`xNTCA6A2u6 z7NKhrL=W#FCw`e^`(c(4;R7~mAgOSPAyCPWx{(F<+(=GJu3cbto z5=Jn)^Db;{mDpHY5bvA`_2%REv|`YB9mfr2i^#$Z7sQNcY+q8Ua;=Z4yM6%q(I3EK zXBWmAbXblb@eFR%sM`|1Dwv=820s=+_WNl(%ou~Eg zAzpiiY7nJ)e0}s17)ltUg-4vJC<;1r$+S@~atRyc_%dy|>Ng|Yn8X;bs62Y8)OHrMOxuI4R^)! zxXJwr@O)1)|4jHf6U8pKq}O48qldYB{{-^8e+W0TIZTqUxR(;+6U@?h^`?w9@EWQA zOL*^{Z=+u8VD7-fMCUuwIjBJfS1UAKDTW}Pvyl5CwFlP3MO5J9`7$;+HCj7hLem_5 zU+=Yh?qXo{qz9XN{yE*LyoFnXCjDN=%z;@N%d5D2<^+1ZEdtB^n4I22;L$->GAnhN z(jAsw<9-mO4=E6wor0w#-Jqm;^qS_0!zlmiD0GTPlfLP5UKseH!m$GWFl zC$^VwTtN5c>#jkHqo={+Cm}=h91$`~;|&H#0R_ot_3CslCV?7`6L~Vy6om+r6e2W> z5y>p%VVLT&T>8Lb-z0;WJxIX_&Sbo@@8K&pJ&BosEbJ-nA+n7~n)RGDTq=XI%c(50}&1T+Um^J9`N+#0SSj&0sj89Bs za_&Kj**n@EUGp3IjEyow0Rp4NJ^Itp>mcwME&Q=j*YUJHJ~I=X3If?QQr@hIol**f zxILPsalKIxFqCb~?4BZk+Q8C{_wml@6PVt%9W&bxqu-wZS5NR-kkZd&K+K02#h~!} zwhojKScCr;M!$dE8GlgeoT2;cD{Yz^)O{C@k#KVtE|bm%7WKh3Y}|YewXFpQ2sWu7 zND7l|GI0Fh4bY%Z9T8B<@OKC|k};^_M@?oZ&gSzJA`lo1S_z3!-{wPtR6LAkX2OGu zQ;z-3ivH6kw;}q2C`fu1q(vUFSjU@Mm4+9Nx<{`ZJ#aKV0EzjT2uj8#23<`*nxFxr z0&mG(1Jc3jV($=Epc*G%J)&$w$yZp{nBDb3EK!4}uy7(>=wm6~o70Y)D7sA?dF01{ zT_3}eoyLwv6MGsKQ@t&j&tPhW+~qof(#tRY2h48Ui?NvpFvy#vDHIVNjV^8H8a6}hx)i!F<9F@0qi?!;u8P+NMT`$Mb zoVXWimVH07X+3;@V|MHs? zlK3W#U=rK2Js2$~=*H%5xJc7$M9-G`a3Cfuqkk`bIDkm&BTLZRmU?lZ$_sq*FvQjs zBQl9$yR{qrK$CLNOkzPfzIdBdHuRxEtc{3S3=>j;UVsFE+hhCNX@1z((EG#r22^?% zmXkEeIHJu&_l1&@ zx8vA4&ocP_VPaG+CF;RPjLfZdFzEMW+WNhZ{5Z;8AI8nv6t=Z;>~GLm>Gl;&x%v@Y zWw?YFzx^fb*|!g^$-5{_Xrhs6DlscFCr}m|CU}Nv2JUwg_?2G*GOLuQd&;gNo}Y%S zPOh)h>5X-1Lj6SPXgjl870unq6XB3W&rEtSY|-`gdIXfU1K4wDH(m1rE}ngr*oDE4 z9s6NMNqZpi)%LlXvaVj;S~osYOR#P_cC=3aJhNaI5hP3)zkVC*Y90y^Rb?h>cLl50 zzD1yLi7sFrTirG8+?1vdBl<*xPpkZpumXKmn!YBV^(tuEMUeG^DKm$;+B{l=5h)+d z!;u`#s|-{Bl_$UJUM;+bw8`cfQkI~v#4sU(i@${?dM>15pRH&C)_MQT#ySF@%2coC z_cYwuI1Bstc@GH_Y|1}OI8zTJHoWV@figgX>?=&1iLX_|fk@2b69jYe4jryE;q4^ z>luhDH%P62gutLb|2P&%eB05;aiB$+|6-FUt!4?>$onKSziXZjZ77FF<(+ z@Q)`g`SEgG86HuYKv9$kqnQ=~One=JzFNQ}Mv3sZFM9Ilq2Q3N^BnnvCt{wbcnu@Q z`!PLf+&;2!Ut^yHS6GE=S~M+c8m9gxfu1yMNDIRJlZ^tgFGn6YASm3c91!$`32-K% zZx`vWTXI%YQ~ObGv~gwO3>{)qQh!+)M@GfrB914y3z-@hduy&aD9IBw^9g+5@z0|_ z`2j4I9qb%y;BEqhPJc@#9jQjVDRUFP{jD$H$lVX1-QGvdPPgtso?YrS0hT0S`I>`qX0J-SCtl? z9cVqmAQ@XObdw2Xg%mt-YOz7#-}TEcp|*KkdQx|2>XyEz{@+LJE4>`ZCwfr`@ z|8O4G`B>u(wB{6k$~p|TD3v&d4?XsiSRa2Bi{$P1jka;fF@r3xY4}mnK+RV1^>2I$ z_uu;{YR!2{+qb17lai8J)Rz40RRb4h=--(!)jMcx!bV*R()fGppgt|+a!jmJlFUae z9V>8vsHs1TP|D-)x_ix!JO3OqS5`cru;FGgiM-Rn;fa0du3y2`_g|oEY+!os2u3

wS^8Q9PZfL?!U4G#A;Wd{wdtz^BW^xkvUn(KL9Alo(zj4-yoY?SCe33wbdwfp zoTY)gsd3mu^;ts$BoE#H9fd|?{b_38!0KyW)=4dx#g5u8jFeM!A~kt@(X%5`GwZ{E zBziZtvP`-k_CC0X-4E0MMT)C!ABzWnQ6a}ENcXa@YsmXshDWU$N(x>&?k zu_(B+ecJ(2#s^qjzD9=H4`-bdrRQFM!&9v@mzD9a4`fjiZQN1VO-$1uf9wOF$7bso zmS~h58tGtP+hDA}N?}Mw+5i{JtYOf-i5I@}6+HaFQmlcE60vi!#5L2CcPR0crx_nn^@M%GkyKBfQAQZvI>meQ@ zV@Lz|x`)VGQU)^ol`=b90Rs;Rh5YNe&PFUCZV)TDNrP-zszi70ybEiq8(3XmpmEy; zYXG*8wa92-_hq(Vg}-r_NTdX1$_70U&EsheUOejOF+~X=E5Lk#fMqML7Zc_I4vEs{v3Qvc-9rlZ${egSv=9~}>If#V1Lusacc6(N=)i-w$Q_>ff+42y{8alHWpnDx8rqb! z*^X_qleEzdtlYYY3s+B}GdYXV$-T7g6onIYx!2sUQXDde3U&}&n0&iT18XGZ>`WK{Wc5rTAl~-0n_cL;3_&?eU$E z2a`@^wSm2R?!wKRi`dv$lKBPR4`_|QKcc%|CJaM)eLw=E zRQEw^0LsAzc5OR^M<4tVbn8d3Mo#1I?PJ(Op-J6#W$_d-7NWLm%U1{tzKX{l|1f#C zY1%6tyi~zXQ*WJ)6@MWvp&hk8dP}$+|&FX-i)1X&&uy3cRPcu(omq3uj(J zy*Yx3nSFFyX6fKHVqG<{t&)_(-k=-K+epcHAsLSbF|MVnFJt}I>jVrd=#qxh>-R%{ z26>h)16E7vasUIwNlsySC6gxn1$qPJLL)j&${ioTcris3u?dqHNi?q1;AN=`#0W3- za#`3e9cT!T9mzuqa@vpq7VyN;W4`yLQCBdPcRh$?$%FQRg}+B>R^j#_VkksFn$Jj$ zJu(Hq_-Yy=r0gQ|gDc#@R0K`I;7%;TKUELDg;pC%Nix?Lkm5taU12De#C3XQ3C;Q# zcJ4ZgYu7HL+rOm^Q22PID(1$xpz z@M2)}&ZP?tf-nZ39Z=&fZ44b`=sAP-aG*s?-e@h-lpm74`WtNAAiRBvw$#W?0ypUd zr>bYZ{mUY4kgD`|AO%N-OEZ=f9(0MCZc%!%)0)Km&V#sg`5gKrIB6QvDk}&jv;NCH zH@9x4*M)q42^O`wTbp>`;C;C7?oSc_AiA56;^FyG>>w7>5+mig0VHDX*L`2?~U-`=qO_$14U~rW$NtoaniQFMa+ex)JFKI6cTJ~yV?VqEQSXf*cQO+QWemC3#%82R&w`;6xhfhVTzg8#OW zi#R^zmi&(M9egEYtfWjuMpHSGyc;H8rBG#(PgScUJ)??e?*I11PBy7eQn-{dWN2%2 zt#N0ui3P+}Y?N1JHKno6H0HMN!KF)QDIdKigOe){ZRr3d%;5Au=r4-SifaaV4aQOn zUm!&j(WOpDdH+6W$BkFu#{@; zmUK@joEn>%!}8{m+y|a0C3#?}GcYoRe0}{SE}#1vfx#*^H&;lX=(#bV$5s8;X(ZC% zwx%mLc|%j7q;&MfiGC*Dw9-vd$%zGwk+?BWDaCE{uxo>QMQt{=7KXD){-1ssL^5lV zGk{5F2Ojnd!J3t;|t-MTs zZ(wR-8>S|=!%dA|8GCanuMjSQp?hfuA$i8EA;o(-LB% zA%fm7x8jhSEG68}xIoU$2Ud+BIu03I?kYU&0xTc!^HbhhI!cx=nXVmW2n_iUrnW8;5|X0ht}x; znfslLeVS5=dusH$>D!t6lv4r#srOF3bsW}JpXomzNpXz$tveqN1*YPCff##7 zPacIi8w}m+3=u%e5HM7^jN4yA>0^yTHGd(~wyiJzNz1GQ)P^fH&Z8sYF>wl3DuDVa zS_NXwrHSz;(s~OG!}R|7a%ApX;5rq_UIqjNBp%vp6e3)g#wK$!yD8s2hKm#?Xam*w z+~LLq+!eznEXu~BE6Fr*O+FcTPGZ$ZA9#jD$tQ4gFoPz=z7Nh%W2&}FDYJFT6g1Hw zB3Y~V@$wt5;_}ri_~64IkaV>=6}l!at#cEUa(C{TuQ_%`?JEU^y-J!obK!)$x5k7{ zW&&BR#N9vP(t#W^iQHY9U#?G$#ovRJ**SI1i;|LIa2(EkQ2Gu?$+OYbru|d1j>kEc zfS@(_Bk11YSC4XYgW}J^Wds}>;hKV4UBp|NPAzjHxMLDQe(wxUpZp>*c1kS{v?SR& z=BAI)hEXdiQxa|)^-;7bWDIG?pf;BN@tb&(e8cIWyfVTzQa*P#_M_Dsk;WzwII6y@ z`kTLO|1%8|Qu=RU!Xpf~GGQ4hA4v1{5%r=HU;+eK2Pg(!%<)Z9qmQ@AIh3&BoHFYP zWfU&08-S_l#-WGgZYC+J@Tx(WY~ny64`yD%R)(HQ?nq=Ms$%$_5AmMDz2m)~4O)w) z6uTtrZQ>dM!W9`nyJrs|Z?$ph$|W^uu5xq0Z>$;g!EP-CEmEcY|3$$1ohHRLRrA80c8y4BKA2HD1DYP396+YS&p8w5~%XsBTW z{3KpPXW_lP0~u?OmdL~1e|>6d;C>cm7%M(i>DYpTQIP(n%I?u)j zlS;&lLWBwI&i7$^whN7JM{l6v4l7Y{9`>%)uhg_nLgnlbbVM&5aT!DVPI*9@I1HB= zfWxN%T0o`09esMqKa}c3YM&^|gZEA8e%!``9}>Vx*c4Q60OI7Us)?scK`gQMfa5(E zP^NI~&c8^G zWbG1P`Sw?^wzYxB9(shvR!y&lg-E9UY!sQ#Qb0P6Df=wr4BN~bE*rI$>PC>){(=4; z6vk(}jQ3f(ofydNfv5HhFm7Q~=nO=+P3dy}=@ZSu9(@R41AzEMv-C2Mp%N$Kdjl_0 zCQ!Ow$(|8dUmsv}8oE_Iq0Y>}xLOYj=N2e5>|eqACx4H&xr}~)jhMl@2$Hv#m3u~% zquCrqt2sf>YeF(iHJGR#E2>(Z_R3Q-iAvPyflXl>_E8pLyqrX%-wK{7w^15&!vz*8 z0#(C@^RnMW2vg97A(*y(* zBCHpeC=y?$c)pE82aaO#)-7CLyezS&3U5fjzy&qN!*0wX6u$9D<_11(KTV?IpLqH+ zm>Pcww>Bp*F+pL%zEOgG(P8SC^o@20VCZXXP?vXrNQWErP)47g+I6Ou@s3j80I8M6evlzH0=$ zHLlwz;u3teAi%X(aq`6Pq3m6xzt<>i*nnTA&(Ftz19<68OV6cI@1R{D7cgkmM$sSv zx8{u~HdWO@S2qj>Eea8KV0Zlh#`=?zMJOF;7-@`JN9+p#XTY~J1OE=fEv}Z+cu$$K zjA(o&7`Yl&^t0*fsF)=J5R}fNW{7fOG_@22oOeO=>qrKL_XnN|X33U%KCv_y7-khw z0jOSmx;CSR40a9!|Ad_>qtN2u5g( zENx9-+tdW^-`7BUaE+*FUBk_sQeE{7zx$;xpf%FQ-3RU=qpFMMkeS%C0A9m#$L9a? zO5B-Cke;~|B8L{ajU!CJ(zswuSVFFM)M#@uFZlVfB>@&6zciuXNZzyB|C3(}`wu@O z6R<91&@`og20}do%Zy`7pS`xRFOx7rLkI2ssLsH+eM&6>g-}H?aI2FUX-{uUT^~b_ z&Edcjfx#DvA)Fi!usZsAN?9lXak9%QZ~sG^XfTj-ipa(QdTeTm~ENxS)yj zG_sUZ%=c3!VILaYZPse6=JoC%w1p})Per16BA80`YgjkXQ}nkie%cQTe~#YJt7$b) zzYJn1QdYP`BzZAifb{ z@yMksH-$}ulrn?{GA-Hq4tbdr7rkx~5gb3aJpuxrU2xbOhVv=!7x`l!;mGlKb zd6i}fhD3A7tAGHV-(X!Mu`sTT%S2dz&yDN#X~GE7vUKg*om*dNXyQnSV^?m`5(o61Y9<<<}4G8Co^f29UlHS_qs_saggm>o#A3vr(tI4}Xg(iq!+ zY4g+wP;qv7GhgwJ|L6wl>md`JeZP}VNn+g-?kD-UOQzte!vzXV*sJI zT*wvAcOY%YQXUmrq4VDY2D&haK!V{OqdXyKld{fN$@CYnM559LuE@0IjF`eyoiakZ zj$n5CJYIbBMXYWuiEt-+2~Rr8e4Co&zFW8wV7*^{&VtUMqmK-_*f%kSANu$Y)9-so zxN2j5wvGGtl9wrNkii-i_jmypviN`V8~+OX5A4I9`F-dxGsw7kNFR+xO`nC6CgfO| zs~>>AK5$P_o`%WexG`=XjfA|p0DuCjV|niRi8(sMHYU*-Y%*$G%0i#22?MXN(U3It z=%2mIthgstX@Y7Iw$drmjuB|%gvbh@V!bJS{Nd^<;A9%9|6mp{kQJ*%RAnnI3R$O; zD?oFzj#J0Kgte6uv@OqE>`{7gQ;M5H$-DK8THSf0MyUY;gARiMrGx9-b*kQ`XVH?L zkhQ{1Ok$BDC%s@Bc3@xqFh&PcG+4C@GLjn?8JuwsBA9OSdiqtR_*GCa$tyM>dUdPF z7VMCT*?{e}goe8rj8YsGkKpt80qIdD247_>N(a4SFLD_CngqVZmQU9DXy4QPRBF^m z-*x-+EoA#pDjS2NfpO<&wE=zT2kDA$L`gPWt=1KRkhKAuuVHPlfK_uHE2IysQ)sY8 zpuiK8c$#sYc0WJ43rF@mgnGM)Z@&6Yw7F2Oq}l)U3=}$!p5` zgculC5t=!XPtGYV%g$U2voekZUZhooN1X>E<^PD^+84naXdYRkV?w_9o(j0y<69Z0 zY6_Z0RLvpttpThaNBcjR5I*>FW{v$3^nrAiV`SB3aAC$)Uo*~;l&>yH8Uzl#?d{(Gdwo?S7Iy>Ty?>;D zNSHzTerlw{j6z>Em3MLnO3}+X9$=$aiORfn*Ha510Y}Btyo3Iq|E>p4pv!{S;njX6 z22m-9=M}XH{(sH1pwmorfaET-E^y?+FlGvci+y?2@kAqD_n=Fjzh_AgC^yLCugmvF zxr)tl3Eko*X#}?jZf>G$)@1533xrJ`m4h6IwjaUaJ@;XCuz_#9@<&7?yABLWNA>jn zWp2=fyPD}MnR_@=2UzxG;?aNx-LYM}@%g8}AN}q&EUve4&w&vf*+wBIofCL^bhCy& zg#ujygMa>;{{|m;d3WWFT+YS`h47;(WE^5Q3{6wo zc%PlIr!@t>;R@V#G6#V{vGC!hrWZL%Vqsra$|@C*N_rN}+6K;?{U)woe-*sac9#I6 z*Wc9e#C2;5He~f&c|YyuxP}S@22EiGEi@<_CjQzCaRq<#{8q`}fDayQ@UGrCMUgfRCY%@= zQ3N^-a+W37u}^g83p;K~RxH_(Dv2Z1r@ zLB2T(5Tq6@Nb-MM_$H0&=fFWO@^nIvtV4C z#V+is?Z=GWM$c43gwoZH%Tb0H!tH#);(LGD@40m}UoYfkNLBc11fJivr?d(&ss!<7 z)Exa&4*z3>fQ(N$p=4zTkBI;?Kbe((OK-9T1A6rOXhTk>gwrNHrDV@f9+r6 zqaXb!#wadrWVyz?q*rh;jju5X%~wSj^rE58$563aUJPOzhg@+rR*_^`!*@l24C&qa7`s+A%;g9Hf(pc)zcXtCmys9js>_Xd&Qi)A2 zJZdl)j1n^-a9}WSp+XkGfW9d_sU6Pl!w4^|TI9hvRb7uBs!AS&drC6UB}mP~qjqrY9A@t3Y3N#mJYb8gD|2XgnR6cS zY`SddTV&jugv{dE*~sa8gJU?7@-}&CGcxpnnEIx0fq`@*+H|MK@%V-;S+-e@qds{I z6T6RKu<|Z$USPzRwRbyKy6FYb9BjIR;2F7_@zJ3w+9R3g?fn`4;}=Z~Zzx`KeD}lt6&X*Q~6q zX5}2D+p^fH9^2@0SgM%&vRvPE#W4sezH#PNc=zm5djc+O2*!=8%=bW0pwVg3IpR#j zOqhc{`ZD2@5O6Wh+egoD0w{!vLTg;Q(T_o|ces6)YK)2vDrl*Ood9=$YYV6F-YI5$Ty(^M;Fd=;8N!N(o|S+L!RiDCV*=*E=^Dwof)(;OYa;U5T3u$Lm97JkpQEo+z`5;JOXqtOt7Ocp6!VQ@ zY}+%~a~IL?-kZ35;xvT-^kC|v=x!_%GbE2*Bj#bd!c3Uz_9>M&Ha?D9i&wC^wm?*m zxJ9;wQ}2HjyQcPGtTvC4iCJ*#@y(U1;6{24sb-5*QkEji6mI?81o42*p!g>@SY-hc;K7pt1c??&UrU=$Lc=rA=>=?N&A&Pq}GHdb7!X^Cn7k(Gt|LISlO=GCV z`EobN{3J2%kSvK?lesC*X`lC){J9xNSvXyH(nIF~pUJvbPjS+KrFBrTTLF)E|eRt3b6hJ*rx z%!=gc;Nr3C(%vl3HgM|93%Gpcl&qJ@Vj^-HLzME}>UE<Fd-vm;6=+!2^ozm5nXaY$TH01*GMR{!v=`k_`)zhu)rT<^5q>r zpYG*0!0_InLT}TLWN}(H8x9YajHlyvWj%p{jCCs`(S;0tvs@7xzd^>nX;-l^Sf-!r zWa!I6;*5>82)Q#J{JcF^ zkI{p0OZq??Y|xJyJ#5kl(7Q#(Mqse}N3r9`XRx$(1{YuX4Ro3$26pyRYVa;xyL5tt zNbbaYiH_ZndF>o_4@g*CT6$k*w$*qJQ=dB$7Z`7j$b=%a*74nUzb19-_uu^}e(+0=Yv z-ndCX!wiN})Lf51-zP4g$M62Z7w|)${w$hw4;pmBc_Sm$o2y-2t$+|P>sC*4^()Ng zj6WZj(aCBq<>@@FaZO2}VMK`1eYYf66C>eXrrLlmXgYw;QYhmEJfrj)lB~YOIeo_l zBn9mRM4joGY56dG$lykyFJVqVL5Hg|c*p88>sDi~Xa^do`he9sfZ(oFd5zDvPK3KB$7OB!I^tWU;ENXfA|)9l5qT}?-hIr4_)g_HFGoQ50W8+N8#rME1 zvS!-5aO~g*=ooAG=1YHo>uaZkqnx?)8V+nfjEC=e2>0K22=Bdj5+}}{z*2uzDh3Oy z&n|O=icpPoJ?%uqjZ8abA3yr^M{scdAzWCVph48ZGsk8y+q$kaoi3`y=}$8Jx6Yo# zSHAu={P1T#i#B;`rn@#*MZTHmTJzv09GRq-fuXqE_1%yWG1+T(#6JV zq#3j$lJ-3i2WE6(R(0Z0YWCfyeBl#ZLy}lc$lDa5NvzsMsp-dXX3!AFjqL~!rK>Tb zt1KdbXlXQ@gYcl>BBs(Oo~5HAdF@OxW96VHA;D{Jei7GiosiX)q%kWuRAv2$fVwDr zv73fo{+_^rT$4+ZIZUXtfJoVen#(ANfJk7#vr-wfGwU)vHrSl`dxG^ql$JC_CVv@^ z!4Bo%W|~NOr5{qhG)VVSngp?|D)m}os}F|b)6AhR(;9BjqIq?Q%3csn>SbF>&&8{A z6ORpS5Y^r)HpReKDc!aqdi|Qj>OB$YGV<&lG7eVL7s$BCzjx+kUPgnY)1}qx9O zF;jl%B^mDAo(J&AlRt>j_I8|j?Pa|C+P_18^*u`4u;Sa29(R%&V^MK)mCk7&b{+az zOzb*}H406}XLe(G@f0q+_!}tKh-uI@7^%x|%7DboSZ z)@05+r!9Z#!ym`qiGu_%+mN?g_{e>;n96RD2P?!2H#nT20rld$@8G+yeHWkm=mKr;}9 z`&kxh34S}@VOhp}ISBO$g?p~N#)4$O$hd2D^`r$)+@SIQ(i>mE<%KutcM1yzr93O% z`xb=?${u_+Oeb<>fl+0|1UeXPO%fQ45-4=g%3H(~IyBZ>B2-F7fmuRLS%Oy7WNsEH z1A_5g+#)S6(}!Zzn7z;_TN-WCq|2Nsc3SIwf6Xb#uG+8GBTvifIeBTrLL0~7B*wA# zE+{UiygJA1>vow8pACDJlW+9yn)vjRjE4auBO26|b@?_#@Z)s?EQJI7v^L7!nB4Ul z%uL^n^`#ea_0sQ%x1QVi6wVW^-?j5YXc8?yfAw3Eub1@#rAWO^pQjr&K1W8jNQiU^ z{pAHTI!EyXfBJvKu04D3#ozh|IR5Ha=x{puM0AOqd)SdSK+k4+*Zny5$mh@*+kw+> zy@GRZ{Wbx^IXeClZNEx!-zq)u2XWw@pGI?R1}ESAr|7L5M?P^cw%zr#v^l?i@m*Xy z^#aPx_vHGFSyctyv$ssyRgF|;OL63G5+m=~{{*_EGQW7@4{1=7)?v5Y;79PS47d!? zJVEWy+#Wpjz{8lEn!>5m@8gBzZ{f=Nq8M(gHIOQ|aWe8h`P^qP+dhn&t8I+X`96J= zeiD#2X`qVWMjnTm!FOJN4aZNN!lyp^v~a@~0}LzTxq5VDuExM9I4B@!p8~J>XyKFh z^Z+mn3NFSsnJXdoa}rDd01<A=H*f_$!o7_)!?8!iFMz#@5H zwF+_`R*U# z^to5*mTbATDiut-{hl;YH9-vbbv@SA9vG=Y9BuJrr7=w{5+HO45Zdhy0YF2JRm&Yq zU?Diyso>Tnm__LQd$lrz?Xd{S$2O5U`24*U`o?LnzRrpyui0a-&hza_J>Md4zDX+h z22=Nvq_}cf=sU;i8=}N>#J)~PpgcVNJ;=KPAhLFEV>caWj&3T&^8Hg}!~_rnBVByk zt$B=1kCMQ0n$CqkL$N=kDo$bQn+6;l~Bp$nGl$gPiE()rx21u)D;L9(36PGSu!pEO|7WILaymJ;o zj6aVo0e2;HX!Bnk-b{7XMC zr7z(ZH;fVKiJ0v>C%%T0XTB}JhyDfhQ^Evh8EHl%+$SBItP_m2$4Ms`5oXX}X3%KM z@AZ0JSV7HAn-*r^*joeyWmD!K<#9=rQm8;F9@v_`OfBu#214E0b9XHpI|*_0w^q!p zV1-u&CSSfq2Hz#m-3ZBIqHjAQy7ozeR+IlYfi`xY);c##gcAx6gYv6nYC zFg9@%JNJB!E@}_fSKgyR_eXTh_vm5?R5tl$aveP9X>UksF3+FD-lIQDo_B=M(_&(5 z9yc$(Lmu~w=y%@`PupiAOYs>i;o4eDK|mX3#Gs3pzD3u&hW6Bbxc`a2MC^f-;>8;> zh_+VW!kIVz5e>}u=$h+JJX=*T;RiuXB_BPAeS4n9j=8(BNFmEP${uX3pCcf-MS|oi ziFI`x+5RZ@?S2Rg%a`!#`(LK#w4{tcYT|WDE8LV~?T}-n3bjW2-#>pBw#az5x{K&h zmg4ShJMh`3K7yIa39M3PgPGmhdIyV}W0;#6#bZY)T~*#7nn^iv+F^}7J_&_ie(77d za`QSq`qUGsZEn#0YtU`X1t@s{*XucaTG6^xW+-lR0+z4xlR+(xNu%_l^eh30QlrzS ztO-D%>Brnrd!@V9F#-)GxCqKmAIO~{M}{ycwKQGA1n0F&SFFUwTe$6Y8*lgu2*N0m z*8)>0OUEcmcV4BoRs)A3`ctHJJCJl@&BgO9yc%+f@11^;0O4Eo?6#y0yOx7kY!VAB z3Rg5|?GPa7Idk@)!&QisP2lumtDzYM284!`C%cS-JEj+Hm3?T)RyYCB{I$t9ZI=}5 zjlr5w^)-rlH=V(=^4<;UHcHJ&ZatTnPIAk2@^pi%+M%0_ZjcY8XopL3`J%bE+hB{C zLJfP4d>T(Z^Ru{d{Tjah)xV34jpHIn&d)t0^RYL(*KzUc3A#CRn3#MDd-r{mE^Hbr zi?89z#Xq8b9;a{O7`^LsgGkgG{R|G>{o`0(JBv%FevjU}hLOqp$g@3%u?_*sGSTp> ze?$-bq$swA=u(kUeBP+Z1Lw)x+_JQ@%ndunUr+qhonpJ z3P#eYcv;ii1y2GYeWI})JGOtEsJ6xE1f|{H{}O7&S@gPV7^i(5{?N~%-mT%<>EFTW zSN-?7qWH*GC%48syIgsU1orWXDKcez9uygxx27Zu>eIp6uyGDG0W=%pLkiiS3l|g+ z9DwolaeWCds9MV~OPyAmpR&JG8aaIApuRnAPH zP0yBu#1Z;t0k}=sgjRzKl1Lfi`3W`E4YWKtN5cD+9atMQ8FM%OtSzJ?@0Kuw!gc{y zYtBnr^VG-&rOHNIJ1{Z56Vr41F*3dlqazbS?SJF<|9kqIXb(}z4LaBsPr{(oNI}Z^ zfIJWPhJWT`e-WSj+|S`_-}oy2;J5!CUENjjvaFm=j~^6NU0u6QC$uSX6YL26K8KlY zk7Dnx4`Z~k4U0=JQ@HRlHny%|V&;Bg5+BF;Yu~_)3%^Cj;9h;qNccw0pxJ%|bK9T5 z^cVrd%~QBW+ieZrfuRs&kh5qpi^jt$#phx`?UK zLuij3C6R{W>#g&+a`k1Q?z}jLWlG0uQH&pz8{6Hw1@zCLSh+~|ZU^R${UQ$B{~=sD z{yVtv%0HnSNh!y26S*X0`jRQ3bOp4bZ5xO7eGcpE4NOkuSh)29Zr!+qvC+HnMb#Q`v#g^iv&geCXUgxm6p%M0*sAtJg>~ zAWyfoLE*yz{Mb`JPV8+zu5b2nU`K`r=ep<++vE7M){uTAG^k3ci{M5l=gwacE1j4a zmu!l44O5sIhz|_27oG7Ngp7hZHdj~R3_i`D>tauu>GA_ry}Ysj|GS^YTsjY#>Ir4x zwinPL$Y<|bI!(cCBXPWdftI$Hj$IVa+ZQfeD7_Zp06~5_(NVylw7Q6z6BlQpCYgPjI2cb-uu6W#RU=%v8u%@yg#AhYm~YQhEi22wODh?M@tc=)c0Yy`MpAatx}jL2F8{c0AI78hp#HV%L@5^0xn&wWoD(YoK3D|Y(biC9^JVgpLpasx<|9P(I3T; zJ#8GDA@PvFmFLsQL>Ct!$u-xs=y}`B42h%}7MGXk+6ScDP|lkNTv5W$T$Zq(YYu`W zphZLyvbx{37QwRvi@2By9BV3;8Jbg@LZD;z^U)nbw+mmC1lQkro6c& znXic{-3&wDk3hF6C0>`kl>YNhG`IfP48(q+Rc%({Tb#-ErA}Ed-K<5f4dFI(xzKj) zgUF8I%EBqiDEvO%?5?l}nVl&$CtVSFZBm1S&?iFYUepM!J56E*WTV`!uHE1eft*x} zYYysCBT{q6QxVaB-j5Fh-w8634`ThKT|PfBn{t9I3^lkNGkKHIY!b8CcI>wMu)jQl zL-_&hAK!_Cd*_KAP+Uw5pib1}frlT%r$6;sp^GQpd7X0T3)om)#Ll_h`0IcDZ{dN5 z9>w4IoBtpD(bxVRIz(9~YrDWr+_|F*uL>lSk{P|YUo7#v_Q*JS!zqbrS2xen&nsA3 zJWI;|{p2|v+>Gf zE`0~01`Ui!aJvKPUr^K3Z?jP+HnWC@_TG)B?tczjy;;icjN{Pm5geUf!x(85>~$EN zxn$PJJbV_u;MOG6YCJBInVFrYu%k}8!zzVIJyNn;nhmk>d@@%HoEmzVCxK|_@H0Ja zWH=rc;z#|YBmdLAW}+w7PuM6_mcA$`0f*oX)uS`L_kdEma$^14b)X9SDP5MzT8RL+=&0 zq-#)?i=FLQYZQ|dE{qBwP&T32l4rspiGTsmPhhY%h*iF!=EEk8!`%};L@k@MJmZmp zppnszLE;2~!4xP)#$N0z@5Y|&Fm_Gt!t_3R?;ve+faung#i@m5T)s)hwrdtU50a6a z8+hT>ugXN9k3IKkisz^COMm6B;nm}>qoB0iWNikYd-g|g`T9A0`|U4bb^R6@?S_+E za{nkv#A-{QI5raQGe0`^5j^t9FHyL#fHz+MTj-GruWS1mSGsJ(=vbTJeQi)P>fpmarTP(5Ja!(~V31xK^Yss6Ffpdu1FanJft!etwLs4x)vA5)V9 zA0GG+!KDrhsY8I%9uR5_e72)-*#!B#4=LQDEi6oyj^Y$ zcj#U$X;{Vni&xX8G2i7{17GN5jO&xB;d_HvL7l*$MKq7u!6*Sjr(P4`urA_ZL*_5A zW0!dfSHh-$iVL{d-qt)=B+8(N=4hD8A1rMEE{@ zo-o})z|)a5@OCsy|;AxF*Z;s9bJX{HKEaTL+Uc9&XJcsi`|Dmff|J+{qiJU zf8|%Ox%L`~qa>iNUBHzKuV8g~5z{kAap=fL$+-8RyF!_YO`gcZMM<1$<<*QxOCVjL zr0eO7J%hXM`O6sFwx5^={XITTqUbiPEKu68yGeAvFB-$m8)xW25I}I$=~9Az(v?)h zaeV|`)7OU5Vc;MvX@^n5u56Dh) z8oOujrf`Oa8!;TNQK%E0?2~5j#NmhVfrHPIRx(Fn*d&3$Job-npiOCF5e;jO5o9{g zAafItvdp>yBRJ~mCKeejuwmesrZi=<)x_G`D%L6c&}z3O`ydOD7@Zem!z@}~@{6b` zcxDjjgfk{bC_H%xGg*UYix~?I85}!s9#4$4viRWMY_V0lg$k90$Rx$v59A1stH#5=8HO^^d zG6#XP2OJ)Z5GxpKa~m{zjRB#-rOI^yoqFAih`DR5f)FMIAu#|#sluse3+$Gg*~Ie= zatGX0wMm|tq7sY}AWW3gG9`K^wqcS6&qRmP8M6c(v*m zk7D8KEnGZ96uQUiW&=}{+g`nX1t;Eq9V2AK(_}1bo6Ayp$Y}Mw`Vk!2e?Jy( zUchF5m7t$vrxg*~9z6Ebc=p3ThqsP@32#u^4qQi2)a2?~VShCbbHAqrRV=3{8i zWE6vIw9gKmCq#|FBPa4kqQwId4)CYf@a~@Sv8Is`1ub}7qG6{(F$0MPm;(r z+94;gf^|wIw;34RY&y7^jzL<036vXQP$CRirOj1pTMQXI90z!f3lAnn8;|ph?EhKv0vSBMlQWUlQ)Z z4u3yluY}~@`MdAHFK=g)&)2zdHRJzN3__%N#86g&V#`T8g=qqZQTm(J%hp(v^5t~U z7EzKW(dH)6v?kF&?$px;8P7Q8w~tV&>;}%BUPLpWz=xiB3LpLOGbEN>!RZrkVy3|{ zPe)Y_DkNp>T{L!Dp?|=1I@XouxPBdtRTja`3 zL#|CmrEpM6FAG;yor(4!v9yE^M8PS23e4cZfuF~byMKs;oEPx+tG`UUx<(stMy07p zX&g6{mU5J4-MoOS*WSY78Zn01BRF#C;}o;qMPehxgG9+^XFrESNB<;xl&gR1&A(5( zI*xricVU$>1Q*VHlf3fKivv-*?Dz8$O<$cN&%;KSYp1_{jL!fAj!l=F`|7yAHhqD3e z>zC=5O|60>p!wL*XK?qfrzoX5PtR-`_wOCYTy06J52bl0#|OkZYBkrVIMecOF=SJ^ zds%AvbmqyI2|XLUDH{h23>4$zV;JeQNmJr=1vj-Qh8aVl>_f&YtgAxw;e!(k{a`iT z%a>t5#|E~D%)s&8GTC-m<@cVw2zrAuio)v!zOV=h7=-;qkx;gW2ZX{gkTS3YuO0Ax zVXtkaxTz;#@Qv?&iN^RXZD!*wlkR7?M;R{`GM#V=6C1mXa8na$mrjDAfB}I6X?N{9 zIqG3N+J|o3{$Q_9_d4 zCH4_Do!C()2Js&L^*{e*y!_fr=uD7sNEdl+^%geBb8dE7P}{)t$U*${PyM%;*?tgz z|Cj$aTv&LK2GNG}2GH~i8D!R^OajNGT`fyR>B{JuQlZEx$fDem0amj+aPQIo8!7)! z;nc;i;QjZ1Qzip(frzvV^SQCix+IJ%gpr%+=WGyLntUAh-t$uwHDr=fZM8;lZS57j z`^G<{ZLc`m-=XdHqfS7%uy~w84boyJ@5dpc=~E-~xOx4gWKI?-labYL5UpP#_!`50 z%Ag$F{c)^!Z{X#3ei>WE`%1H|Q-Y07W+K;4;SZ$`Tl2W@;4>r!K13nTO}u^T+qiJ+ zUFmrzD5rclrAy>C zO78+LNMgpof}*6Z2U?BjDi+mqm+<`%eHH;GR?~590uSmwWg~9h;?;+{7#kZED$DUQ z&+cPpBx^lnTG5A0D-b0VVBjpAVIs!#N^>>tx5?ZDpGJff9O-AJ;K&s)@y~wY8lKT+ z44?xy-+&!E>jILdbQ%R*rK2x8k~E`MMalkS{ej;`;y@`R;_5)DRVY|eT*KF1__*`{XFPqXrjfKVzG=vzVf!-W&PLl>?gS=W@ zn_h4!YUVn;maZ8EKTw{P)h2Q605OJbb0fqIE>S44f~oO6c936!~|{;iy*}BZD3+%Ox7?w zd*(&lT)aq3V?Pe;eF~E!cM;Z%(Sx3*>v#@(>HGT1`*`)ee@I8Z23{;z^ZSL=ap<&M zZIy1xko%;soL@MB(-+?+#?ZuL#2Aju-j9MpiRJYrGQf3A4@fQ4J`jy2HoS*h1?or_#%fs15nu8%>GW3oh|NmzkFHD&0_ZjJLk{61$P zMn}g;V_2tfVwJ{G9ezPsBsq4~1Y&$I+{9CR(E>~mz`WQef4ewYRD2&&ls0&KO*xkF zrw<*x4v^{z);i(MXCaEXjf+EczeNZq^o&YvYC>5UnY_dmJ`{$2 zuc6cB&R1NPANoN+#ZhK#Bh3lQ6pc%FBMuKn7!X=5N%8U&X4VO`mq9IpfnywACx|R6 zdCgYCG9P~V%nS{K*7HVAf=gU$3JTm@K>`Twuh^FVw=8>KIyh64+_<(^+F_{l8lIo9 z>f;vr*Bq%)C^3m`(`~$e;tH;uU&prDgLv)}pTPb1AH%|>OO&=6;JFWdKmO}q`X7m= zFXDgxoButrhHDa!Nz9#T`!By_*K}t$rtA0M;X@w+&9 z@>ei5eGuP%<^RByn}0~}uY|$lI|ym5eCfV@T(1BjmGhR^M3)59+F|TF^jVBewaLJL z6Ym}WC$!Bi@YHQFlw9dymT`j=p1qklx;|t=~por1O~yBx--(o*!TpcE7$3JLxQ|Uvk?pGtQtZn94Zn)Fw8-SA%Zf5vZ^`2*DQD~q6q0p-}X%w zwyWuQQuffpw_p21EZn*zvl4Y4jFI^zoK4_nw7C;!q|>rdMm5qJ6EM(rXAJ>@k!Dj_ z0jCse+U`udP`P;t9uS;(Y8^O+TWBMar^2lNP5{9?&rLy8(9rxk=R=zg7>Kx_X;ocd z7Lk`qb*#*GF;ccHURwatosGm*ZkAiA!c=1vIDB*(<6{k+c;_N1`s>(EvH2%I_I>!i zPyYlSfBaceO?pQR+=X4+?jnJ532$Baj9@KGg#}DF}5B?$zv{C%wxBeDxu6~=0Z8fO3;sqtORr;3yF2C=*Td7Nrp`c7h ze~oC`F+6bpU#2wbUc60W-}(1`o!HTeu1m<2xz<)O%UZWaqE_H@AyPpZ6V^$1KV^26 zV(N251NUKK^f2lzgENW@65%86BdQxUT!^Bi#=4uVJ^2M=* znmZ3v3R`?pk!KFZpO<^hBJo157lK#MwLXA=p)(@Wa=X30Foqh%#9ZH@;#>|tQOF=F z?xiagmMPF2&libU$lpa7w@Wk!1qQgO&b|!U8NTzHx_ub{z<;)IQ}s2A;NElX0DK2= zJ$@lgW?2N}5P)aZzVyboaB1PR^xb4OEzMt9GZ^%w)k-gt-rVktyBzUa2|OQx zfncPi0%F|(LcOMow#d8$uNWlR8GpZ&p+&twK~|rRbq^>I2=~xx9g2^+*~k{B#OP+Q z-{F?sJY_kjbjC=3l+27&V-gk{Wec@6Bh4JL29GLT$}KPGp;K_jEBkV1t&G>GFI=Y^ z^58rtiAP&Wo@e{+CO)_8AkLlHz{@Y6#l;H^?AW^tqm!hjQs#mUXRyAA`SBU7QpRDC zOQ79^6{bmZ6n0EckK*fZ{#z0^Azl(B)@3{!jA-~ncl|gXIrgV1*Smx-{?Y$}^}%}z zCQfzDtgCn62BI2kxVz!neKSUo@P~rHWorx56VKwWz3 zt)k81WKjl@(71go7`ikR&jsKXXWY=l<){71MaFm!6Z6&D3e9_Q-N1%{8EI;vsGzSo zqvJ1LwTVAJK0#@2`d(dKrwk3HKM5Fkx~`|Y;uOjdZCuthz)x zkQSi{GPzj7cq4J8nEZgprgI!UHcNt5hU0Ia#quH} z6U0_HkFL#0a=JmMFP)UMV^5lw@?Azy#n3r{2*(KTTu>HvID*DaNWPdr-sEH3}Q#3CG69 z#OM~6mgIfTOmJJe!o~VBpP@`WzZU>)U=Iukg)@Kx>hWz_Jj5)(8+Vw45W@lg*|=|a z?6h(*Y{M7fTc2sO6$aEdPri3tU?V&=d2#7As0wQB=*2XZ}@(ZYtaNn$v z-8F<6H0r7sNVvcglzj7<1P!7lklbIJrcEQD$LHYy$;NH+Is44>JR>T1`Aeqf+*!CM zJ&D$^V6S0uu)^(lF-9rFPQml)>w5DuAJx0mPpM5)7znIeKr;;`6v6e3ShL_8I8Cwb zJ@;&5mw|WQxQLY-Iri^5hR;6tIZTgEgq=Ie7GfpyB?Nw~sFIu~~kJ80(z z@gtx3Z}H#*&*7DK{}8|bt-nKx`( zbI3_RthXqxBT?Lf&$S>a zV^7$X*?c?4?#4&&{c$>%{a7Y3YO-C!e$q0=%Pleby00lf8SpA|x_}Q8i~|ML1pEOj zJJiH$EU@=+od^#4;9oJUurP#*p<5fkR7rC|Dog%H47lrF12u;Y9tY@QlID zU3aT7ff+r>EjK%jzqqN0 zEmr9~2iP_B846{7S{TKPZ~rP$$=@L%@Vmqau92{K1V;~k1Y`9>QpnTmExMwhx=TaV zh(_{+uiX@yac>7;qrU{MPcSsF4^G^VC+__zY!(MGXij6tcpJM3491F0Data=1SJQQ z6c_oH=%W9)ER}I{3OpD{rCXNp0TT_~`Z|Q*p?vH*{B6SLt&IcNGYHX1xP*96Bm)>y zan~8?$dg)HSs`O8w2r|6K(@jUbK+@&*=UR;oslz80(KCd3Jg1&?auK%ISl(1l4=XpcK47e*Y z3y2*K6BrOUy;!TsH1)dcj-2~0RQ^VXaASxe_)x&J7-yXRzQZCo$~YH8H4y@Y`=0O1 z>OejHwyJJ(O*9uP3668zO-Q#wp~U&Yd0ZvMyxpP`Cn{efn$2lTQ>aj$gj{~UBJS%w+I->vu7WJjsmNZAz1zMY4<7k3$}X(q#drTPHp?ah$Fm~oSUrow(~sc;hkg`2Vg~(@ zSz;j#$|;Z@LE1~1X}fdR%}g^CE=BEo@cZ&)jii#FnQ;rJm>517-(Utq;NW6vpE|QK zRES}L^9ME!ArQ2SGQ_fe`$*$Cd($QXk_SFlKk`}xToTP_#vmd+6tdj)GANz5Gr@@c z90(sW49b{s&>4{>!Xzgj8o2PI2#i3u415P8UUWtTz08E|q_GP9Ym7Do6r^T@&Vze< z_FPW`AE*2I8obad_X6RfKV}AP*6i9GCghG8Xs93ysQ9%L00bm9NHPgkW)MP#5XxBx zxHf{ghh^(vg+ub~_|WruDY~Eti(gz>HIONtrNp`|(;?c~k_+z>Rlkh0c)j}~ZcsQe z(HNKV)S^pqAQ_9?eB)}>t(*AG<;B9xGbeVqF=j(#uRhzv7-(+3gTr^tVqKKt{SotnYl{^jTK&imiQGmn3mV&`!zEM5}N-^|8v zbjJsZ;yMF-p9Q;XX z;_~8&|ARcp8DR;8d;*NTh62xaTiu}4;pOj=(NmIe`~A3U@3WZd?4wYrCmp17Qfj#y zlg&415Rr&QA;{5fAHjo%e+-)h1|@lzU1KfG(KD$C#cP)KB4m>_M-ok3?V zGmyCgBP}LEH2BQAVH}x)&n5&nWfCuC;$ZVzc-0;zdB!$U+|pJxhv>c4gxFY{l!xc} z5nPC~va*KF&91Ci%m&Y4g?1H+;$qA$#P()|4z8kFhpEAI7(}xC!wrF zrs;3(dCvop#JU~xqd0hE8>!H1ICY%7b$1+lcON5#|De?Tzx&Rs`0BU*4eHG;GSmyQ zno+^?9BAJo1Z4M4KZ#4{ZeZWc5jsW<>znJYT8zcWE!gfF=0+dIr$6#nF}-a+zVh8) z!O8Rgo|xz=;8T$dBBj!I7BTyFL6+1yd-*M1>V_D_li0uGX##;U3MKla5bws_dwvLq z_k0>xZoP(APW&oi;swbDSY4u2zf1Q!15Un<#r5}b=JHDvI^4pp9Y=9w&oh{5@5lP8 z6=1NGS~Y_j?wkJ%jvn|SIuGIlBp~h>X<>G-iFT>gm&}ZEQ-u6<00S=?I)^TV!Ot&n zKf`)<#wOohP_#i{gbNd^;#CrYZDqjaZ=#+Diq;6y|^OlWzQ z1@;wzRP4-_|9OC5eW*|kDeN#H>@ZJ0Fa6r!kWhZ|#rEV|R?0Cw$w3Ub(E}^hM7w+C zrU;MAxPkY3$MM#Uw<)&mQ>;59onFzik}H>mFND&St}mRQOKRZ9kFPT1w52J12OMP- z9ADCX!mhnMIcb_y`J1?K;W|ACim@qN*)}zem9=G@zi?cZ$ZmGXn-0`?xmv8j?WalL z;SNtbw(rF%34yDd*C?Anx!|oe9NFu1LxjnTBY!H3Ei{c>m%n*xXve&h2;M{=H9QTk8;|5qII}u4jowJWIKt zSr`I?og;P3@OAQnBT_)B9-K*;$h{^hFV1{nk#&=eY$!}Je)16_K$uXF1g9~0G0_Cz zum;IYLYXm>hNzp%c(P9a$r z#;y1y0wVW69B8G0>IfcWyjWPcQfM183sF+vCo*0~gN&m{9P7zE=JpdhjP`1|kR z++|{b^!p}hNxVF}?+_EiCmu%)Vmo8f!HP?gTeX@pgJxY=ffo=NDp|Obb%&CRpxKhup1_UkE4X^)I{KRp+()6rlaG81Yb(pReDO3oR2M1<8gl(h8U|M^yN}*6|WDK(uZ_d!YW-tho35|+Y3I;CI z;lO~u@+33LUQJfl$YSQe_>M+lJ5MPz+u#LcoB5Xf2p%iYSogO8gfqx=pvI~|IOEGI zaec`D+gL>yCoQ>Jg3=c|h&6D7tTB{KCf*?S`vsFj^Es&Nl z`!?z__dq6Rl>x|vC6M8szHo|C;qQxeaE*a9I4Pre7zI>HC(2rj6ejTU?3_{Y0%ASa zO2o|78@P!|xk-|X78QWeJ;yo=3m>YPYJ=IlcpTpMm@(`xrWoLr}6fsH)N%yZImiwP%wi`e)@32BOK3Q)Ww&b z@w*2j;$vallI$+#EVa;wZ`gsuV?^;suz39jE}U5;yt({y&4^DbEhhO^6RNYjqd z)2CqpYYZGla<*n;b5qWlH3ym0G|=L-B8ZBB7axVRhItO|91yD-rC=w^Lkupp3<8EF z&R;!8y1{W-fT&vzq^+E9yAJpXOPOR8TFntzO^Fv;nncHdArIQtB669OvDMZbn z^5xdAsHPPYkM9lM#&DoSH9V+<2uQ*S_Z(>$f8_Zz!tvu()qh=p&A5R9#3kPNZ)sq` zQE|=%JuS^Ph%#)6F)ZOb*T0UpF1YZ zP#c6IC&=-%pJ1zPu=l_ecI+I(<;xV;Us)jvMykjopT+}6AH~v*8@P7mEZuaT?!SR< zmuDAF;3q!$SMjM2|4E!U_d0&%-~DxL+DpVH)+B?#_mBG%_@kAX&N7sH!`T6-R}$t# zVG}5J-!bxGJazxiV`B86tnT#o@h_4%cZmk`W>n@~Ozl@X)|a)@6D4r9Xow&y533*d z<^EDogopNjAKH`mU~_boXfnM*1~As!A`o=NRR&QUbS1=|-ph5Q#YI^bSO6R#z%@My z#bpu(cp&gS`;~$Sh6iCPPNFGOK=8l2fmynNS0eGg30Oo>NWj2tS9rD{-=+#K7O~Wr z;Zus3959g4Z4zMed7@Kf%mI-qb5Jz-O1}J+d z!}#znB+^#T7%Cxx8&Tc>BS5%{!U|IW{EA8XyK$42+`0-dq5Zkz|Xv|%{aSd-Ce_MKiFc|R4 zOMNGRhJFuLYg`)A5qU%wT;(pvon}M8pe@~vjMEPCzzkx8YR~HpddtPcywb8?po3Q@Ugu@oD2_hg zdk-(2`xY)QT*eH6!enQfjKBym7+I#f@IzeEl)B2h4ZJg~DrF;hg|0|YiZ?P|r;NlT zre`|1c;OnZU)vxM+KVSX@L7EF=^w)0+WIwAab3b)JF}(VBN*PfiF_N>Rc%4&~ zZ;a|XN{~G?oxBtIb>c2)fvPfBsb2vr7 zcWY?@+qd0?d-gs@I?4g8uWVAvbjwXY9*6=yKX-^S9TrP#*RZm67N)T(osviLBY5KI z&tbIjArvE%Xp?3zL4$Ox=N`JT!VqlI-aKdoa9L`XB2@ZnLxw>X%%JqoE}nrJlQVo97=m#|=m8=NSpYTc_?gHUY^3_B=oqMeGM~Zi z%hw!u&|=oWWzjqac)QKbE!TG4kGUvz3Q*>5NjPD@kRBgA6jzA#z5FI+fOrBRW!<>w zs3>F65^U)L>r9qu|t)LNrM$Re}1I=>_o(vEJ(Jrp6UBZj+eiPT1uaaTRQ>t=AbOb%=(kbp991v)!cYL9+rSuS? zZ)R>KBQ}l zoTAj>()tp1?Kp&E2R?@B+FjUK<<)p-Kdl^#D@)iUfY};crqtCkdgT3Q>JQ>WcmD-? z{~_2BF8XR>iq5CSb@5_8{B#PbHGuObSpWvl3LHQMPZX^&9SG!z$QHlEQSC< zPfUbKL;zvW&y%URH;9*U>f4r1HpsImKT8T5a-o=;S{#~qhm$7I50NQ3$+LX!QEBosAOJxkkRXxjXE8|T0pn^jOi?K0Q z;${@%(+$c>%*u?$%NNNT-`d3d)KPrs!OvjF#7>+)e-{1zDtY8Ov~75ag~h8_SUHP@ z<%?u~H_5v%qhq(>QxE+D9)I9R@b;PS;`d+uTj*uiq&2%Nh5;2yrLQBe&XliWapNT3 zyYMzv*H^G-*F8A8|5;2mk6?9~J&F>oR|3S z4Wx54Ut`T83X+o7wy5+d@H`*^g!DUP8l1P+Rl1D|h9+tWzS(E#z*Q42KD;u4$$2*5 z2c$Y36FhV2w$XCnSdXA9CROQw5rDwWOK|TG9BYu)>w#S;g&#O(P?Wy@z*fLy;Cdva zi?wQIqL6ZSW(-~r^Q#;A%6c&--Ut1$-rvG&@4O*DxgJL}gL07EXaoktwFY&bn?R1R z!97JNJmFc3-1(>>p+YTGAWB0To zeG6AeUwG}>cktp{FCe1_JHKN)QR^l-=RAZCe2=&mLDPYb1$Z!U?7?dwVh5%=kDrOd z)I=Nm_sj@joI8Jo;(LqTGxy=?M?Qh6)-29nJVn5;E;G$|Qj|1i$$5g(21c`;_~9r1 zJ3Mgrr}3@V{~f;k=0C(%ZApAb&@((OHrhnP$AD$NhJ}r{2^d}_MzDpw+wa5Od!NBX zjfBWm%3SnEuxH{!c=*sy(Lgzhtivs~bBq#WY7Gh(TgH;(;7yE4CU$!uh}DQP5Rw*q zUhES8lX-wJ2s1zvB(XtoumMQa_*3t1luhWT0}~M02T@-Lz+zD~T9}{_cmPoFKwtyR z0Q}kqMTG@uO~JrrAFPd{V`LVP+)d$hiXvecA(iPSE5ThuA$10sRz^anH1}xSz5Ldz zSlU>Tg^anu2^X5dfgh63b2lrlMC2t9nH5O)v6`k9Su?1+;-gwEcZEkoXdU;IfPqO^ zR{{ps3Dq`yB6@v0RG*L{fbs9!U_1Vc03k92fdpfa2fpCy3m6WJTR4&@J=wa02)Dd6 zYY)D;qeW__?%1A|mO{z70gH%_H5G5x%O!Np8kPpv@XEz+;-%x?m6q^(x9x|nBtD)0Xb-X&Y9m%taw>1oQ0W1Qd*;(56z8Un2E`<^cB>FY6bM_dXdhoLpzfa=Q zl{19?q!rLP4u~Gk)bGPjeB^(?T}K|p7ryz=@%7{X3T0!7;{8%nv&IH_)4J;vJ;i9X zAnPhZI%}J_xq1Spue?OS*ucSEAIH(TCvb4vGXxS(Q8YD=tTjTR3MtW+d)BH*<;7d^ zVm?YYA*4szuRxcs_hEu@-Kh0GWbQ`jbBSR?C`krl42#l%OFH0f9K3#@nHZ=0c-*%y z_be?4ilt2kXEl^?M?{$zbN~)7_<7b)CR&3lY>Tg#aa+$OO3xZfSH}=_3F}_>03r*S zl=1joVyQ2YX0Wop>I#n(3{vkLG#F?<#5!jac<~el2BS?;n{`)-D4~K1mSOFSR6FqF z)`M>F?gbj_pwz_Du~OWGp$V^iH0cnI&O5Y;pNlc!OQP{ z7n78#+_`-xxQUAtDnTEhgb=0oO-_(39r#&)TO;)fzuPj*{h!-DBEYb^wu-BlmIxR+ z*faMa9zXUmGRScZHZ2ZLd=NkW(Z7mAyB@%Ae);d<<+J}Dz50rrN6mRn>Ah&+Sc279 z-)ieKt|#DgWwn`=m68`|&2Hez(%TfG>>|POD6x?V^b9eg7MHN*Xwmi!(i3VfHuY>L zOU%(Y7m{iS{hR{>pZ@5;_End>OIVl z&12j6b^#m-4|p=mp!6eJFRIj9cUzgLAA$&Xll3}fbseanvu$nyJ9baVEH$oID7$SO z-0=t=Kl=T6>mrmmAul{RFpC*Ko8w7_wtb)`o401Sq_C7$-AT(~}he zG3X1`kicgmZ1Q;<_GzNQhu8hK@u#199b2fGP`Ll*J8$9I(sgND$A51Px_ZxTyhk1o z)N<;=4q5~V+^m>qF*co$*l>+br0^(rU5{LYp-90Z`+_%OQ!O(t?_l657^GTGWMj!T z21o_QGO<$r$`6~5Kkws4Q~8$-!9y0rMTGTB zWv&2eAcn*s!|mRA?LwY`xkX6pe z(UvZ2VQl6=A=A2a_9}x?mNVbBZ5-RTPsrjT3)dDYT;LU|>oP!Ykhu8Tsjo;40xy~& zefwo%Q0~H_+*R@oTL=Qp zShyT3u>hWGKES)DPTEQJW4)F)q$05?nT47#15Puxq%_&6 zc90tf2Dym$rULa2WNfS&P7OY-O4QeI8({eRiaRie)CLoh0~hDZDddM35Nzd?kcw1U zkm`(66lyVyaG=0o(30<#G;eP>pr{E*xb&rKJZb~UL_k|{Vwslm?m5SrEJ9nY-cd0Wd%i!9y@=!t!BMXIS)6qf} zdEuV=+vg`RJvWY9tJiU3X;D<>iLsqHw(l|Y*9N$8>pU5EPhvqabnDYaRvN~P=R2`) z;vvk9?Z#T~1`RN7omI#(b&bIoo;dJl@zDOCq5(mkWQ6W10aAO5uDMXQp@6`1C2H`K zlQP7x!T&DL#AyXts8%!q95fr`^#{iajFNVM%u(ibSE0v4M>){E7eYp1%WZ+-(L#}k$d)bIr5gv3rWuZDD<|8~P z)Eo>%P-x2Hu^n00p-y21Q|v6uV&2<P;;3a`G7k z8O1W%HoVWROPgbn_^Xb3u}B3P72vkbR~03M`mYV>8)1$?F<)Dfg{ zzV%*xIOCA$2sUOi!eT78h)g8`6#YyYz@T*J|Ni;YICcIEikb?FgF)X>Yj~7(<2G6c zcNgOonVYWj5etYT&9<~dt4ZthOlFxjLa30t+2gl^K?DSZxIWbnyv7i~ATjdFyoO-s z2}{5bpbWjwUjhg&0z^{FmRv3ZWsRlH#?>TbL3R{iFbWE7(~@Q>yy{a;mwAz;sYG~$ zW+Y?)xe;E%4}7P}m%5}E-*iduuqbD^CcGs~gXfxUW-EB*(zo%=SH6N`tH6$#U9v*1 zUon_Hzb|YOqwklY!K=DOZMj|+eL1R?ERxPj%iKB>ybpeuJ9li8F1Ra8H?eemod9YM z_Z@r|hqm31_0>%*tz07j=@X05`TREtC>EB_VX1!+gKU|Oy@gS;6W@2we}%i|KZ~+9 zf_jI&ilIyb4H&0$SXWJ$+aQx7Fnj4jWs{1;1iZak?Z>Q%p#DgnT5k2;`f5eLO;N^@WyNXZV*ix(yQSJ})C~MLyzyJ>Cc~Ku ziwNgcCg)=j8UU-~(9TC}vF{TQynpd5CAL&AP-fsNUyPgCh3H}Vni|3kIxGpFr58U!dI4z$Z3;~o40>w( zu-@=BlAm0v}RDqaQc{F|BfxN9Gto>P-VvDIJ5b znzrQqp1XPp?-4uT^(}hjB)E#v_cVwWV8ghO0Gekp<{c@v(|HOUCTItwrnF2qvVLaW z1A)mB-M~GUV6@R#k=`d{fpr15*A}F82Ljf{+_tZW;>Fa?V zmkwmTVsks4{ z*~~o(dQcgOjCLKH#k#I`OYg7S75N+=@A#Q_@Y?II(ampAs&W@J`KiJjcgQUqYcNh* z(C#dm0|M(p4&#|M!UzssdNOnf80L4*pwp`1I*CqO8-0w{=5YVsXR&AeUIL3HtZh=5 zV0kTub z4mO`nz|iXnlaSwH5m^L^=>5a*@=V;okpbjm)Kn<6akiji3@ODe9ozFwvuwpcV=Vz3 z<*$YU?)@UJkC3JtBO7teQ+)e(>zbuH<4;2s5ijYcURt<{6Q@tf#HDW8lMczuOpWo# z2gD?*-XqZrm=(x3fdMZt)8IadO|3)}b`Y6?+Q{viLAbj^)cv-!q8Vlmkr~7=%-%5! z2#g{DkHC=P)0Ln3{?HG>gwso5A&tLfuo^!XQh#P9kAPtvC^&V23z(X+E@TTDK#USN zjPQc<^4+4prK-WI_$YM{t}BoKmpQ8DNS`#apSCvf|6JHM@g@3>iK`LXy|LP4N2_+968GhEI3k^yy zh9w4X)A|4;v>pj?*f3zd$QTw-aa1>*=_to2tDn`5$;vQNVNpRwSphT0YfCq9{Panw zGhmHstKUPJCtOaG`P;7(UgWK+A`gT30VY#EDM&Df`Y@;5RG`p zoiZCF20aW2w}AovFMvS;I0OhEem)Hu;;BaZSn*aBPZM8Ba}il0J8D6b##$Uaw0Q|x z(ioUIFhsO%Tfm{tI)j^9WgO^eH)u6LSxCn1SB3?-)~&KDv)H(LGS9R&oHGXuE}L8H zc;)REapGO>cQ}r1({u2;fs6?5QY35vAypY#qr5aMeleBJ|>*QS=&*6{ktx6pO-5_*HK?%Px?0p1dr z$+`JB?V9QaT$bGSVM4vGVS=kSV6i!@vXq1e#w4jin?>VK{E&Yw-23#kWSdxmjG&Xm zbFKsl34q*zjkurrKJ)DJ@vx@iQxL<)pjd~HGSDACL(UDcke5|oS2K|@G-O(n3nd5~ zMy#@ijxYt*8z_{Z@FHi8A+HHIC@UZxz$o9#JcW}PkK1a^PK-383KFw9nMVCuZELRC+(AW+yN+ zL;EJmxw^K5&F-cYEZc@fd$fiTE>>Y?AT8ZX(KG77AQ970NW4CbFbF?S-mlRRY7ktw z;O2;G3KwdxnvJkQT=c+@Ol=6yvGTZ0WDcHQ~rT#W{ zLV|BqmH>epplNYZU=4`OqD(aczrS!?uSJ-l{pn<-<&9M-JnHh21LZ)c==0ojLN5MTWHI=4;@3mK&d!h-I;-bAwvX6qGw$E1LFst_H<-=&!y6w+tohN zgz$C?8v|1Hd0BXRKs=kRXS=f6(aq(nc;VG=;|hsKJLcxdb5Fqbm1-KNPG^XrgTL9v z-T2fZjK8t2z=>-NxR8odk26!#*tU%{hS3p>O^#uFY?KBLod7THk#RY4>6*{hB-}{Z zRb~(-GUZNJsMH{&_tY7=PeTS!$ozKIvgRyl$rZNs@NaxYWeWIiV1+>nj|O2Ng@38X zLhMuMUsF9H0hfgOr&>ViMtx)gDUc-I-{}r%%d@hQrc6P{zgD`shZ3usYk1?`x1|SS zPnbb3v{mha-<$d@udwXbsaLn5apok%)fH2GxtOFUF#HT52xRX!B5}~seh(z0^Gn1+; zM$MWlftDIa({c*K7)A&f+Ad|O%%Lp;PSoG6FatRjdD-00Ymg(A(%){QSfjMjI(Y2` zj`0T4u1gnmy>aUjUU}^W+`Mr^ikn7SqoOSuWbp~P0k5Fo!65+%0SOa|szmtY?_95u z+lecMjC8-|m49ArLiSTYO+NM7Zr-V_3Wxy+GQFQ!Fl-H=!pckrNm?@bJz)y+#7qPj zdA>zWci$q%(IYTmR?v%0Q4>al#8CJ?af6dieMH-**P5DIY&B&e zRuK-3am%g66`C{GGCgHusX=QikL(WKAIWR+JnpC=;0|CA_T?YSoxvd4IAI9p>E|(I z;K6%%x@=6+S23~x>u#V9Ch6(rLJPkqcX)@oe(=SvOu6%hxd@O94(+V%f(HT!Vhdc{ z!~nr5Oy(6_&!EjYN~tgh()e2k9G?TXbK59ausK-Qu0PVmvaU;n(?Ga(;}X96%C}_k z*!j5~^sqY=G8h#YWxYP1szee#=#6!W5WN%DI7VSqMW;7vPC$}tG)m<~8a|4 znS$Oe6cCDmjv+smt@T$7H-<9_6Ie4~b|9UPxFuV&DVhQ61hrhhS;z9}MP+@pRvC4z?TRql;36#%JBcnW}EljGYEN`zE{hncA$gA zEujRH0D%AUgTp2vg-@ATH^`JZU`QFyf{5h{G6Wtt^~lwEMpKq7Kyom5h44|SGL$S46O)WZ5>EK1>)As12^+dB1*lJBL%C)LDoD!K5?t`<+Bo>U zk-Guv2Xh&925-cHW!RK4IIriHO^X14A*SFLdC`o479VL?5P-sM$1@`t1l~UJwydVq zmAMH$?RFH-DYAo@Ni(W<)kY+v&~&RTaeu}p{p6DRTBa@9HB3-YFmbd8vq!jJy5~?= zP@2l?!PvcXNA>mLpMG()=zdLdEDPXvFz^^nEetlu^Zo)yrvr8Z=7lc$UpI7yKc{nIoh=OIRuY@MO&O#)wx(s0q zy0A<@U9k?UuN$7Wx`nlJl{~|mDE_=0mo_7#oHJ<-@0~x6*WY|uM7%vacZt$b^sVpB zqL~G29ZqJ|dWGbf$8Zaks$rkgPO~%oIp4d|B->>PrO(r!KrnifumzKOhG7FcNJYiW z?>8JH?k8{n#hipLKV_KeJ3G>oF_fu#+dWwMaMU zwA-o~2ph=4s?4=4Ls|fqlplrfiWfKWex(L^n?``DF%KJewTY@4*>Grar=L}Z5Wn)> zc=CC;0b`>%g$pz8LutAy447o6>A(pL0;q%#7RlfWVTJdKUUPoa(3w8A>?VZ~8^Rda)v{0|w_OCLEu1*_ zHr_n`h75vvVhkAMZWZf+b7S0|-A%E!Wnd6;&uk2>g2%V6^3Ya|(%*s{9wb~y;5@!0 zSRII}R^Yt8QLmq;f5RJpRe1Cs%Cn20CAi~+XK64507#xq3I;a8f-?EtRzn84`F;R; zBTfcw!U|IA@Bapp!lI;xAWcVx&)Vwy!~5o@CMVuMDLoB580bRAakQtvpr)Hkaa)TE zjhG$O+X4tYKS6sMC>XF_ptT0MTTwfP8d-7|E1utdm%-By87fjRK;<w_+XOf zY~rOQ!zmW+z@R#S{g!3w!4eM{(ugrE5F2TJgvOLzlxJuoiDTOg^ z5}>Rygz|P9jrR%F^BXqWGTr8nG5Y^23_&!6U4{T5c!l(_M`Lz*f-rF0-3y=b1I;GC zr=!`Ln9fPTL20pzh)ovvp1CF5I6i9_nKZ=nM>7(1axMgE6I*C@WJYDDqz6_KD40pK ziV-?Lx2?1#XMJJIu25EDRoceaxXG%&egX{!hBw}M8E4L) z#`N?wrpBfqE#1N(hi2^Jjgp(1c^BpfhmFP@=7yN)y#p4SSh47aQ}Q_s0RlpnBNioj z_MmCYEZk!gm_}%*;-8_3Rgn5@9BV*iJFtmE@Jvy{$kJ__4mkh20%a^gj6*AG2QG^M zgfwMf5~$V{1Yyz+g&H;m5Iu-2#ZKpT^2{k*TU-!rfu}Kd84Q5f5o+iwb3MYi&Va|4 zRw6c~@Q6#3B}Axcv5~L>X-1q^YDm(M5&oWGsCEDdj0i(N!+ZXA*%VM62$(;f3EYWQ z+>wP0g(Chd--Qo79|r>9!5|GGFmwY0Bk+DAU_`RLzkZd?QE`iveI&wMI93!gtrYS| z&ocpryipTl&$$x~0YkIV)alj(k{|6DWhN#ul9ATH#UqrlFu7+3Zo$~pJ4@RzEpA%3 zYgp^8${=qvn)0xvCx5+<<+TO8`OXWteB~0RCuT7@J|(j!rNqQ)y3z}6woGHkggMwD z#$aPrVIWf0hX)=kbYH&LrT6w;PYCHplduNw{aJTF#N|p&f_vS=W5`}031O@o2a-Ih zvJ<^9n~Z7`UkU{XMHu|>o4M_Wvjwo#w4&dwuA5NR70QZWnCK4HS2`*foH}F~S-1tOc4$V!F+{~CJL-IK> zkT5yML=Ti~%L}BG#!tUaOKIaxHLfL_F5KrMDr+&;O`Ez z20KmU{>0YiSPyz=S9SOp?5w3i4@PRNxXk#W9g(P&oCkwAPSO+p{EUJl_4Yy zBLRgNMj(b2KoWNN^Y$H_{NG-w_T`%-2rI^T!|=+ zQC){4&kVGbzRCvD!XpI6GF)45yJ7pE$!NIEP~|h$x*=x2xA*@~fdOzwhQR;-{{tIs VU{{~JXOsW{002ovPDHLkV1iVn*4qF8 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/7.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/7.png new file mode 100644 index 0000000000000000000000000000000000000000..349aec28f58d34087b0c1f6216b02daa7d270078 GIT binary patch literal 51736 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 VnkF literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/8.png b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/products/8.png new file mode 100644 index 0000000000000000000000000000000000000000..749afc2432be39088d73e8f90a535f35c07fa19c GIT binary patch literal 48222 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 literal 0 HcmV?d00001 diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/sales_data.json b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/sales_data.json new file mode 100644 index 00000000..753830cb --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/sales_data.json @@ -0,0 +1,299957 @@ +[ + { + "Id": 1, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-08-08T18:48:40", + "TransactionId": 7594225, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 445, + "CustomerInfo": 6982147, + "PaymentType": "Cash" + }, + { + "Id": 2, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-09-04T15:24:55", + "TransactionId": 29148219, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 529, + "CustomerInfo": 82734831, + "PaymentType": "Debit Card" + }, + { + "Id": 3, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2016-11-29T08:18:58", + "TransactionId": 85656305, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 138, + "CustomerInfo": 87263717, + "PaymentType": "Credit Card" + }, + { + "Id": 4, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2018-10-10T18:41:46", + "TransactionId": 25284232, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 785, + "CustomerInfo": 3498806, + "PaymentType": "Debit Card" + }, + { + "Id": 5, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2017-01-05T11:52:48", + "TransactionId": 64021633, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 431, + "CustomerInfo": 14233862, + "PaymentType": "Cash" + }, + { + "Id": 6, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2017-02-22T18:08:12", + "TransactionId": 69709199, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 854, + "CustomerInfo": 2327143, + "PaymentType": "Credit Card" + }, + { + "Id": 7, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-02-23T16:14:36", + "TransactionId": 53945032, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 318, + "CustomerInfo": 52707291, + "PaymentType": "Cash" + }, + { + "Id": 8, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2018-02-27T09:04:36", + "TransactionId": 20194188, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 2175802, + "PaymentType": "Credit Card" + }, + { + "Id": 9, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-02-17T19:21:48", + "TransactionId": 85888434, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 988, + "CustomerInfo": 94921918, + "PaymentType": "Debit Card" + }, + { + "Id": 10, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-01-29T11:14:56", + "TransactionId": 4209030, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 50, + "CustomerInfo": 7278061, + "PaymentType": "Cash" + }, + { + "Id": 11, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-06-13T17:28:28", + "TransactionId": 91574373, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 702, + "CustomerInfo": 6554477, + "PaymentType": "Cash" + }, + { + "Id": 12, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-02-18T16:01:47", + "TransactionId": 15350769, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 448, + "CustomerInfo": 81571811, + "PaymentType": "Debit Card" + }, + { + "Id": 13, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2019-03-27T11:05:00", + "TransactionId": 15523626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 868, + "CustomerInfo": 86762259, + "PaymentType": "Credit Card" + }, + { + "Id": 14, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2017-06-27T11:10:02", + "TransactionId": 47743922, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 447, + "CustomerInfo": 85558795, + "PaymentType": "Debit Card" + }, + { + "Id": 15, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2018-10-19T09:00:17", + "TransactionId": 58575883, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 151, + "CustomerInfo": 16874396, + "PaymentType": "Cash" + }, + { + "Id": 16, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-02-14T12:39:45", + "TransactionId": 66371395, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 649, + "CustomerInfo": 22007007, + "PaymentType": "Cash" + }, + { + "Id": 17, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2017-03-16T17:58:25", + "TransactionId": 50743116, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 36, + "CustomerInfo": 6849912, + "PaymentType": "Debit Card" + }, + { + "Id": 18, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-04-09T13:51:27", + "TransactionId": 20162537, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 317, + "CustomerInfo": 88716020, + "PaymentType": "Cash" + }, + { + "Id": 19, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2016-12-08T16:47:51", + "TransactionId": 45468855, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 594, + "CustomerInfo": 57199177, + "PaymentType": "Credit Card" + }, + { + "Id": 20, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2019-05-12T13:21:22", + "TransactionId": 60567490, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 458, + "CustomerInfo": 87921256, + "PaymentType": "Credit Card" + }, + { + "Id": 21, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2019-02-25T08:42:43", + "TransactionId": 87720087, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 555, + "CustomerInfo": 53877394, + "PaymentType": "Credit Card" + }, + { + "Id": 22, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-06-20T19:35:20", + "TransactionId": 68218276, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 856, + "CustomerInfo": 87233992, + "PaymentType": "Credit Card" + }, + { + "Id": 23, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-03-03T07:42:14", + "TransactionId": 89322929, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 285, + "CustomerInfo": 75795865, + "PaymentType": "Debit Card" + }, + { + "Id": 24, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-09-17T14:59:34", + "TransactionId": 69836092, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 575, + "CustomerInfo": 57386414, + "PaymentType": "Cash" + }, + { + "Id": 25, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2019-03-28T19:01:29", + "TransactionId": 44133693, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 15, + "CustomerInfo": 76940533, + "PaymentType": "Debit Card" + }, + { + "Id": 26, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-10-27T13:41:23", + "TransactionId": 95490278, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 618, + "CustomerInfo": 25039945, + "PaymentType": "Cash" + }, + { + "Id": 27, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2019-11-28T17:05:43", + "TransactionId": 70023785, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 866, + "CustomerInfo": 36136861, + "PaymentType": "Debit Card" + }, + { + "Id": 28, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2018-10-15T10:39:39", + "TransactionId": 53909312, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 206, + "CustomerInfo": 41330968, + "PaymentType": "Cash" + }, + { + "Id": 29, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-06-20T18:58:02", + "TransactionId": 11865206, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 87, + "CustomerInfo": 81043945, + "PaymentType": "Credit Card" + }, + { + "Id": 30, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2016-01-09T07:05:23", + "TransactionId": 20573008, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 26249537, + "PaymentType": "Debit Card" + }, + { + "Id": 31, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2016-11-06T10:27:16", + "TransactionId": 66039044, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 744, + "CustomerInfo": 71079808, + "PaymentType": "Cash" + }, + { + "Id": 32, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2019-06-28T10:27:59", + "TransactionId": 79751016, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 34, + "CustomerInfo": 14564538, + "PaymentType": "Credit Card" + }, + { + "Id": 33, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-12-31T10:08:24", + "TransactionId": 21723366, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 462, + "CustomerInfo": 74878557, + "PaymentType": "Cash" + }, + { + "Id": 34, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2018-09-03T10:54:37", + "TransactionId": 98532830, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 455, + "CustomerInfo": 57519176, + "PaymentType": "Cash" + }, + { + "Id": 35, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-07-22T14:23:34", + "TransactionId": 13313055, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 1, + "CustomerInfo": 58832796, + "PaymentType": "Debit Card" + }, + { + "Id": 36, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2019-05-09T15:26:30", + "TransactionId": 49034899, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 158, + "CustomerInfo": 70280616, + "PaymentType": "Debit Card" + }, + { + "Id": 37, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-06-23T09:44:56", + "TransactionId": 51902789, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 957, + "CustomerInfo": 98357785, + "PaymentType": "Credit Card" + }, + { + "Id": 38, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2016-12-12T14:37:41", + "TransactionId": 617194, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 307, + "CustomerInfo": 52347094, + "PaymentType": "Debit Card" + }, + { + "Id": 39, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2018-09-28T09:53:43", + "TransactionId": 74080833, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 906, + "CustomerInfo": 25573883, + "PaymentType": "Debit Card" + }, + { + "Id": 40, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-02-05T16:11:34", + "TransactionId": 27853398, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 776, + "CustomerInfo": 75543876, + "PaymentType": "Cash" + }, + { + "Id": 41, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2018-08-23T18:16:16", + "TransactionId": 46117856, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 828, + "CustomerInfo": 71914324, + "PaymentType": "Cash" + }, + { + "Id": 42, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2017-06-15T09:07:29", + "TransactionId": 10629139, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 504, + "CustomerInfo": 59656173, + "PaymentType": "Cash" + }, + { + "Id": 43, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2019-06-22T10:11:25", + "TransactionId": 12793676, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 503, + "CustomerInfo": 93708353, + "PaymentType": "Debit Card" + }, + { + "Id": 44, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-08-11T13:19:12", + "TransactionId": 6546657, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 949, + "CustomerInfo": 87423317, + "PaymentType": "Credit Card" + }, + { + "Id": 45, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2017-05-11T19:28:51", + "TransactionId": 70821057, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 90, + "CustomerInfo": 57624577, + "PaymentType": "Debit Card" + }, + { + "Id": 46, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2017-11-01T18:06:12", + "TransactionId": 22355034, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 250, + "CustomerInfo": 70805737, + "PaymentType": "Credit Card" + }, + { + "Id": 47, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2019-11-23T16:45:59", + "TransactionId": 44074349, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 350, + "CustomerInfo": 75621016, + "PaymentType": "Cash" + }, + { + "Id": 48, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2017-04-16T19:51:10", + "TransactionId": 64176901, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 276, + "CustomerInfo": 7543862, + "PaymentType": "Cash" + }, + { + "Id": 49, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-07-21T12:01:44", + "TransactionId": 11698878, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 247, + "CustomerInfo": 12280310, + "PaymentType": "Debit Card" + }, + { + "Id": 50, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-12-16T11:03:07", + "TransactionId": 45330015, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 852, + "CustomerInfo": 51913096, + "PaymentType": "Credit Card" + }, + { + "Id": 51, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-05-13T13:25:41", + "TransactionId": 24217484, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 276, + "CustomerInfo": 90114879, + "PaymentType": "Cash" + }, + { + "Id": 52, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-02-07T10:12:09", + "TransactionId": 3353570, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 239, + "CustomerInfo": 36757540, + "PaymentType": "Debit Card" + }, + { + "Id": 53, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-10-06T13:41:57", + "TransactionId": 49222536, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 965, + "CustomerInfo": 90178801, + "PaymentType": "Debit Card" + }, + { + "Id": 54, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-09-07T13:56:12", + "TransactionId": 73808960, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 135, + "CustomerInfo": 26077360, + "PaymentType": "Credit Card" + }, + { + "Id": 55, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2017-10-15T08:47:11", + "TransactionId": 84882194, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 852, + "CustomerInfo": 99892990, + "PaymentType": "Debit Card" + }, + { + "Id": 56, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-01-03T18:16:42", + "TransactionId": 21724447, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 717, + "CustomerInfo": 70479041, + "PaymentType": "Debit Card" + }, + { + "Id": 57, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2019-02-12T11:22:08", + "TransactionId": 31731288, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 129, + "CustomerInfo": 52586899, + "PaymentType": "Cash" + }, + { + "Id": 58, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-05-02T19:59:48", + "TransactionId": 95388321, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 949, + "CustomerInfo": 63074717, + "PaymentType": "Credit Card" + }, + { + "Id": 59, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-04-27T09:59:37", + "TransactionId": 61124707, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 273, + "CustomerInfo": 43941295, + "PaymentType": "Debit Card" + }, + { + "Id": 60, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-09-23T13:28:42", + "TransactionId": 21114042, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 666, + "CustomerInfo": 12472784, + "PaymentType": "Credit Card" + }, + { + "Id": 61, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-07-12T19:44:50", + "TransactionId": 53902512, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 880, + "CustomerInfo": 85452425, + "PaymentType": "Cash" + }, + { + "Id": 62, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2016-03-10T17:50:04", + "TransactionId": 40308849, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 638, + "CustomerInfo": 62802946, + "PaymentType": "Debit Card" + }, + { + "Id": 63, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2016-10-19T15:30:32", + "TransactionId": 45851190, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 695, + "CustomerInfo": 9194891, + "PaymentType": "Debit Card" + }, + { + "Id": 64, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2016-05-21T08:34:31", + "TransactionId": 64918182, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 791, + "CustomerInfo": 29612671, + "PaymentType": "Credit Card" + }, + { + "Id": 65, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-07-20T17:31:12", + "TransactionId": 71441593, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 400, + "CustomerInfo": 48035062, + "PaymentType": "Credit Card" + }, + { + "Id": 66, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-02-21T15:53:00", + "TransactionId": 83926562, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 936, + "CustomerInfo": 48877810, + "PaymentType": "Credit Card" + }, + { + "Id": 67, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-08-26T08:23:08", + "TransactionId": 6032417, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 973, + "CustomerInfo": 37072747, + "PaymentType": "Debit Card" + }, + { + "Id": 68, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-04-13T18:12:58", + "TransactionId": 75798865, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 850, + "CustomerInfo": 47512759, + "PaymentType": "Credit Card" + }, + { + "Id": 69, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-09-16T17:31:55", + "TransactionId": 36472765, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 35, + "CustomerInfo": 98926640, + "PaymentType": "Cash" + }, + { + "Id": 70, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2017-07-14T13:01:55", + "TransactionId": 48095863, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 816, + "CustomerInfo": 26925461, + "PaymentType": "Credit Card" + }, + { + "Id": 71, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-07-28T14:36:49", + "TransactionId": 82102006, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 838, + "CustomerInfo": 21124343, + "PaymentType": "Cash" + }, + { + "Id": 72, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2016-04-21T13:08:33", + "TransactionId": 87602856, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 112, + "CustomerInfo": 18372349, + "PaymentType": "Debit Card" + }, + { + "Id": 73, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-01-14T08:47:46", + "TransactionId": 42595268, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 424, + "CustomerInfo": 57093914, + "PaymentType": "Credit Card" + }, + { + "Id": 74, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-02-08T08:16:39", + "TransactionId": 99708424, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 636, + "CustomerInfo": 6098397, + "PaymentType": "Debit Card" + }, + { + "Id": 75, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-04-21T16:47:17", + "TransactionId": 4835736, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 26, + "CustomerInfo": 26332146, + "PaymentType": "Credit Card" + }, + { + "Id": 76, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2019-05-11T14:53:48", + "TransactionId": 54866538, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 202, + "CustomerInfo": 92200540, + "PaymentType": "Credit Card" + }, + { + "Id": 77, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-11-02T11:45:27", + "TransactionId": 32801813, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 785, + "CustomerInfo": 81900169, + "PaymentType": "Debit Card" + }, + { + "Id": 78, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-11-26T17:29:46", + "TransactionId": 54637444, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 769, + "CustomerInfo": 17650010, + "PaymentType": "Cash" + }, + { + "Id": 79, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-04-04T12:06:55", + "TransactionId": 69134774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 59, + "CustomerInfo": 75682553, + "PaymentType": "Debit Card" + }, + { + "Id": 80, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-08-03T17:29:11", + "TransactionId": 7351231, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 315, + "CustomerInfo": 82698793, + "PaymentType": "Debit Card" + }, + { + "Id": 81, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2019-11-04T11:36:32", + "TransactionId": 5721742, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 808, + "CustomerInfo": 85616473, + "PaymentType": "Cash" + }, + { + "Id": 82, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2019-10-10T16:32:53", + "TransactionId": 13476093, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 926, + "CustomerInfo": 27065698, + "PaymentType": "Cash" + }, + { + "Id": 83, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-02-18T16:53:02", + "TransactionId": 99786995, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 153, + "CustomerInfo": 612153, + "PaymentType": "Credit Card" + }, + { + "Id": 84, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-03-29T12:13:58", + "TransactionId": 54907435, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 754, + "CustomerInfo": 45764179, + "PaymentType": "Debit Card" + }, + { + "Id": 85, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2019-05-01T13:16:19", + "TransactionId": 51498286, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 127, + "CustomerInfo": 34334787, + "PaymentType": "Debit Card" + }, + { + "Id": 86, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2016-07-28T14:44:44", + "TransactionId": 92760035, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 394, + "CustomerInfo": 27450973, + "PaymentType": "Debit Card" + }, + { + "Id": 87, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-08-12T13:19:21", + "TransactionId": 41376397, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 651, + "CustomerInfo": 85650296, + "PaymentType": "Debit Card" + }, + { + "Id": 88, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2017-09-03T15:08:47", + "TransactionId": 72325659, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 970, + "CustomerInfo": 37342882, + "PaymentType": "Cash" + }, + { + "Id": 89, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-05-09T12:08:56", + "TransactionId": 3763290, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 820, + "CustomerInfo": 20154914, + "PaymentType": "Cash" + }, + { + "Id": 90, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2019-12-15T17:56:50", + "TransactionId": 94773051, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 233, + "CustomerInfo": 21602821, + "PaymentType": "Credit Card" + }, + { + "Id": 91, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2016-09-15T09:23:02", + "TransactionId": 11451268, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 46, + "CustomerInfo": 90208517, + "PaymentType": "Cash" + }, + { + "Id": 92, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-03-24T08:48:46", + "TransactionId": 7505306, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 108, + "CustomerInfo": 69700639, + "PaymentType": "Cash" + }, + { + "Id": 93, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2017-04-25T15:51:59", + "TransactionId": 83444188, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 232, + "CustomerInfo": 50371698, + "PaymentType": "Cash" + }, + { + "Id": 94, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-07-04T16:25:58", + "TransactionId": 61183172, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 340, + "CustomerInfo": 3066300, + "PaymentType": "Cash" + }, + { + "Id": 95, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2018-03-07T10:56:04", + "TransactionId": 76243529, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 173, + "CustomerInfo": 32603274, + "PaymentType": "Cash" + }, + { + "Id": 96, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2016-03-10T10:33:10", + "TransactionId": 63177188, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 141, + "CustomerInfo": 15160543, + "PaymentType": "Cash" + }, + { + "Id": 97, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-09-03T10:27:24", + "TransactionId": 95576584, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 482, + "CustomerInfo": 18140383, + "PaymentType": "Credit Card" + }, + { + "Id": 98, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-03-01T19:27:07", + "TransactionId": 19073731, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 695, + "CustomerInfo": 20060839, + "PaymentType": "Debit Card" + }, + { + "Id": 99, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-02-26T17:21:24", + "TransactionId": 95437587, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 951, + "CustomerInfo": 68114961, + "PaymentType": "Credit Card" + }, + { + "Id": 100, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2017-09-20T19:45:33", + "TransactionId": 4386668, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 664, + "CustomerInfo": 61744294, + "PaymentType": "Cash" + }, + { + "Id": 101, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-08-30T17:16:39", + "TransactionId": 23693517, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 943, + "CustomerInfo": 20309879, + "PaymentType": "Cash" + }, + { + "Id": 102, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-09-02T07:46:34", + "TransactionId": 73710976, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 498, + "CustomerInfo": 69270033, + "PaymentType": "Cash" + }, + { + "Id": 103, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-06-27T18:10:57", + "TransactionId": 47134938, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 1000, + "CustomerInfo": 11667805, + "PaymentType": "Credit Card" + }, + { + "Id": 104, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2016-04-02T11:10:02", + "TransactionId": 64969048, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 767, + "CustomerInfo": 2682351, + "PaymentType": "Credit Card" + }, + { + "Id": 105, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-04-26T13:54:20", + "TransactionId": 81027426, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 342, + "CustomerInfo": 42422857, + "PaymentType": "Debit Card" + }, + { + "Id": 106, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2019-11-30T19:07:15", + "TransactionId": 75855147, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 3, + "CustomerInfo": 73429837, + "PaymentType": "Debit Card" + }, + { + "Id": 107, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-12-15T11:16:13", + "TransactionId": 50286922, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 47, + "CustomerInfo": 93549925, + "PaymentType": "Debit Card" + }, + { + "Id": 108, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-11-08T15:46:48", + "TransactionId": 48864101, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 758, + "CustomerInfo": 22165465, + "PaymentType": "Cash" + }, + { + "Id": 109, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-07-23T15:12:49", + "TransactionId": 61307275, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 27833973, + "PaymentType": "Debit Card" + }, + { + "Id": 110, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2017-01-28T18:17:25", + "TransactionId": 73084186, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 908, + "CustomerInfo": 3555900, + "PaymentType": "Debit Card" + }, + { + "Id": 111, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-12-04T19:00:37", + "TransactionId": 42657677, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 126, + "CustomerInfo": 1522047, + "PaymentType": "Credit Card" + }, + { + "Id": 112, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-10-21T19:49:35", + "TransactionId": 7694640, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 77, + "CustomerInfo": 15249656, + "PaymentType": "Credit Card" + }, + { + "Id": 113, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2017-03-16T08:05:34", + "TransactionId": 17709672, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 437, + "CustomerInfo": 57517102, + "PaymentType": "Credit Card" + }, + { + "Id": 114, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-02-22T17:00:14", + "TransactionId": 70860972, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 773, + "CustomerInfo": 92813299, + "PaymentType": "Debit Card" + }, + { + "Id": 115, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2019-08-17T15:19:18", + "TransactionId": 5027114, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 13, + "CustomerInfo": 16184121, + "PaymentType": "Credit Card" + }, + { + "Id": 116, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2019-11-08T18:36:52", + "TransactionId": 99331306, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 258, + "CustomerInfo": 89920785, + "PaymentType": "Debit Card" + }, + { + "Id": 117, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2016-01-26T09:42:12", + "TransactionId": 34647502, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 755, + "CustomerInfo": 52468952, + "PaymentType": "Debit Card" + }, + { + "Id": 118, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2019-03-03T09:59:11", + "TransactionId": 84790417, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 827, + "CustomerInfo": 71263663, + "PaymentType": "Cash" + }, + { + "Id": 119, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2019-12-03T08:06:35", + "TransactionId": 89784048, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 224, + "CustomerInfo": 2064888, + "PaymentType": "Debit Card" + }, + { + "Id": 120, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-12-05T08:26:18", + "TransactionId": 46011256, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 102, + "CustomerInfo": 66944940, + "PaymentType": "Debit Card" + }, + { + "Id": 121, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-06-06T09:08:38", + "TransactionId": 68718596, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 359, + "CustomerInfo": 34585600, + "PaymentType": "Credit Card" + }, + { + "Id": 122, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-09-18T15:55:09", + "TransactionId": 14134294, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 244, + "CustomerInfo": 37763546, + "PaymentType": "Debit Card" + }, + { + "Id": 123, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-04-17T16:23:31", + "TransactionId": 80137195, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 296, + "CustomerInfo": 66155235, + "PaymentType": "Debit Card" + }, + { + "Id": 124, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2016-03-04T18:09:13", + "TransactionId": 32248093, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 89111537, + "PaymentType": "Cash" + }, + { + "Id": 125, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-03-05T15:39:36", + "TransactionId": 60190814, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 761, + "CustomerInfo": 97897777, + "PaymentType": "Cash" + }, + { + "Id": 126, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-10-20T18:47:05", + "TransactionId": 246171, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 495, + "CustomerInfo": 22522988, + "PaymentType": "Debit Card" + }, + { + "Id": 127, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-01-30T13:39:13", + "TransactionId": 87477277, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 523, + "CustomerInfo": 3321326, + "PaymentType": "Credit Card" + }, + { + "Id": 128, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2019-08-14T17:09:10", + "TransactionId": 68974899, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 804, + "CustomerInfo": 53757579, + "PaymentType": "Cash" + }, + { + "Id": 129, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-06-15T19:34:36", + "TransactionId": 80379517, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 736, + "CustomerInfo": 67954377, + "PaymentType": "Debit Card" + }, + { + "Id": 130, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2019-08-23T11:43:44", + "TransactionId": 57975135, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 244, + "CustomerInfo": 30938689, + "PaymentType": "Debit Card" + }, + { + "Id": 131, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-02-23T18:22:54", + "TransactionId": 67037757, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 952, + "CustomerInfo": 80281150, + "PaymentType": "Debit Card" + }, + { + "Id": 132, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-08-20T10:50:10", + "TransactionId": 73509410, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 853, + "CustomerInfo": 3665478, + "PaymentType": "Debit Card" + }, + { + "Id": 133, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2017-06-29T16:52:02", + "TransactionId": 80889068, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 837, + "CustomerInfo": 40146078, + "PaymentType": "Cash" + }, + { + "Id": 134, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-09-24T15:47:23", + "TransactionId": 77079534, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 551, + "CustomerInfo": 27279790, + "PaymentType": "Debit Card" + }, + { + "Id": 135, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2017-09-20T15:43:47", + "TransactionId": 28664743, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 503, + "CustomerInfo": 18744167, + "PaymentType": "Debit Card" + }, + { + "Id": 136, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2018-05-16T07:06:23", + "TransactionId": 35391707, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 430, + "CustomerInfo": 56415206, + "PaymentType": "Cash" + }, + { + "Id": 137, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2017-12-20T11:16:22", + "TransactionId": 12656698, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 676, + "CustomerInfo": 31480380, + "PaymentType": "Debit Card" + }, + { + "Id": 138, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2018-04-25T13:09:33", + "TransactionId": 90771170, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 935, + "CustomerInfo": 84810184, + "PaymentType": "Credit Card" + }, + { + "Id": 139, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2019-01-23T11:12:55", + "TransactionId": 16889345, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 525, + "CustomerInfo": 43106998, + "PaymentType": "Debit Card" + }, + { + "Id": 140, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2019-01-12T08:37:15", + "TransactionId": 45853716, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 970, + "CustomerInfo": 71816766, + "PaymentType": "Credit Card" + }, + { + "Id": 141, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2017-05-21T14:33:30", + "TransactionId": 54496457, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 604, + "CustomerInfo": 73869871, + "PaymentType": "Debit Card" + }, + { + "Id": 142, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2019-08-23T14:53:14", + "TransactionId": 78070265, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 702, + "CustomerInfo": 27160214, + "PaymentType": "Debit Card" + }, + { + "Id": 143, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-12-19T10:02:56", + "TransactionId": 71888124, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 376, + "CustomerInfo": 55621147, + "PaymentType": "Debit Card" + }, + { + "Id": 144, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-05-08T18:40:02", + "TransactionId": 36528631, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 943, + "CustomerInfo": 16316270, + "PaymentType": "Cash" + }, + { + "Id": 145, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-11-24T18:51:33", + "TransactionId": 65945337, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 935, + "CustomerInfo": 7438829, + "PaymentType": "Debit Card" + }, + { + "Id": 146, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2017-09-15T09:38:36", + "TransactionId": 19950171, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 322, + "CustomerInfo": 80959437, + "PaymentType": "Credit Card" + }, + { + "Id": 147, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-11-28T10:35:28", + "TransactionId": 37190299, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 925, + "CustomerInfo": 63231272, + "PaymentType": "Cash" + }, + { + "Id": 148, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-01-07T17:02:59", + "TransactionId": 44652388, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 378, + "CustomerInfo": 33354988, + "PaymentType": "Credit Card" + }, + { + "Id": 149, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2017-02-11T09:28:22", + "TransactionId": 93331454, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 675, + "CustomerInfo": 14805375, + "PaymentType": "Debit Card" + }, + { + "Id": 150, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-01-14T17:57:59", + "TransactionId": 72733480, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 714, + "CustomerInfo": 81453047, + "PaymentType": "Credit Card" + }, + { + "Id": 151, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2017-03-07T14:40:25", + "TransactionId": 80485768, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 835, + "CustomerInfo": 47865733, + "PaymentType": "Credit Card" + }, + { + "Id": 152, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-08-02T08:21:59", + "TransactionId": 87963101, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 365, + "CustomerInfo": 85667706, + "PaymentType": "Debit Card" + }, + { + "Id": 153, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2019-03-16T18:57:01", + "TransactionId": 35331153, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 683, + "CustomerInfo": 693438, + "PaymentType": "Cash" + }, + { + "Id": 154, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2016-11-23T13:10:42", + "TransactionId": 96130401, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 987, + "CustomerInfo": 13663919, + "PaymentType": "Credit Card" + }, + { + "Id": 155, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2016-01-10T14:32:56", + "TransactionId": 82658358, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 404, + "CustomerInfo": 37798419, + "PaymentType": "Credit Card" + }, + { + "Id": 156, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2018-08-02T16:12:52", + "TransactionId": 43354436, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 557, + "CustomerInfo": 18705579, + "PaymentType": "Debit Card" + }, + { + "Id": 157, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2019-09-21T13:58:22", + "TransactionId": 6822054, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 889, + "CustomerInfo": 19073162, + "PaymentType": "Debit Card" + }, + { + "Id": 158, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-07-13T10:24:23", + "TransactionId": 62763391, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 499, + "CustomerInfo": 1319084, + "PaymentType": "Credit Card" + }, + { + "Id": 159, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2017-03-11T12:54:35", + "TransactionId": 50227581, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 389, + "CustomerInfo": 21993568, + "PaymentType": "Cash" + }, + { + "Id": 160, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-08-24T09:20:18", + "TransactionId": 55950783, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 274, + "CustomerInfo": 38648828, + "PaymentType": "Debit Card" + }, + { + "Id": 161, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-08-27T12:38:36", + "TransactionId": 22031350, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 748, + "CustomerInfo": 58739445, + "PaymentType": "Debit Card" + }, + { + "Id": 162, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2019-03-24T10:25:41", + "TransactionId": 82542042, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 8, + "CustomerInfo": 46204689, + "PaymentType": "Debit Card" + }, + { + "Id": 163, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-03-09T07:11:43", + "TransactionId": 24960302, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 571, + "CustomerInfo": 77858062, + "PaymentType": "Debit Card" + }, + { + "Id": 164, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-12-10T15:12:14", + "TransactionId": 55930817, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 565, + "CustomerInfo": 5010499, + "PaymentType": "Cash" + }, + { + "Id": 165, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-01-09T13:35:20", + "TransactionId": 57178152, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 9, + "CustomerInfo": 23193479, + "PaymentType": "Debit Card" + }, + { + "Id": 166, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-12-02T17:27:27", + "TransactionId": 44643438, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 882, + "CustomerInfo": 68988320, + "PaymentType": "Cash" + }, + { + "Id": 167, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-07-08T16:38:12", + "TransactionId": 68362901, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 800, + "CustomerInfo": 55184168, + "PaymentType": "Credit Card" + }, + { + "Id": 168, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-05-09T19:32:27", + "TransactionId": 52718283, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 814, + "CustomerInfo": 91366894, + "PaymentType": "Cash" + }, + { + "Id": 169, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-12-08T12:25:21", + "TransactionId": 85821365, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 87, + "CustomerInfo": 49120905, + "PaymentType": "Debit Card" + }, + { + "Id": 170, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-02-22T09:40:02", + "TransactionId": 71646431, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 771, + "CustomerInfo": 97489146, + "PaymentType": "Debit Card" + }, + { + "Id": 171, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-07-09T19:50:01", + "TransactionId": 99739905, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 846, + "CustomerInfo": 35868157, + "PaymentType": "Cash" + }, + { + "Id": 172, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2018-11-09T17:03:24", + "TransactionId": 84619490, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 195, + "CustomerInfo": 71305558, + "PaymentType": "Cash" + }, + { + "Id": 173, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2019-09-11T10:32:44", + "TransactionId": 80890899, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 882, + "CustomerInfo": 10238229, + "PaymentType": "Credit Card" + }, + { + "Id": 174, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-11-18T12:07:55", + "TransactionId": 79895875, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 607, + "CustomerInfo": 13592523, + "PaymentType": "Debit Card" + }, + { + "Id": 175, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2019-01-29T15:00:09", + "TransactionId": 37643789, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 905, + "CustomerInfo": 25720765, + "PaymentType": "Credit Card" + }, + { + "Id": 176, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-12-19T15:17:43", + "TransactionId": 9181644, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 148, + "CustomerInfo": 17419083, + "PaymentType": "Credit Card" + }, + { + "Id": 177, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-01-07T09:53:34", + "TransactionId": 67544219, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 776, + "CustomerInfo": 58354669, + "PaymentType": "Cash" + }, + { + "Id": 178, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-02-11T07:35:02", + "TransactionId": 67648598, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 974, + "CustomerInfo": 2757885, + "PaymentType": "Credit Card" + }, + { + "Id": 179, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-04-14T19:45:42", + "TransactionId": 57465713, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 146, + "CustomerInfo": 62657967, + "PaymentType": "Debit Card" + }, + { + "Id": 180, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-01-22T11:54:32", + "TransactionId": 43770491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 30213142, + "PaymentType": "Credit Card" + }, + { + "Id": 181, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2018-04-07T16:10:08", + "TransactionId": 38639350, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 935, + "CustomerInfo": 68183769, + "PaymentType": "Cash" + }, + { + "Id": 182, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-02-26T10:01:55", + "TransactionId": 55656629, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 625, + "CustomerInfo": 61197658, + "PaymentType": "Debit Card" + }, + { + "Id": 183, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2019-05-17T10:24:32", + "TransactionId": 12151474, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 114, + "CustomerInfo": 10125134, + "PaymentType": "Cash" + }, + { + "Id": 184, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-05-20T10:03:56", + "TransactionId": 9913806, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 736, + "CustomerInfo": 45807766, + "PaymentType": "Credit Card" + }, + { + "Id": 185, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2019-04-24T19:40:05", + "TransactionId": 59401943, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 984, + "CustomerInfo": 4669980, + "PaymentType": "Cash" + }, + { + "Id": 186, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2016-10-22T19:57:39", + "TransactionId": 14330853, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 894, + "CustomerInfo": 12448346, + "PaymentType": "Cash" + }, + { + "Id": 187, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-09-03T12:05:37", + "TransactionId": 96528539, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 484, + "CustomerInfo": 81358073, + "PaymentType": "Debit Card" + }, + { + "Id": 188, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2018-02-15T13:21:39", + "TransactionId": 52437894, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 958, + "CustomerInfo": 66716392, + "PaymentType": "Debit Card" + }, + { + "Id": 189, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2019-10-19T14:02:50", + "TransactionId": 42220747, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 669, + "CustomerInfo": 50811093, + "PaymentType": "Debit Card" + }, + { + "Id": 190, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2016-02-17T13:30:09", + "TransactionId": 2319244, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 548, + "CustomerInfo": 98654069, + "PaymentType": "Credit Card" + }, + { + "Id": 191, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-10-18T18:37:35", + "TransactionId": 70139319, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 231, + "CustomerInfo": 95917016, + "PaymentType": "Cash" + }, + { + "Id": 192, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2016-04-15T19:25:24", + "TransactionId": 40220431, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 623, + "CustomerInfo": 72586233, + "PaymentType": "Debit Card" + }, + { + "Id": 193, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2017-12-28T15:54:52", + "TransactionId": 82426412, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 74, + "CustomerInfo": 35502472, + "PaymentType": "Cash" + }, + { + "Id": 194, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2019-03-24T07:28:51", + "TransactionId": 49119657, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 734, + "CustomerInfo": 42937181, + "PaymentType": "Cash" + }, + { + "Id": 195, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-10-17T10:07:15", + "TransactionId": 68489740, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 807, + "CustomerInfo": 51659860, + "PaymentType": "Cash" + }, + { + "Id": 196, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2017-11-19T15:30:32", + "TransactionId": 98493598, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 500, + "CustomerInfo": 67259093, + "PaymentType": "Cash" + }, + { + "Id": 197, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2019-12-09T16:00:37", + "TransactionId": 49076572, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 38, + "CustomerInfo": 63440092, + "PaymentType": "Cash" + }, + { + "Id": 198, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-09-02T08:05:00", + "TransactionId": 74459904, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 143, + "CustomerInfo": 64248495, + "PaymentType": "Debit Card" + }, + { + "Id": 199, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2019-10-03T16:12:26", + "TransactionId": 62835084, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 649, + "CustomerInfo": 24882843, + "PaymentType": "Debit Card" + }, + { + "Id": 200, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2019-07-14T09:01:00", + "TransactionId": 83807329, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 611, + "CustomerInfo": 43327100, + "PaymentType": "Debit Card" + }, + { + "Id": 201, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2019-09-17T08:34:13", + "TransactionId": 12142005, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 706, + "CustomerInfo": 40920763, + "PaymentType": "Credit Card" + }, + { + "Id": 202, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-04-09T16:39:13", + "TransactionId": 30363989, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 609, + "CustomerInfo": 76869469, + "PaymentType": "Debit Card" + }, + { + "Id": 203, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-10-18T15:54:35", + "TransactionId": 80039977, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 107, + "CustomerInfo": 51245173, + "PaymentType": "Credit Card" + }, + { + "Id": 204, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-04-05T12:15:59", + "TransactionId": 78117128, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 224, + "CustomerInfo": 75696737, + "PaymentType": "Cash" + }, + { + "Id": 205, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2017-02-03T08:52:57", + "TransactionId": 28559979, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 390, + "CustomerInfo": 3314709, + "PaymentType": "Cash" + }, + { + "Id": 206, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2018-12-10T11:25:00", + "TransactionId": 5368098, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 399, + "CustomerInfo": 28203873, + "PaymentType": "Credit Card" + }, + { + "Id": 207, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-04-05T12:09:13", + "TransactionId": 61050461, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 526, + "CustomerInfo": 99361631, + "PaymentType": "Debit Card" + }, + { + "Id": 208, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-03-22T12:29:05", + "TransactionId": 22780519, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 509, + "CustomerInfo": 20844143, + "PaymentType": "Debit Card" + }, + { + "Id": 209, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2018-09-23T18:25:38", + "TransactionId": 52077109, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 40695020, + "PaymentType": "Cash" + }, + { + "Id": 210, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2019-02-23T11:35:14", + "TransactionId": 24515211, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 35, + "CustomerInfo": 38035702, + "PaymentType": "Debit Card" + }, + { + "Id": 211, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2019-06-02T16:36:37", + "TransactionId": 61261031, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 159, + "CustomerInfo": 26082237, + "PaymentType": "Cash" + }, + { + "Id": 212, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2017-08-09T15:52:25", + "TransactionId": 7421862, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 20, + "CustomerInfo": 28831977, + "PaymentType": "Cash" + }, + { + "Id": 213, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2019-12-01T13:49:18", + "TransactionId": 30634274, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 30, + "CustomerInfo": 85780525, + "PaymentType": "Cash" + }, + { + "Id": 214, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-08-23T12:10:31", + "TransactionId": 12677680, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 778, + "CustomerInfo": 5882158, + "PaymentType": "Credit Card" + }, + { + "Id": 215, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-06-07T09:11:48", + "TransactionId": 23990934, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 368, + "CustomerInfo": 54474850, + "PaymentType": "Cash" + }, + { + "Id": 216, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-12-28T16:35:11", + "TransactionId": 42531068, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 381, + "CustomerInfo": 68357132, + "PaymentType": "Credit Card" + }, + { + "Id": 217, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-04-15T10:44:59", + "TransactionId": 56998835, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 475, + "CustomerInfo": 69045707, + "PaymentType": "Credit Card" + }, + { + "Id": 218, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2019-06-29T09:09:22", + "TransactionId": 96347160, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 68, + "CustomerInfo": 54166988, + "PaymentType": "Cash" + }, + { + "Id": 219, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-05-23T11:43:00", + "TransactionId": 90840816, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 754, + "CustomerInfo": 20786684, + "PaymentType": "Debit Card" + }, + { + "Id": 220, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2018-01-28T07:15:10", + "TransactionId": 75946900, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 449, + "CustomerInfo": 65477355, + "PaymentType": "Cash" + }, + { + "Id": 221, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2016-03-02T09:41:28", + "TransactionId": 71883879, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 354, + "CustomerInfo": 64556487, + "PaymentType": "Credit Card" + }, + { + "Id": 222, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2016-01-03T13:06:40", + "TransactionId": 67375300, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 295, + "CustomerInfo": 40884102, + "PaymentType": "Cash" + }, + { + "Id": 223, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-10-10T15:42:12", + "TransactionId": 63341297, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 388, + "CustomerInfo": 22584405, + "PaymentType": "Cash" + }, + { + "Id": 224, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-01-16T08:20:59", + "TransactionId": 98587464, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 94, + "CustomerInfo": 4839918, + "PaymentType": "Debit Card" + }, + { + "Id": 225, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-06-07T10:36:29", + "TransactionId": 60234015, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 597, + "CustomerInfo": 79405811, + "PaymentType": "Debit Card" + }, + { + "Id": 226, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2016-09-04T15:20:44", + "TransactionId": 25212095, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 167, + "CustomerInfo": 96839418, + "PaymentType": "Debit Card" + }, + { + "Id": 227, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-05-12T19:44:15", + "TransactionId": 42600591, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 915, + "CustomerInfo": 47813806, + "PaymentType": "Debit Card" + }, + { + "Id": 228, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-06-20T09:32:15", + "TransactionId": 17395400, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 123, + "CustomerInfo": 42087798, + "PaymentType": "Debit Card" + }, + { + "Id": 229, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2018-06-22T15:35:34", + "TransactionId": 5865797, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 40140056, + "PaymentType": "Credit Card" + }, + { + "Id": 230, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-06-10T14:34:57", + "TransactionId": 27439769, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 593, + "CustomerInfo": 84566398, + "PaymentType": "Cash" + }, + { + "Id": 231, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2018-12-15T14:23:25", + "TransactionId": 64910978, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 245, + "CustomerInfo": 65898800, + "PaymentType": "Cash" + }, + { + "Id": 232, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2019-07-26T07:55:03", + "TransactionId": 46968915, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 496, + "CustomerInfo": 4953092, + "PaymentType": "Credit Card" + }, + { + "Id": 233, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2019-08-17T18:06:46", + "TransactionId": 65813687, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 876, + "CustomerInfo": 56762656, + "PaymentType": "Credit Card" + }, + { + "Id": 234, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-12-10T15:54:43", + "TransactionId": 65142709, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 244, + "CustomerInfo": 88415586, + "PaymentType": "Credit Card" + }, + { + "Id": 235, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-06-15T14:14:04", + "TransactionId": 72443471, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 696, + "CustomerInfo": 41185757, + "PaymentType": "Debit Card" + }, + { + "Id": 236, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2018-08-04T19:05:48", + "TransactionId": 43963493, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 386, + "CustomerInfo": 26532761, + "PaymentType": "Debit Card" + }, + { + "Id": 237, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-04-20T08:34:57", + "TransactionId": 90819819, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 881, + "CustomerInfo": 6969814, + "PaymentType": "Credit Card" + }, + { + "Id": 238, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2016-06-19T10:57:56", + "TransactionId": 21056783, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 88, + "CustomerInfo": 52428938, + "PaymentType": "Debit Card" + }, + { + "Id": 239, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2019-11-01T15:06:20", + "TransactionId": 2109337, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 936, + "CustomerInfo": 69745756, + "PaymentType": "Debit Card" + }, + { + "Id": 240, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2019-03-22T17:52:05", + "TransactionId": 42842474, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 222, + "CustomerInfo": 60914592, + "PaymentType": "Debit Card" + }, + { + "Id": 241, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2017-01-23T09:14:33", + "TransactionId": 39230443, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 579, + "CustomerInfo": 76110736, + "PaymentType": "Debit Card" + }, + { + "Id": 242, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2017-08-14T18:24:03", + "TransactionId": 37325161, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 88, + "CustomerInfo": 85243092, + "PaymentType": "Cash" + }, + { + "Id": 243, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2017-10-22T10:15:45", + "TransactionId": 21114495, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 757, + "CustomerInfo": 62385968, + "PaymentType": "Cash" + }, + { + "Id": 244, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-11-09T07:18:55", + "TransactionId": 18937401, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 577, + "CustomerInfo": 92265226, + "PaymentType": "Credit Card" + }, + { + "Id": 245, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-02-18T15:49:24", + "TransactionId": 8264383, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 593, + "CustomerInfo": 5890326, + "PaymentType": "Credit Card" + }, + { + "Id": 246, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2019-11-16T11:27:19", + "TransactionId": 74266364, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 216, + "CustomerInfo": 33900851, + "PaymentType": "Cash" + }, + { + "Id": 247, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-08-05T16:53:28", + "TransactionId": 26799471, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 690, + "CustomerInfo": 40841400, + "PaymentType": "Debit Card" + }, + { + "Id": 248, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2018-05-09T17:45:19", + "TransactionId": 65201436, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 295, + "CustomerInfo": 36027334, + "PaymentType": "Cash" + }, + { + "Id": 249, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2017-07-21T12:38:53", + "TransactionId": 58692457, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 690, + "CustomerInfo": 35866359, + "PaymentType": "Credit Card" + }, + { + "Id": 250, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2017-08-29T18:48:58", + "TransactionId": 5616896, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 193, + "CustomerInfo": 29416502, + "PaymentType": "Credit Card" + }, + { + "Id": 251, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-05-23T11:35:05", + "TransactionId": 40107932, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 138, + "CustomerInfo": 39645817, + "PaymentType": "Credit Card" + }, + { + "Id": 252, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2019-11-15T12:36:26", + "TransactionId": 67072728, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 407, + "CustomerInfo": 80108978, + "PaymentType": "Debit Card" + }, + { + "Id": 253, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-06-21T14:00:23", + "TransactionId": 71147503, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 408, + "CustomerInfo": 26374217, + "PaymentType": "Cash" + }, + { + "Id": 254, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-03-22T08:39:33", + "TransactionId": 95532122, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 609, + "CustomerInfo": 693325, + "PaymentType": "Cash" + }, + { + "Id": 255, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2019-03-03T12:15:24", + "TransactionId": 78771875, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 508, + "CustomerInfo": 19063349, + "PaymentType": "Credit Card" + }, + { + "Id": 256, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-07-22T11:11:20", + "TransactionId": 6362262, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 369, + "CustomerInfo": 25057254, + "PaymentType": "Credit Card" + }, + { + "Id": 257, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2018-11-28T10:49:26", + "TransactionId": 28985140, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 233, + "CustomerInfo": 84288723, + "PaymentType": "Credit Card" + }, + { + "Id": 258, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-09-08T13:44:07", + "TransactionId": 46485861, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 45435341, + "PaymentType": "Credit Card" + }, + { + "Id": 259, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-09-26T12:41:11", + "TransactionId": 19655982, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 88, + "CustomerInfo": 35438654, + "PaymentType": "Cash" + }, + { + "Id": 260, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2017-01-15T07:26:33", + "TransactionId": 65390478, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 692, + "CustomerInfo": 33144746, + "PaymentType": "Credit Card" + }, + { + "Id": 261, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2016-02-29T09:08:04", + "TransactionId": 14864470, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 18, + "CustomerInfo": 48354604, + "PaymentType": "Cash" + }, + { + "Id": 262, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2018-10-09T18:37:00", + "TransactionId": 82229169, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 888, + "CustomerInfo": 37326889, + "PaymentType": "Debit Card" + }, + { + "Id": 263, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-11-11T13:11:34", + "TransactionId": 52519983, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 39, + "CustomerInfo": 80522887, + "PaymentType": "Cash" + }, + { + "Id": 264, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-11-02T07:05:31", + "TransactionId": 17167074, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 436, + "CustomerInfo": 50334411, + "PaymentType": "Credit Card" + }, + { + "Id": 265, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-02-17T09:36:52", + "TransactionId": 35575606, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 824, + "CustomerInfo": 7928986, + "PaymentType": "Cash" + }, + { + "Id": 266, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2019-05-05T17:13:12", + "TransactionId": 88280216, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 206, + "CustomerInfo": 46536420, + "PaymentType": "Credit Card" + }, + { + "Id": 267, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-09-24T14:53:31", + "TransactionId": 61999234, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 345, + "CustomerInfo": 13088404, + "PaymentType": "Debit Card" + }, + { + "Id": 268, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-08-08T12:05:11", + "TransactionId": 30815522, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 971, + "CustomerInfo": 52829033, + "PaymentType": "Credit Card" + }, + { + "Id": 269, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-08-19T08:19:24", + "TransactionId": 96171583, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 419, + "CustomerInfo": 52812394, + "PaymentType": "Cash" + }, + { + "Id": 270, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-03-01T19:46:08", + "TransactionId": 50063420, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 221, + "CustomerInfo": 90119796, + "PaymentType": "Cash" + }, + { + "Id": 271, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2018-04-04T16:23:57", + "TransactionId": 31239409, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 872, + "CustomerInfo": 47178979, + "PaymentType": "Cash" + }, + { + "Id": 272, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-05-30T10:06:49", + "TransactionId": 26937787, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 904, + "CustomerInfo": 97257191, + "PaymentType": "Debit Card" + }, + { + "Id": 273, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2017-09-17T18:19:00", + "TransactionId": 13208701, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 268, + "CustomerInfo": 68628106, + "PaymentType": "Credit Card" + }, + { + "Id": 274, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-12-31T16:01:12", + "TransactionId": 76505372, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 838, + "CustomerInfo": 3961211, + "PaymentType": "Debit Card" + }, + { + "Id": 275, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-07-24T08:26:53", + "TransactionId": 95191604, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 975, + "CustomerInfo": 27381010, + "PaymentType": "Debit Card" + }, + { + "Id": 276, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-07-31T10:55:29", + "TransactionId": 11436383, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 99, + "CustomerInfo": 35964110, + "PaymentType": "Cash" + }, + { + "Id": 277, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2017-10-31T16:20:56", + "TransactionId": 69806198, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 597, + "CustomerInfo": 15998206, + "PaymentType": "Debit Card" + }, + { + "Id": 278, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2017-07-11T18:26:47", + "TransactionId": 65060653, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 708, + "CustomerInfo": 55622566, + "PaymentType": "Cash" + }, + { + "Id": 279, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2018-03-27T19:03:04", + "TransactionId": 89139476, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 6, + "CustomerInfo": 97211118, + "PaymentType": "Credit Card" + }, + { + "Id": 280, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-04-02T17:00:06", + "TransactionId": 29219430, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 804, + "CustomerInfo": 29677379, + "PaymentType": "Debit Card" + }, + { + "Id": 281, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2016-04-03T19:55:03", + "TransactionId": 40045831, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 58, + "CustomerInfo": 77804579, + "PaymentType": "Debit Card" + }, + { + "Id": 282, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-09-16T14:33:13", + "TransactionId": 36708430, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 94, + "CustomerInfo": 6414068, + "PaymentType": "Debit Card" + }, + { + "Id": 283, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2018-02-02T17:52:57", + "TransactionId": 59789196, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 407, + "CustomerInfo": 52970196, + "PaymentType": "Credit Card" + }, + { + "Id": 284, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2016-06-18T11:23:43", + "TransactionId": 87703321, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 67220416, + "PaymentType": "Credit Card" + }, + { + "Id": 285, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2018-05-15T18:50:07", + "TransactionId": 18210875, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 256, + "CustomerInfo": 78997926, + "PaymentType": "Debit Card" + }, + { + "Id": 286, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-07-14T17:05:43", + "TransactionId": 49393785, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 870, + "CustomerInfo": 483235, + "PaymentType": "Debit Card" + }, + { + "Id": 287, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2019-11-10T18:25:21", + "TransactionId": 36545421, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 502, + "CustomerInfo": 12393470, + "PaymentType": "Cash" + }, + { + "Id": 288, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2016-04-12T10:32:44", + "TransactionId": 52852999, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 839, + "CustomerInfo": 17330407, + "PaymentType": "Credit Card" + }, + { + "Id": 289, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-09-09T11:52:39", + "TransactionId": 82699879, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 553, + "CustomerInfo": 74944661, + "PaymentType": "Credit Card" + }, + { + "Id": 290, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-12-02T13:50:10", + "TransactionId": 93419568, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 173, + "CustomerInfo": 67464509, + "PaymentType": "Credit Card" + }, + { + "Id": 291, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-04-01T17:43:44", + "TransactionId": 80991807, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 516, + "CustomerInfo": 21151125, + "PaymentType": "Debit Card" + }, + { + "Id": 292, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2019-10-25T18:39:45", + "TransactionId": 53460078, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 642, + "CustomerInfo": 58592911, + "PaymentType": "Debit Card" + }, + { + "Id": 293, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2016-06-26T12:24:29", + "TransactionId": 81754703, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 260, + "CustomerInfo": 24306378, + "PaymentType": "Credit Card" + }, + { + "Id": 294, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2017-02-11T13:43:15", + "TransactionId": 36327472, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 324, + "CustomerInfo": 71286809, + "PaymentType": "Cash" + }, + { + "Id": 295, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-06-24T07:07:58", + "TransactionId": 18059621, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 90, + "CustomerInfo": 90689923, + "PaymentType": "Credit Card" + }, + { + "Id": 296, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2017-09-18T16:54:03", + "TransactionId": 5689715, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 774, + "CustomerInfo": 44502904, + "PaymentType": "Debit Card" + }, + { + "Id": 297, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2017-02-11T08:54:32", + "TransactionId": 643333, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 351, + "CustomerInfo": 78878254, + "PaymentType": "Debit Card" + }, + { + "Id": 298, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-04-04T10:50:53", + "TransactionId": 29729398, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 813, + "CustomerInfo": 20723793, + "PaymentType": "Debit Card" + }, + { + "Id": 299, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2019-12-31T16:45:07", + "TransactionId": 92604133, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 385, + "CustomerInfo": 66464054, + "PaymentType": "Credit Card" + }, + { + "Id": 300, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-12-18T18:47:05", + "TransactionId": 98945841, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 955, + "CustomerInfo": 75145100, + "PaymentType": "Cash" + }, + { + "Id": 301, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2019-12-30T11:12:37", + "TransactionId": 58281503, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 47127287, + "PaymentType": "Debit Card" + }, + { + "Id": 302, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2016-04-15T18:30:32", + "TransactionId": 24064669, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 291, + "CustomerInfo": 75996150, + "PaymentType": "Credit Card" + }, + { + "Id": 303, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-12-26T09:54:43", + "TransactionId": 13170872, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 803, + "CustomerInfo": 15707924, + "PaymentType": "Cash" + }, + { + "Id": 304, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-10-08T08:54:40", + "TransactionId": 70399285, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 932, + "CustomerInfo": 54302104, + "PaymentType": "Debit Card" + }, + { + "Id": 305, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-11-05T16:46:51", + "TransactionId": 46910445, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 565, + "CustomerInfo": 96331811, + "PaymentType": "Cash" + }, + { + "Id": 306, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-10-23T12:56:18", + "TransactionId": 79208257, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 625, + "CustomerInfo": 77573677, + "PaymentType": "Debit Card" + }, + { + "Id": 307, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-02-12T14:37:15", + "TransactionId": 14047871, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 90, + "CustomerInfo": 34624138, + "PaymentType": "Cash" + }, + { + "Id": 308, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-05-21T12:29:14", + "TransactionId": 36438895, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 91, + "CustomerInfo": 63527448, + "PaymentType": "Debit Card" + }, + { + "Id": 309, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2019-03-30T10:49:00", + "TransactionId": 77981043, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 957, + "CustomerInfo": 94719456, + "PaymentType": "Debit Card" + }, + { + "Id": 310, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-11-25T13:26:59", + "TransactionId": 85301391, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 298, + "CustomerInfo": 8996796, + "PaymentType": "Cash" + }, + { + "Id": 311, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2016-06-09T10:33:10", + "TransactionId": 57203462, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 12, + "CustomerInfo": 46032690, + "PaymentType": "Credit Card" + }, + { + "Id": 312, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-09-20T11:06:52", + "TransactionId": 73754453, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 836, + "CustomerInfo": 66642528, + "PaymentType": "Debit Card" + }, + { + "Id": 313, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-01-16T09:24:55", + "TransactionId": 87460678, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 423, + "CustomerInfo": 89893173, + "PaymentType": "Credit Card" + }, + { + "Id": 314, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2017-04-04T11:34:13", + "TransactionId": 85615304, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 85, + "CustomerInfo": 91140400, + "PaymentType": "Cash" + }, + { + "Id": 315, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2016-12-11T12:42:29", + "TransactionId": 38255390, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 281, + "CustomerInfo": 6707905, + "PaymentType": "Cash" + }, + { + "Id": 316, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-01-29T11:06:26", + "TransactionId": 26936291, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 619, + "CustomerInfo": 56531705, + "PaymentType": "Debit Card" + }, + { + "Id": 317, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-06-02T16:32:36", + "TransactionId": 76867828, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 945, + "CustomerInfo": 32857778, + "PaymentType": "Credit Card" + }, + { + "Id": 318, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2017-08-03T13:06:06", + "TransactionId": 27979923, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 592, + "CustomerInfo": 90833427, + "PaymentType": "Debit Card" + }, + { + "Id": 319, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-08-18T07:18:12", + "TransactionId": 74872618, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 104, + "CustomerInfo": 16588151, + "PaymentType": "Credit Card" + }, + { + "Id": 320, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2019-03-28T10:41:05", + "TransactionId": 98508165, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 605, + "CustomerInfo": 35318747, + "PaymentType": "Debit Card" + }, + { + "Id": 321, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-02-22T09:45:13", + "TransactionId": 52565113, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 841, + "CustomerInfo": 80376302, + "PaymentType": "Credit Card" + }, + { + "Id": 322, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2019-08-31T11:32:21", + "TransactionId": 87064466, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 359, + "CustomerInfo": 84165383, + "PaymentType": "Cash" + }, + { + "Id": 323, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-12-29T08:57:42", + "TransactionId": 7244682, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 700, + "CustomerInfo": 30138509, + "PaymentType": "Cash" + }, + { + "Id": 324, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2016-06-06T18:35:34", + "TransactionId": 6593349, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 536, + "CustomerInfo": 7989591, + "PaymentType": "Debit Card" + }, + { + "Id": 325, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-04-20T07:29:00", + "TransactionId": 4884716, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 301, + "CustomerInfo": 95430269, + "PaymentType": "Credit Card" + }, + { + "Id": 326, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2016-07-31T13:14:36", + "TransactionId": 20327817, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 823, + "CustomerInfo": 51254749, + "PaymentType": "Debit Card" + }, + { + "Id": 327, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2017-06-03T16:31:09", + "TransactionId": 41101839, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 899, + "CustomerInfo": 96326238, + "PaymentType": "Cash" + }, + { + "Id": 328, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2017-07-26T13:40:39", + "TransactionId": 98166897, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 158, + "CustomerInfo": 79902476, + "PaymentType": "Debit Card" + }, + { + "Id": 329, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-02-15T12:36:17", + "TransactionId": 18034038, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 696, + "CustomerInfo": 79086551, + "PaymentType": "Debit Card" + }, + { + "Id": 330, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2018-12-06T08:05:34", + "TransactionId": 69764165, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 989, + "CustomerInfo": 81073348, + "PaymentType": "Debit Card" + }, + { + "Id": 331, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-08-23T09:54:00", + "TransactionId": 19360851, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 72, + "CustomerInfo": 86558222, + "PaymentType": "Debit Card" + }, + { + "Id": 332, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2016-04-02T17:45:10", + "TransactionId": 71936110, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 792, + "CustomerInfo": 19501338, + "PaymentType": "Debit Card" + }, + { + "Id": 333, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-10-07T17:10:19", + "TransactionId": 59979824, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 180, + "CustomerInfo": 33065718, + "PaymentType": "Cash" + }, + { + "Id": 334, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2018-10-11T18:44:30", + "TransactionId": 63385347, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 645, + "CustomerInfo": 36518801, + "PaymentType": "Cash" + }, + { + "Id": 335, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2017-04-24T15:52:25", + "TransactionId": 89204175, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 731, + "CustomerInfo": 21205894, + "PaymentType": "Cash" + }, + { + "Id": 336, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2016-07-08T13:08:50", + "TransactionId": 55614211, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 539, + "CustomerInfo": 80059400, + "PaymentType": "Debit Card" + }, + { + "Id": 337, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2019-09-12T11:55:32", + "TransactionId": 83705037, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 838, + "CustomerInfo": 91736163, + "PaymentType": "Debit Card" + }, + { + "Id": 338, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-04-11T17:54:49", + "TransactionId": 42466598, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 58, + "CustomerInfo": 82227734, + "PaymentType": "Credit Card" + }, + { + "Id": 339, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2018-02-04T16:20:21", + "TransactionId": 88268878, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 632, + "CustomerInfo": 4607649, + "PaymentType": "Credit Card" + }, + { + "Id": 340, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2016-06-26T12:09:48", + "TransactionId": 80663615, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 601, + "CustomerInfo": 98073614, + "PaymentType": "Debit Card" + }, + { + "Id": 341, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2018-09-01T08:38:50", + "TransactionId": 17290674, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 706, + "CustomerInfo": 10969655, + "PaymentType": "Debit Card" + }, + { + "Id": 342, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2016-08-31T19:48:17", + "TransactionId": 34916827, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 624, + "CustomerInfo": 5602502, + "PaymentType": "Cash" + }, + { + "Id": 343, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-07-27T09:40:54", + "TransactionId": 11745180, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 858, + "CustomerInfo": 43391515, + "PaymentType": "Credit Card" + }, + { + "Id": 344, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2018-03-05T15:02:36", + "TransactionId": 18406839, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 662, + "CustomerInfo": 57040097, + "PaymentType": "Credit Card" + }, + { + "Id": 345, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-04-18T12:16:34", + "TransactionId": 90813910, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 857, + "CustomerInfo": 10363799, + "PaymentType": "Debit Card" + }, + { + "Id": 346, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-12-13T10:08:59", + "TransactionId": 63760618, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 136, + "CustomerInfo": 56837027, + "PaymentType": "Credit Card" + }, + { + "Id": 347, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-02-26T16:54:55", + "TransactionId": 9625866, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 548, + "CustomerInfo": 69811957, + "PaymentType": "Debit Card" + }, + { + "Id": 348, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2019-04-03T11:02:15", + "TransactionId": 79544637, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 598, + "CustomerInfo": 76953977, + "PaymentType": "Credit Card" + }, + { + "Id": 349, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-04-03T18:54:17", + "TransactionId": 83583390, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 356, + "CustomerInfo": 38382378, + "PaymentType": "Credit Card" + }, + { + "Id": 350, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-05-12T09:13:41", + "TransactionId": 59621803, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 491, + "CustomerInfo": 47320739, + "PaymentType": "Credit Card" + }, + { + "Id": 351, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2016-11-16T14:08:53", + "TransactionId": 86872679, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 559, + "CustomerInfo": 7593453, + "PaymentType": "Cash" + }, + { + "Id": 352, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-02-21T10:42:23", + "TransactionId": 54494214, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 688, + "CustomerInfo": 80942446, + "PaymentType": "Credit Card" + }, + { + "Id": 353, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2017-04-18T08:40:34", + "TransactionId": 24765154, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 386, + "CustomerInfo": 32622489, + "PaymentType": "Debit Card" + }, + { + "Id": 354, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-08-29T13:32:27", + "TransactionId": 99099041, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 881, + "CustomerInfo": 59693661, + "PaymentType": "Debit Card" + }, + { + "Id": 355, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2018-01-16T11:51:04", + "TransactionId": 1247746, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 342, + "CustomerInfo": 57806565, + "PaymentType": "Cash" + }, + { + "Id": 356, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-06-24T12:22:45", + "TransactionId": 62791074, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 420, + "CustomerInfo": 35325311, + "PaymentType": "Debit Card" + }, + { + "Id": 357, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2016-08-31T18:08:38", + "TransactionId": 64150643, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 591, + "CustomerInfo": 95121127, + "PaymentType": "Credit Card" + }, + { + "Id": 358, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-05-31T19:11:34", + "TransactionId": 4437521, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 882, + "CustomerInfo": 49636837, + "PaymentType": "Cash" + }, + { + "Id": 359, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2018-06-14T08:05:43", + "TransactionId": 25436054, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 57092505, + "PaymentType": "Debit Card" + }, + { + "Id": 360, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2018-09-12T07:49:52", + "TransactionId": 54839546, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 984, + "CustomerInfo": 49427306, + "PaymentType": "Cash" + }, + { + "Id": 361, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-09-29T17:39:16", + "TransactionId": 5910631, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 191, + "CustomerInfo": 26779655, + "PaymentType": "Debit Card" + }, + { + "Id": 362, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2016-07-06T19:06:23", + "TransactionId": 40298342, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 28, + "CustomerInfo": 34572878, + "PaymentType": "Cash" + }, + { + "Id": 363, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2016-10-29T09:32:15", + "TransactionId": 57268812, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 989, + "CustomerInfo": 67195848, + "PaymentType": "Debit Card" + }, + { + "Id": 364, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2019-06-12T13:47:00", + "TransactionId": 54550805, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 581, + "CustomerInfo": 74095897, + "PaymentType": "Credit Card" + }, + { + "Id": 365, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-09-25T15:29:48", + "TransactionId": 71900681, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 448, + "CustomerInfo": 37719121, + "PaymentType": "Cash" + }, + { + "Id": 366, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2017-02-25T12:15:42", + "TransactionId": 5441061, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 225, + "CustomerInfo": 93801113, + "PaymentType": "Debit Card" + }, + { + "Id": 367, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2018-10-28T12:44:47", + "TransactionId": 27446284, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 634, + "CustomerInfo": 44619529, + "PaymentType": "Debit Card" + }, + { + "Id": 368, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-09-11T13:17:28", + "TransactionId": 87256207, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 114, + "CustomerInfo": 29954731, + "PaymentType": "Cash" + }, + { + "Id": 369, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-09-18T14:37:41", + "TransactionId": 13640794, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 559, + "CustomerInfo": 80451659, + "PaymentType": "Debit Card" + }, + { + "Id": 370, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-09-01T07:44:24", + "TransactionId": 2263669, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 443, + "CustomerInfo": 62099800, + "PaymentType": "Debit Card" + }, + { + "Id": 371, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2017-02-24T11:08:10", + "TransactionId": 19387463, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 132, + "CustomerInfo": 59418167, + "PaymentType": "Cash" + }, + { + "Id": 372, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-01-18T19:04:13", + "TransactionId": 78739458, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 960, + "CustomerInfo": 3939864, + "PaymentType": "Credit Card" + }, + { + "Id": 373, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2017-03-01T17:02:59", + "TransactionId": 3008488, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 704, + "CustomerInfo": 63562466, + "PaymentType": "Credit Card" + }, + { + "Id": 374, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-02-28T19:52:45", + "TransactionId": 28681234, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 892, + "CustomerInfo": 72869097, + "PaymentType": "Credit Card" + }, + { + "Id": 375, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-04-17T15:38:18", + "TransactionId": 79124427, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 458, + "CustomerInfo": 14885856, + "PaymentType": "Cash" + }, + { + "Id": 376, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-12-01T11:21:59", + "TransactionId": 97624945, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 438, + "CustomerInfo": 74106660, + "PaymentType": "Credit Card" + }, + { + "Id": 377, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-02-01T10:34:36", + "TransactionId": 37963783, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 648, + "CustomerInfo": 10511483, + "PaymentType": "Cash" + }, + { + "Id": 378, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-03-18T15:36:43", + "TransactionId": 98834729, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 970, + "CustomerInfo": 59953928, + "PaymentType": "Cash" + }, + { + "Id": 379, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-05-08T08:38:33", + "TransactionId": 96630091, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 517, + "CustomerInfo": 40428240, + "PaymentType": "Debit Card" + }, + { + "Id": 380, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2018-02-11T09:05:37", + "TransactionId": 92811629, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 151, + "CustomerInfo": 20304682, + "PaymentType": "Cash" + }, + { + "Id": 381, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-12-03T18:08:04", + "TransactionId": 92530140, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 112, + "CustomerInfo": 28556229, + "PaymentType": "Debit Card" + }, + { + "Id": 382, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2018-11-26T12:24:03", + "TransactionId": 54244377, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 401, + "CustomerInfo": 54826403, + "PaymentType": "Credit Card" + }, + { + "Id": 383, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2019-09-27T09:24:03", + "TransactionId": 24619606, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 45, + "CustomerInfo": 19627160, + "PaymentType": "Credit Card" + }, + { + "Id": 384, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2018-10-03T19:54:55", + "TransactionId": 49798228, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 342, + "CustomerInfo": 25125744, + "PaymentType": "Debit Card" + }, + { + "Id": 385, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-04-05T08:51:30", + "TransactionId": 48605158, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 794, + "CustomerInfo": 87517677, + "PaymentType": "Cash" + }, + { + "Id": 386, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2019-10-23T08:00:23", + "TransactionId": 27439562, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 238, + "CustomerInfo": 41142499, + "PaymentType": "Cash" + }, + { + "Id": 387, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2019-05-03T14:41:43", + "TransactionId": 10924135, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 251, + "CustomerInfo": 52115158, + "PaymentType": "Credit Card" + }, + { + "Id": 388, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2016-11-03T19:25:15", + "TransactionId": 57597907, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 755, + "CustomerInfo": 33195586, + "PaymentType": "Debit Card" + }, + { + "Id": 389, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2017-06-13T15:14:15", + "TransactionId": 24714967, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 52, + "CustomerInfo": 1899310, + "PaymentType": "Credit Card" + }, + { + "Id": 390, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-02-29T08:44:36", + "TransactionId": 11313749, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 427, + "CustomerInfo": 79510768, + "PaymentType": "Debit Card" + }, + { + "Id": 391, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2019-11-30T17:49:38", + "TransactionId": 26853381, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 882, + "CustomerInfo": 51433106, + "PaymentType": "Debit Card" + }, + { + "Id": 392, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-07-23T08:03:16", + "TransactionId": 24394077, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 392, + "CustomerInfo": 79852902, + "PaymentType": "Cash" + }, + { + "Id": 393, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2019-04-01T15:17:34", + "TransactionId": 68978354, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 570, + "CustomerInfo": 20913007, + "PaymentType": "Cash" + }, + { + "Id": 394, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2018-04-01T10:18:55", + "TransactionId": 85488839, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 738, + "CustomerInfo": 71520028, + "PaymentType": "Debit Card" + }, + { + "Id": 395, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-04-25T19:23:31", + "TransactionId": 60500695, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 913, + "CustomerInfo": 70254241, + "PaymentType": "Credit Card" + }, + { + "Id": 396, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2017-05-08T09:56:01", + "TransactionId": 77211351, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 469, + "CustomerInfo": 94198269, + "PaymentType": "Cash" + }, + { + "Id": 397, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-10-31T14:30:55", + "TransactionId": 1600449, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 802, + "CustomerInfo": 75838444, + "PaymentType": "Credit Card" + }, + { + "Id": 398, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-03-10T12:06:55", + "TransactionId": 79952263, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 556, + "CustomerInfo": 12200846, + "PaymentType": "Debit Card" + }, + { + "Id": 399, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-11-02T19:34:11", + "TransactionId": 87192486, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 986, + "CustomerInfo": 3870667, + "PaymentType": "Cash" + }, + { + "Id": 400, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-11-01T13:07:24", + "TransactionId": 82203590, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 356, + "CustomerInfo": 58090441, + "PaymentType": "Cash" + }, + { + "Id": 401, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2016-10-19T17:07:18", + "TransactionId": 89643054, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 702, + "CustomerInfo": 87649761, + "PaymentType": "Credit Card" + }, + { + "Id": 402, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2016-02-20T12:37:00", + "TransactionId": 7684491, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 331, + "CustomerInfo": 7540889, + "PaymentType": "Debit Card" + }, + { + "Id": 403, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2019-11-19T14:01:06", + "TransactionId": 94020411, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 375, + "CustomerInfo": 99327053, + "PaymentType": "Debit Card" + }, + { + "Id": 404, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-11-12T11:10:02", + "TransactionId": 91640753, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 416, + "CustomerInfo": 13220755, + "PaymentType": "Debit Card" + }, + { + "Id": 405, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2018-06-24T14:02:15", + "TransactionId": 83023332, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 803, + "CustomerInfo": 31223213, + "PaymentType": "Cash" + }, + { + "Id": 406, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2019-03-01T12:02:01", + "TransactionId": 9246365, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 890, + "CustomerInfo": 35648811, + "PaymentType": "Cash" + }, + { + "Id": 407, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2017-09-24T08:10:28", + "TransactionId": 80352187, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 316, + "CustomerInfo": 7507026, + "PaymentType": "Debit Card" + }, + { + "Id": 408, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2018-10-24T17:51:13", + "TransactionId": 91634129, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 43, + "CustomerInfo": 14175222, + "PaymentType": "Debit Card" + }, + { + "Id": 409, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2019-10-28T08:59:43", + "TransactionId": 78208284, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 166, + "CustomerInfo": 96564634, + "PaymentType": "Cash" + }, + { + "Id": 410, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2018-12-13T11:33:22", + "TransactionId": 37935071, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 719, + "CustomerInfo": 53637563, + "PaymentType": "Cash" + }, + { + "Id": 411, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2017-04-15T08:49:21", + "TransactionId": 62676311, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 812, + "CustomerInfo": 50602364, + "PaymentType": "Credit Card" + }, + { + "Id": 412, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-12-03T18:35:51", + "TransactionId": 47336451, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 643, + "CustomerInfo": 85878864, + "PaymentType": "Credit Card" + }, + { + "Id": 413, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2018-09-19T18:14:07", + "TransactionId": 51124895, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 591, + "CustomerInfo": 69377222, + "PaymentType": "Debit Card" + }, + { + "Id": 414, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2017-09-16T09:38:01", + "TransactionId": 95820426, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 401, + "CustomerInfo": 59290342, + "PaymentType": "Debit Card" + }, + { + "Id": 415, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2017-02-17T14:20:41", + "TransactionId": 10447980, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 231, + "CustomerInfo": 13075978, + "PaymentType": "Cash" + }, + { + "Id": 416, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-04-14T07:18:29", + "TransactionId": 38529128, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 382, + "CustomerInfo": 20298546, + "PaymentType": "Debit Card" + }, + { + "Id": 417, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2019-09-22T08:19:58", + "TransactionId": 9843128, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 132, + "CustomerInfo": 55406981, + "PaymentType": "Cash" + }, + { + "Id": 418, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2016-04-13T17:10:11", + "TransactionId": 49346478, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 815, + "CustomerInfo": 66924626, + "PaymentType": "Cash" + }, + { + "Id": 419, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2016-01-27T16:57:04", + "TransactionId": 25269218, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 790, + "CustomerInfo": 55541342, + "PaymentType": "Cash" + }, + { + "Id": 420, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-02-11T17:15:04", + "TransactionId": 35558394, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 7537348, + "PaymentType": "Cash" + }, + { + "Id": 421, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2019-05-31T16:02:12", + "TransactionId": 75672454, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 506, + "CustomerInfo": 18484180, + "PaymentType": "Credit Card" + }, + { + "Id": 422, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2017-07-25T16:29:34", + "TransactionId": 52877570, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 748, + "CustomerInfo": 20074944, + "PaymentType": "Debit Card" + }, + { + "Id": 423, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-01-15T17:56:50", + "TransactionId": 15539599, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 208, + "CustomerInfo": 96893406, + "PaymentType": "Debit Card" + }, + { + "Id": 424, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2019-02-06T16:47:43", + "TransactionId": 13208517, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 183, + "CustomerInfo": 32426295, + "PaymentType": "Cash" + }, + { + "Id": 425, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2019-05-07T13:33:27", + "TransactionId": 44063396, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 89, + "CustomerInfo": 59292511, + "PaymentType": "Credit Card" + }, + { + "Id": 426, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-09-22T19:37:29", + "TransactionId": 33086461, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 753, + "CustomerInfo": 12188781, + "PaymentType": "Debit Card" + }, + { + "Id": 427, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2016-08-14T15:45:30", + "TransactionId": 1860667, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 184, + "CustomerInfo": 97638784, + "PaymentType": "Cash" + }, + { + "Id": 428, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-05-13T08:51:48", + "TransactionId": 30507832, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 684, + "CustomerInfo": 93456346, + "PaymentType": "Debit Card" + }, + { + "Id": 429, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2018-08-30T17:12:29", + "TransactionId": 63009429, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 774, + "CustomerInfo": 95446829, + "PaymentType": "Cash" + }, + { + "Id": 430, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-12-03T08:22:25", + "TransactionId": 95456086, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 47, + "CustomerInfo": 72919754, + "PaymentType": "Cash" + }, + { + "Id": 431, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-11-13T09:53:25", + "TransactionId": 23813194, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 303, + "CustomerInfo": 8914257, + "PaymentType": "Credit Card" + }, + { + "Id": 432, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-06-16T17:08:27", + "TransactionId": 57829959, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 993, + "CustomerInfo": 76889912, + "PaymentType": "Debit Card" + }, + { + "Id": 433, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2019-05-07T08:39:24", + "TransactionId": 19776437, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 486, + "CustomerInfo": 36552405, + "PaymentType": "Credit Card" + }, + { + "Id": 434, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-01-27T09:24:20", + "TransactionId": 84167043, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 191, + "CustomerInfo": 76020181, + "PaymentType": "Cash" + }, + { + "Id": 435, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-12-23T09:28:13", + "TransactionId": 63707477, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 113, + "CustomerInfo": 24673969, + "PaymentType": "Credit Card" + }, + { + "Id": 436, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2019-09-13T19:23:23", + "TransactionId": 70708410, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 913, + "CustomerInfo": 69357757, + "PaymentType": "Credit Card" + }, + { + "Id": 437, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-01-17T08:00:06", + "TransactionId": 21037434, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 662, + "CustomerInfo": 20688027, + "PaymentType": "Credit Card" + }, + { + "Id": 438, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-02-17T11:09:36", + "TransactionId": 14582111, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 500, + "CustomerInfo": 77755277, + "PaymentType": "Debit Card" + }, + { + "Id": 439, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-10-21T12:27:30", + "TransactionId": 16985130, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 712, + "CustomerInfo": 57049178, + "PaymentType": "Debit Card" + }, + { + "Id": 440, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-07-10T12:50:41", + "TransactionId": 84713754, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 347, + "CustomerInfo": 79632281, + "PaymentType": "Cash" + }, + { + "Id": 441, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2018-07-16T17:13:21", + "TransactionId": 70299706, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 170, + "CustomerInfo": 4080037, + "PaymentType": "Debit Card" + }, + { + "Id": 442, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-03-17T14:44:18", + "TransactionId": 75558262, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 667, + "CustomerInfo": 80004119, + "PaymentType": "Credit Card" + }, + { + "Id": 443, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-06-06T18:03:01", + "TransactionId": 52221694, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 502, + "CustomerInfo": 64174285, + "PaymentType": "Debit Card" + }, + { + "Id": 444, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2018-11-04T15:08:04", + "TransactionId": 8685026, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 933, + "CustomerInfo": 32372603, + "PaymentType": "Debit Card" + }, + { + "Id": 445, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-03-27T18:17:25", + "TransactionId": 21727978, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 408, + "CustomerInfo": 7008065, + "PaymentType": "Debit Card" + }, + { + "Id": 446, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-11-02T12:44:12", + "TransactionId": 69208683, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 389, + "CustomerInfo": 41188558, + "PaymentType": "Credit Card" + }, + { + "Id": 447, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-12-18T11:59:17", + "TransactionId": 86634521, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 739, + "CustomerInfo": 92723641, + "PaymentType": "Cash" + }, + { + "Id": 448, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2016-03-26T17:28:45", + "TransactionId": 10677475, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 527, + "CustomerInfo": 80486338, + "PaymentType": "Credit Card" + }, + { + "Id": 449, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-12-31T07:17:54", + "TransactionId": 27055951, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 536, + "CustomerInfo": 47638440, + "PaymentType": "Debit Card" + }, + { + "Id": 450, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-08-22T16:39:30", + "TransactionId": 30753136, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 812, + "CustomerInfo": 76952739, + "PaymentType": "Credit Card" + }, + { + "Id": 451, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2016-04-20T07:00:46", + "TransactionId": 48268143, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 208, + "CustomerInfo": 35744630, + "PaymentType": "Cash" + }, + { + "Id": 452, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2019-04-02T09:58:19", + "TransactionId": 22660174, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 995, + "CustomerInfo": 54424079, + "PaymentType": "Credit Card" + }, + { + "Id": 453, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-01-30T16:41:23", + "TransactionId": 10204092, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 900, + "CustomerInfo": 65911162, + "PaymentType": "Cash" + }, + { + "Id": 454, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-12-09T19:50:36", + "TransactionId": 37094440, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 628, + "CustomerInfo": 71515154, + "PaymentType": "Credit Card" + }, + { + "Id": 455, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2018-07-28T18:36:52", + "TransactionId": 77412637, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 65, + "CustomerInfo": 15013806, + "PaymentType": "Debit Card" + }, + { + "Id": 456, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-12-29T07:10:16", + "TransactionId": 93488411, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 775, + "CustomerInfo": 24155665, + "PaymentType": "Credit Card" + }, + { + "Id": 457, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2017-05-10T10:03:13", + "TransactionId": 88832194, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 622, + "CustomerInfo": 79170878, + "PaymentType": "Cash" + }, + { + "Id": 458, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2019-09-24T18:56:18", + "TransactionId": 61839829, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 797, + "CustomerInfo": 58651135, + "PaymentType": "Cash" + }, + { + "Id": 459, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2017-08-13T14:26:44", + "TransactionId": 97780847, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 377, + "CustomerInfo": 89681180, + "PaymentType": "Credit Card" + }, + { + "Id": 460, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2018-06-13T16:34:19", + "TransactionId": 85189340, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 936, + "CustomerInfo": 35246941, + "PaymentType": "Credit Card" + }, + { + "Id": 461, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2018-04-08T17:43:26", + "TransactionId": 12627153, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 278, + "CustomerInfo": 96836810, + "PaymentType": "Debit Card" + }, + { + "Id": 462, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2018-01-07T10:12:26", + "TransactionId": 1575143, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 24981205, + "PaymentType": "Cash" + }, + { + "Id": 463, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-02-03T17:16:31", + "TransactionId": 68457512, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 432, + "CustomerInfo": 65375059, + "PaymentType": "Debit Card" + }, + { + "Id": 464, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2019-07-22T07:17:20", + "TransactionId": 46476233, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 239, + "CustomerInfo": 45433743, + "PaymentType": "Credit Card" + }, + { + "Id": 465, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-09-02T07:02:47", + "TransactionId": 58240061, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 640, + "CustomerInfo": 80817555, + "PaymentType": "Credit Card" + }, + { + "Id": 466, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-11-21T07:13:52", + "TransactionId": 80060758, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 775, + "CustomerInfo": 39111827, + "PaymentType": "Debit Card" + }, + { + "Id": 467, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2018-02-11T12:46:05", + "TransactionId": 19657223, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 431, + "CustomerInfo": 92135455, + "PaymentType": "Debit Card" + }, + { + "Id": 468, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-11-27T10:14:10", + "TransactionId": 24587789, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 676, + "CustomerInfo": 9115853, + "PaymentType": "Debit Card" + }, + { + "Id": 469, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2019-01-11T19:02:38", + "TransactionId": 83352400, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 810, + "CustomerInfo": 3282058, + "PaymentType": "Debit Card" + }, + { + "Id": 470, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2018-09-04T18:51:24", + "TransactionId": 67441969, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 703, + "CustomerInfo": 73824774, + "PaymentType": "Debit Card" + }, + { + "Id": 471, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-09-06T15:47:14", + "TransactionId": 87701904, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 609, + "CustomerInfo": 37959291, + "PaymentType": "Cash" + }, + { + "Id": 472, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2017-01-28T13:00:20", + "TransactionId": 65572768, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 551, + "CustomerInfo": 21032035, + "PaymentType": "Cash" + }, + { + "Id": 473, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2018-10-06T19:38:38", + "TransactionId": 97116952, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 468, + "CustomerInfo": 39747331, + "PaymentType": "Debit Card" + }, + { + "Id": 474, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-07-19T07:15:01", + "TransactionId": 2399091, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 722, + "CustomerInfo": 80166847, + "PaymentType": "Cash" + }, + { + "Id": 475, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-05-18T13:00:55", + "TransactionId": 12856818, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 658, + "CustomerInfo": 16519118, + "PaymentType": "Credit Card" + }, + { + "Id": 476, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-06-09T10:33:27", + "TransactionId": 65956288, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 561, + "CustomerInfo": 14745593, + "PaymentType": "Credit Card" + }, + { + "Id": 477, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2017-09-26T14:24:43", + "TransactionId": 87869256, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 62275533, + "PaymentType": "Debit Card" + }, + { + "Id": 478, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2017-09-17T15:07:21", + "TransactionId": 28184524, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 191, + "CustomerInfo": 66380407, + "PaymentType": "Debit Card" + }, + { + "Id": 479, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-02-14T07:47:51", + "TransactionId": 66169886, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 532, + "CustomerInfo": 68853714, + "PaymentType": "Cash" + }, + { + "Id": 480, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2016-11-20T15:40:45", + "TransactionId": 48190285, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 925, + "CustomerInfo": 89173638, + "PaymentType": "Cash" + }, + { + "Id": 481, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2017-04-12T14:52:31", + "TransactionId": 14310704, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 9, + "CustomerInfo": 18600905, + "PaymentType": "Credit Card" + }, + { + "Id": 482, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2018-08-28T11:25:00", + "TransactionId": 21072152, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 292, + "CustomerInfo": 39416845, + "PaymentType": "Credit Card" + }, + { + "Id": 483, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-12-09T14:11:02", + "TransactionId": 29768064, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 49, + "CustomerInfo": 92135146, + "PaymentType": "Debit Card" + }, + { + "Id": 484, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2018-03-01T15:41:54", + "TransactionId": 97690773, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 935, + "CustomerInfo": 85618231, + "PaymentType": "Credit Card" + }, + { + "Id": 485, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2017-07-02T11:46:45", + "TransactionId": 7557079, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 516, + "CustomerInfo": 43320752, + "PaymentType": "Cash" + }, + { + "Id": 486, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-06-25T15:11:23", + "TransactionId": 59388146, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 861, + "CustomerInfo": 82480280, + "PaymentType": "Debit Card" + }, + { + "Id": 487, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-07-14T17:20:07", + "TransactionId": 60252249, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 476, + "CustomerInfo": 50042771, + "PaymentType": "Credit Card" + }, + { + "Id": 488, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-09-17T14:44:10", + "TransactionId": 10653242, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 390, + "CustomerInfo": 99662408, + "PaymentType": "Cash" + }, + { + "Id": 489, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2019-07-23T18:24:12", + "TransactionId": 77364501, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 47256613, + "PaymentType": "Credit Card" + }, + { + "Id": 490, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-10-12T07:50:44", + "TransactionId": 19142992, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 90215091, + "PaymentType": "Cash" + }, + { + "Id": 491, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-11-24T19:37:12", + "TransactionId": 76075585, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 461, + "CustomerInfo": 46124024, + "PaymentType": "Credit Card" + }, + { + "Id": 492, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2017-05-15T16:53:28", + "TransactionId": 40441536, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 276, + "CustomerInfo": 70894271, + "PaymentType": "Debit Card" + }, + { + "Id": 493, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2017-01-07T17:29:28", + "TransactionId": 75667669, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 707, + "CustomerInfo": 28370781, + "PaymentType": "Cash" + }, + { + "Id": 494, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2019-05-02T12:24:37", + "TransactionId": 66400106, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 633, + "CustomerInfo": 51537400, + "PaymentType": "Cash" + }, + { + "Id": 495, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2016-08-19T19:33:10", + "TransactionId": 79436341, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 279, + "CustomerInfo": 20471459, + "PaymentType": "Cash" + }, + { + "Id": 496, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2018-08-06T17:27:19", + "TransactionId": 9941570, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 208, + "CustomerInfo": 19221109, + "PaymentType": "Credit Card" + }, + { + "Id": 497, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2017-12-01T10:08:07", + "TransactionId": 84084650, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 415, + "CustomerInfo": 48532426, + "PaymentType": "Credit Card" + }, + { + "Id": 498, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2017-10-31T11:40:25", + "TransactionId": 78803531, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 279, + "CustomerInfo": 99243117, + "PaymentType": "Cash" + }, + { + "Id": 499, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-10-08T18:41:37", + "TransactionId": 93497921, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 551, + "CustomerInfo": 29472707, + "PaymentType": "Credit Card" + }, + { + "Id": 500, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2019-06-04T07:56:21", + "TransactionId": 32042621, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 485, + "CustomerInfo": 7057945, + "PaymentType": "Cash" + }, + { + "Id": 501, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2019-07-05T19:16:28", + "TransactionId": 47213167, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 628, + "CustomerInfo": 75689284, + "PaymentType": "Credit Card" + }, + { + "Id": 502, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-03-04T10:11:08", + "TransactionId": 87914465, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 345, + "CustomerInfo": 46482078, + "PaymentType": "Debit Card" + }, + { + "Id": 503, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-04-14T15:45:56", + "TransactionId": 35519201, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 573, + "CustomerInfo": 47836097, + "PaymentType": "Credit Card" + }, + { + "Id": 504, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-02-06T09:28:05", + "TransactionId": 77717962, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 751, + "CustomerInfo": 35582890, + "PaymentType": "Debit Card" + }, + { + "Id": 505, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2017-10-27T11:43:26", + "TransactionId": 18194314, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 543, + "CustomerInfo": 5819864, + "PaymentType": "Debit Card" + }, + { + "Id": 506, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2019-07-30T17:01:24", + "TransactionId": 69317000, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 952, + "CustomerInfo": 42743992, + "PaymentType": "Credit Card" + }, + { + "Id": 507, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2018-01-05T08:41:17", + "TransactionId": 13477257, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 30508390, + "PaymentType": "Debit Card" + }, + { + "Id": 508, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2017-09-01T12:13:49", + "TransactionId": 31459906, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 793, + "CustomerInfo": 68001603, + "PaymentType": "Cash" + }, + { + "Id": 509, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2016-07-23T13:22:05", + "TransactionId": 10993778, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 546, + "CustomerInfo": 76063932, + "PaymentType": "Debit Card" + }, + { + "Id": 510, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2016-11-26T07:43:06", + "TransactionId": 54254372, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 689, + "CustomerInfo": 6852530, + "PaymentType": "Cash" + }, + { + "Id": 511, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2019-03-07T12:07:47", + "TransactionId": 8438667, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 273, + "CustomerInfo": 87590308, + "PaymentType": "Cash" + }, + { + "Id": 512, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-04-10T12:52:08", + "TransactionId": 37851890, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 280, + "CustomerInfo": 91402934, + "PaymentType": "Debit Card" + }, + { + "Id": 513, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-07-20T10:34:36", + "TransactionId": 7396100, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 519, + "CustomerInfo": 83776208, + "PaymentType": "Cash" + }, + { + "Id": 514, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-04-24T13:41:31", + "TransactionId": 799501, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 124, + "CustomerInfo": 87670592, + "PaymentType": "Credit Card" + }, + { + "Id": 515, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2019-07-05T16:04:57", + "TransactionId": 88668303, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 795, + "CustomerInfo": 13792227, + "PaymentType": "Credit Card" + }, + { + "Id": 516, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-12-25T07:07:32", + "TransactionId": 82546292, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 492, + "CustomerInfo": 37242543, + "PaymentType": "Cash" + }, + { + "Id": 517, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2017-07-21T07:14:01", + "TransactionId": 26507132, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 425, + "CustomerInfo": 17664880, + "PaymentType": "Credit Card" + }, + { + "Id": 518, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-11-05T18:23:11", + "TransactionId": 1436567, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 919, + "CustomerInfo": 36261747, + "PaymentType": "Cash" + }, + { + "Id": 519, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2017-10-20T10:20:21", + "TransactionId": 55245495, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 949, + "CustomerInfo": 34954314, + "PaymentType": "Debit Card" + }, + { + "Id": 520, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2016-04-29T15:16:51", + "TransactionId": 79640914, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 792, + "CustomerInfo": 87882668, + "PaymentType": "Cash" + }, + { + "Id": 521, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2019-05-04T08:07:35", + "TransactionId": 90365178, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 17, + "CustomerInfo": 22772523, + "PaymentType": "Cash" + }, + { + "Id": 522, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-12-11T18:08:56", + "TransactionId": 51544619, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 727, + "CustomerInfo": 63634004, + "PaymentType": "Cash" + }, + { + "Id": 523, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2018-12-08T18:42:55", + "TransactionId": 87090174, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 132, + "CustomerInfo": 56965365, + "PaymentType": "Credit Card" + }, + { + "Id": 524, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-03-10T19:45:07", + "TransactionId": 38210357, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 111, + "CustomerInfo": 87882057, + "PaymentType": "Credit Card" + }, + { + "Id": 525, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2017-02-01T14:28:19", + "TransactionId": 36733858, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 616, + "CustomerInfo": 15981939, + "PaymentType": "Credit Card" + }, + { + "Id": 526, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2019-02-05T15:37:52", + "TransactionId": 86947632, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 834, + "CustomerInfo": 17673129, + "PaymentType": "Cash" + }, + { + "Id": 527, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-12-24T15:15:50", + "TransactionId": 27083627, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 987, + "CustomerInfo": 87602429, + "PaymentType": "Cash" + }, + { + "Id": 528, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-07-24T13:46:34", + "TransactionId": 10452603, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 993, + "CustomerInfo": 78979659, + "PaymentType": "Credit Card" + }, + { + "Id": 529, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2018-09-03T13:15:10", + "TransactionId": 62483869, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 374, + "CustomerInfo": 55324122, + "PaymentType": "Credit Card" + }, + { + "Id": 530, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2019-08-06T09:15:24", + "TransactionId": 57688935, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 216, + "CustomerInfo": 53729447, + "PaymentType": "Credit Card" + }, + { + "Id": 531, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2016-11-20T07:09:50", + "TransactionId": 68237863, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 173, + "CustomerInfo": 12163607, + "PaymentType": "Credit Card" + }, + { + "Id": 532, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2016-01-23T19:15:27", + "TransactionId": 35821559, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 147, + "CustomerInfo": 75114894, + "PaymentType": "Credit Card" + }, + { + "Id": 533, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-10-05T15:37:09", + "TransactionId": 21064431, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 579, + "CustomerInfo": 9149786, + "PaymentType": "Debit Card" + }, + { + "Id": 534, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2019-12-08T19:48:00", + "TransactionId": 43438181, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 186, + "CustomerInfo": 72555379, + "PaymentType": "Credit Card" + }, + { + "Id": 535, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2019-06-12T13:33:45", + "TransactionId": 75455933, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 523, + "CustomerInfo": 96213202, + "PaymentType": "Debit Card" + }, + { + "Id": 536, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-10-06T12:38:36", + "TransactionId": 78591230, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 152, + "CustomerInfo": 11233077, + "PaymentType": "Cash" + }, + { + "Id": 537, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-11-13T19:29:51", + "TransactionId": 64156779, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 647, + "CustomerInfo": 74528694, + "PaymentType": "Credit Card" + }, + { + "Id": 538, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2019-11-16T12:15:24", + "TransactionId": 28140087, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 692, + "CustomerInfo": 5080172, + "PaymentType": "Credit Card" + }, + { + "Id": 539, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2016-02-09T09:58:11", + "TransactionId": 5578088, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 685, + "CustomerInfo": 68126799, + "PaymentType": "Credit Card" + }, + { + "Id": 540, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-08-12T12:39:10", + "TransactionId": 18818902, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 267, + "CustomerInfo": 59755125, + "PaymentType": "Debit Card" + }, + { + "Id": 541, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-04-08T19:28:34", + "TransactionId": 7455227, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 579, + "CustomerInfo": 99827099, + "PaymentType": "Debit Card" + }, + { + "Id": 542, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2017-03-03T13:31:00", + "TransactionId": 88772432, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 94, + "CustomerInfo": 49831200, + "PaymentType": "Debit Card" + }, + { + "Id": 543, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2017-06-14T11:06:26", + "TransactionId": 70695717, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 571, + "CustomerInfo": 19003479, + "PaymentType": "Cash" + }, + { + "Id": 544, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-02-24T15:13:24", + "TransactionId": 69579676, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 101, + "CustomerInfo": 64320122, + "PaymentType": "Credit Card" + }, + { + "Id": 545, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-04-07T07:07:32", + "TransactionId": 22951977, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 467, + "CustomerInfo": 97283935, + "PaymentType": "Debit Card" + }, + { + "Id": 546, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-02-25T19:16:02", + "TransactionId": 80086689, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 238, + "CustomerInfo": 36860162, + "PaymentType": "Cash" + }, + { + "Id": 547, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-01-31T15:22:36", + "TransactionId": 40982345, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 995, + "CustomerInfo": 20544115, + "PaymentType": "Cash" + }, + { + "Id": 548, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2017-12-03T19:24:14", + "TransactionId": 5934544, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 98, + "CustomerInfo": 21542273, + "PaymentType": "Credit Card" + }, + { + "Id": 549, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2016-03-05T08:05:00", + "TransactionId": 4650651, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 162, + "CustomerInfo": 42441113, + "PaymentType": "Credit Card" + }, + { + "Id": 550, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2019-09-19T17:46:28", + "TransactionId": 36540324, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 2, + "CustomerInfo": 92298706, + "PaymentType": "Cash" + }, + { + "Id": 551, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-10-28T13:33:10", + "TransactionId": 16866611, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 520, + "CustomerInfo": 5560596, + "PaymentType": "Debit Card" + }, + { + "Id": 552, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2017-06-30T18:32:33", + "TransactionId": 87732130, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 188, + "CustomerInfo": 34868603, + "PaymentType": "Credit Card" + }, + { + "Id": 553, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2016-07-06T10:08:33", + "TransactionId": 82178113, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 143, + "CustomerInfo": 40734439, + "PaymentType": "Debit Card" + }, + { + "Id": 554, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2019-03-02T15:17:51", + "TransactionId": 85692199, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 39, + "CustomerInfo": 61506196, + "PaymentType": "Cash" + }, + { + "Id": 555, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2017-10-15T14:36:58", + "TransactionId": 39945176, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 919, + "CustomerInfo": 20170970, + "PaymentType": "Debit Card" + }, + { + "Id": 556, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-08-30T16:54:55", + "TransactionId": 56152103, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 89, + "CustomerInfo": 65484084, + "PaymentType": "Cash" + }, + { + "Id": 557, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-03-03T12:59:46", + "TransactionId": 62681651, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 108, + "CustomerInfo": 72789729, + "PaymentType": "Credit Card" + }, + { + "Id": 558, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2019-06-20T08:21:33", + "TransactionId": 46582366, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 418, + "CustomerInfo": 18718761, + "PaymentType": "Credit Card" + }, + { + "Id": 559, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2019-11-08T10:06:40", + "TransactionId": 46899072, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 866, + "CustomerInfo": 47405455, + "PaymentType": "Debit Card" + }, + { + "Id": 560, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2016-08-21T09:50:24", + "TransactionId": 87488391, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 156, + "CustomerInfo": 86602932, + "PaymentType": "Cash" + }, + { + "Id": 561, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-01-11T09:36:35", + "TransactionId": 96162690, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 340, + "CustomerInfo": 10812298, + "PaymentType": "Credit Card" + }, + { + "Id": 562, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-12-15T14:57:07", + "TransactionId": 83261837, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 516, + "CustomerInfo": 78037649, + "PaymentType": "Cash" + }, + { + "Id": 563, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-03-01T19:20:04", + "TransactionId": 81103426, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 445, + "CustomerInfo": 36402573, + "PaymentType": "Credit Card" + }, + { + "Id": 564, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2019-08-17T10:08:24", + "TransactionId": 49816723, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 574, + "CustomerInfo": 65083651, + "PaymentType": "Debit Card" + }, + { + "Id": 565, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2016-04-06T10:56:12", + "TransactionId": 14985305, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 710, + "CustomerInfo": 69814784, + "PaymentType": "Debit Card" + }, + { + "Id": 566, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2016-04-07T09:30:06", + "TransactionId": 32020359, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 59, + "CustomerInfo": 11257697, + "PaymentType": "Cash" + }, + { + "Id": 567, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-01-20T07:50:18", + "TransactionId": 53200257, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 41, + "CustomerInfo": 63468662, + "PaymentType": "Cash" + }, + { + "Id": 568, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-11-02T12:16:51", + "TransactionId": 26781110, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 1000, + "CustomerInfo": 14062650, + "PaymentType": "Credit Card" + }, + { + "Id": 569, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2016-09-13T19:21:22", + "TransactionId": 49884419, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 749, + "CustomerInfo": 87814615, + "PaymentType": "Debit Card" + }, + { + "Id": 570, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-09-02T13:24:49", + "TransactionId": 59897801, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 952, + "CustomerInfo": 86456694, + "PaymentType": "Cash" + }, + { + "Id": 571, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2019-03-19T13:44:15", + "TransactionId": 78771509, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 507, + "CustomerInfo": 18095635, + "PaymentType": "Cash" + }, + { + "Id": 572, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2016-08-10T18:24:03", + "TransactionId": 95727493, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 28, + "CustomerInfo": 12281077, + "PaymentType": "Cash" + }, + { + "Id": 573, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-07-08T15:44:12", + "TransactionId": 99455962, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 42604907, + "PaymentType": "Cash" + }, + { + "Id": 574, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2019-07-09T13:50:01", + "TransactionId": 43461701, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 787, + "CustomerInfo": 21107879, + "PaymentType": "Debit Card" + }, + { + "Id": 575, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-10-02T07:45:42", + "TransactionId": 11875558, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 93668773, + "PaymentType": "Debit Card" + }, + { + "Id": 576, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-12-21T17:31:55", + "TransactionId": 31027683, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 824, + "CustomerInfo": 86237901, + "PaymentType": "Credit Card" + }, + { + "Id": 577, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2019-02-24T11:31:38", + "TransactionId": 3257861, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 239, + "CustomerInfo": 83527230, + "PaymentType": "Cash" + }, + { + "Id": 578, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2016-02-18T16:26:41", + "TransactionId": 96057548, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 310, + "CustomerInfo": 72835757, + "PaymentType": "Debit Card" + }, + { + "Id": 579, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-10-15T19:06:58", + "TransactionId": 42175026, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 805, + "CustomerInfo": 27561959, + "PaymentType": "Debit Card" + }, + { + "Id": 580, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2019-03-12T10:39:39", + "TransactionId": 92087530, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 926, + "CustomerInfo": 97994695, + "PaymentType": "Cash" + }, + { + "Id": 581, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2016-03-19T12:03:27", + "TransactionId": 87883207, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 56773071, + "PaymentType": "Debit Card" + }, + { + "Id": 582, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2018-03-19T18:04:36", + "TransactionId": 64716240, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 435, + "CustomerInfo": 83879409, + "PaymentType": "Credit Card" + }, + { + "Id": 583, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-05-29T13:30:09", + "TransactionId": 85138155, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 605, + "CustomerInfo": 1036180, + "PaymentType": "Debit Card" + }, + { + "Id": 584, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2016-05-21T13:57:30", + "TransactionId": 89868058, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 66437629, + "PaymentType": "Cash" + }, + { + "Id": 585, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-05-07T18:17:43", + "TransactionId": 90133471, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 42741635, + "PaymentType": "Cash" + }, + { + "Id": 586, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2016-03-08T11:28:19", + "TransactionId": 95398727, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 379, + "CustomerInfo": 95883325, + "PaymentType": "Credit Card" + }, + { + "Id": 587, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2019-02-01T19:23:23", + "TransactionId": 23813530, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 545, + "CustomerInfo": 19413402, + "PaymentType": "Credit Card" + }, + { + "Id": 588, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2017-03-26T07:47:43", + "TransactionId": 64173831, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 605, + "CustomerInfo": 76235076, + "PaymentType": "Cash" + }, + { + "Id": 589, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2019-02-16T17:26:27", + "TransactionId": 85705660, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 959, + "CustomerInfo": 62433306, + "PaymentType": "Debit Card" + }, + { + "Id": 590, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-03-23T08:06:09", + "TransactionId": 18284449, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 80620195, + "PaymentType": "Debit Card" + }, + { + "Id": 591, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-03-29T07:59:23", + "TransactionId": 19799655, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 244, + "CustomerInfo": 34613409, + "PaymentType": "Cash" + }, + { + "Id": 592, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2019-10-17T18:20:01", + "TransactionId": 71924550, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 286, + "CustomerInfo": 98255975, + "PaymentType": "Debit Card" + }, + { + "Id": 593, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-04-22T08:44:10", + "TransactionId": 90889641, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 279, + "CustomerInfo": 44444589, + "PaymentType": "Cash" + }, + { + "Id": 594, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-11-22T08:50:56", + "TransactionId": 75000457, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 312, + "CustomerInfo": 74543836, + "PaymentType": "Cash" + }, + { + "Id": 595, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2018-12-06T18:18:35", + "TransactionId": 6957831, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 821, + "CustomerInfo": 48247596, + "PaymentType": "Cash" + }, + { + "Id": 596, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2016-10-27T07:42:23", + "TransactionId": 35593211, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 847, + "CustomerInfo": 10470619, + "PaymentType": "Cash" + }, + { + "Id": 597, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2017-07-21T14:15:39", + "TransactionId": 88893256, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 59, + "CustomerInfo": 17902484, + "PaymentType": "Cash" + }, + { + "Id": 598, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2016-02-08T19:50:53", + "TransactionId": 25801462, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 849, + "CustomerInfo": 89841417, + "PaymentType": "Debit Card" + }, + { + "Id": 599, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-12-26T15:59:11", + "TransactionId": 24749680, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 715, + "CustomerInfo": 46148074, + "PaymentType": "Debit Card" + }, + { + "Id": 600, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2018-10-19T13:30:00", + "TransactionId": 6332491, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 289, + "CustomerInfo": 18154055, + "PaymentType": "Debit Card" + }, + { + "Id": 601, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2019-10-30T15:34:51", + "TransactionId": 35550681, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 86823372, + "PaymentType": "Credit Card" + }, + { + "Id": 602, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-08-01T07:02:04", + "TransactionId": 54447533, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 819, + "CustomerInfo": 31110663, + "PaymentType": "Debit Card" + }, + { + "Id": 603, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2016-02-18T08:28:28", + "TransactionId": 49986184, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 608, + "CustomerInfo": 12930958, + "PaymentType": "Credit Card" + }, + { + "Id": 604, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2016-12-30T11:15:04", + "TransactionId": 57515904, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 201, + "CustomerInfo": 97819920, + "PaymentType": "Cash" + }, + { + "Id": 605, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-04-14T08:19:15", + "TransactionId": 71738258, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 894, + "CustomerInfo": 239607, + "PaymentType": "Debit Card" + }, + { + "Id": 606, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2016-10-09T10:01:12", + "TransactionId": 72031854, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 903, + "CustomerInfo": 36536746, + "PaymentType": "Cash" + }, + { + "Id": 607, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2016-04-03T13:26:59", + "TransactionId": 81290919, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 248, + "CustomerInfo": 80443290, + "PaymentType": "Credit Card" + }, + { + "Id": 608, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2017-06-21T18:47:48", + "TransactionId": 76171570, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 899, + "CustomerInfo": 24365873, + "PaymentType": "Credit Card" + }, + { + "Id": 609, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-03-11T13:30:52", + "TransactionId": 12771613, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 63, + "CustomerInfo": 54886706, + "PaymentType": "Debit Card" + }, + { + "Id": 610, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-03-31T17:55:49", + "TransactionId": 36137185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 557, + "CustomerInfo": 81163763, + "PaymentType": "Debit Card" + }, + { + "Id": 611, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2016-11-07T19:48:35", + "TransactionId": 23463783, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 194, + "CustomerInfo": 7693942, + "PaymentType": "Cash" + }, + { + "Id": 612, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-02-09T15:03:27", + "TransactionId": 13018495, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 291, + "CustomerInfo": 16485288, + "PaymentType": "Cash" + }, + { + "Id": 613, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2018-12-16T12:36:00", + "TransactionId": 14214102, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 472, + "CustomerInfo": 53464343, + "PaymentType": "Credit Card" + }, + { + "Id": 614, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-06-23T12:08:38", + "TransactionId": 36884800, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 850, + "CustomerInfo": 53448414, + "PaymentType": "Cash" + }, + { + "Id": 615, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-02-06T14:19:49", + "TransactionId": 77326674, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 839, + "CustomerInfo": 90041110, + "PaymentType": "Debit Card" + }, + { + "Id": 616, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-11-25T18:19:35", + "TransactionId": 93731462, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 59904900, + "PaymentType": "Credit Card" + }, + { + "Id": 617, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2019-10-30T16:31:18", + "TransactionId": 79754638, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 675, + "CustomerInfo": 25664409, + "PaymentType": "Debit Card" + }, + { + "Id": 618, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-04-18T14:40:42", + "TransactionId": 84370349, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 28092895, + "PaymentType": "Debit Card" + }, + { + "Id": 619, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-05-16T16:56:04", + "TransactionId": 17041210, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 195, + "CustomerInfo": 32885326, + "PaymentType": "Credit Card" + }, + { + "Id": 620, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2019-06-24T09:33:33", + "TransactionId": 7857382, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 589, + "CustomerInfo": 48563109, + "PaymentType": "Cash" + }, + { + "Id": 621, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-08-04T10:35:11", + "TransactionId": 25441912, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 400, + "CustomerInfo": 39035614, + "PaymentType": "Debit Card" + }, + { + "Id": 622, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2018-06-11T07:06:58", + "TransactionId": 890066, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 616, + "CustomerInfo": 85511106, + "PaymentType": "Debit Card" + }, + { + "Id": 623, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-06-09T13:15:45", + "TransactionId": 66115789, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 843, + "CustomerInfo": 17366385, + "PaymentType": "Debit Card" + }, + { + "Id": 624, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2016-07-15T10:28:51", + "TransactionId": 83875986, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 157, + "CustomerInfo": 49589168, + "PaymentType": "Cash" + }, + { + "Id": 625, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2016-10-04T12:42:55", + "TransactionId": 49484068, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 218, + "CustomerInfo": 89612864, + "PaymentType": "Credit Card" + }, + { + "Id": 626, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-04-01T07:09:07", + "TransactionId": 38605651, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 606, + "CustomerInfo": 69477994, + "PaymentType": "Debit Card" + }, + { + "Id": 627, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-05-06T18:11:57", + "TransactionId": 13352912, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 542, + "CustomerInfo": 46527229, + "PaymentType": "Cash" + }, + { + "Id": 628, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2017-08-10T18:32:59", + "TransactionId": 84666111, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 485, + "CustomerInfo": 82595679, + "PaymentType": "Debit Card" + }, + { + "Id": 629, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-10-12T18:05:46", + "TransactionId": 60942946, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 569, + "CustomerInfo": 80221996, + "PaymentType": "Cash" + }, + { + "Id": 630, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-10-10T13:09:24", + "TransactionId": 58049779, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 417, + "CustomerInfo": 56661459, + "PaymentType": "Debit Card" + }, + { + "Id": 631, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-12-21T11:56:41", + "TransactionId": 76764371, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 898, + "CustomerInfo": 51084200, + "PaymentType": "Cash" + }, + { + "Id": 632, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-10-15T07:09:42", + "TransactionId": 52544423, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 78527994, + "PaymentType": "Debit Card" + }, + { + "Id": 633, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-08-28T10:25:58", + "TransactionId": 60092447, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 544, + "CustomerInfo": 80483525, + "PaymentType": "Debit Card" + }, + { + "Id": 634, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-03-08T09:08:56", + "TransactionId": 26388704, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 783, + "CustomerInfo": 24791668, + "PaymentType": "Cash" + }, + { + "Id": 635, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2016-11-16T07:07:24", + "TransactionId": 59882343, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 67, + "CustomerInfo": 22543112, + "PaymentType": "Credit Card" + }, + { + "Id": 636, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2017-07-04T11:48:46", + "TransactionId": 90223047, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 838, + "CustomerInfo": 31337239, + "PaymentType": "Debit Card" + }, + { + "Id": 637, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-07-15T18:06:20", + "TransactionId": 65992508, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 265, + "CustomerInfo": 67262841, + "PaymentType": "Debit Card" + }, + { + "Id": 638, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2019-08-10T14:12:29", + "TransactionId": 67674094, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 396, + "CustomerInfo": 92020488, + "PaymentType": "Debit Card" + }, + { + "Id": 639, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-12-10T10:58:39", + "TransactionId": 24963592, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 10881585, + "PaymentType": "Cash" + }, + { + "Id": 640, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2019-08-06T17:31:21", + "TransactionId": 96245435, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 965, + "CustomerInfo": 29596783, + "PaymentType": "Debit Card" + }, + { + "Id": 641, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2017-09-18T18:59:02", + "TransactionId": 78679771, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 466, + "CustomerInfo": 24038209, + "PaymentType": "Credit Card" + }, + { + "Id": 642, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2018-03-17T17:01:15", + "TransactionId": 69424903, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 233, + "CustomerInfo": 28119758, + "PaymentType": "Credit Card" + }, + { + "Id": 643, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-09-05T11:28:36", + "TransactionId": 54059559, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 799, + "CustomerInfo": 77873632, + "PaymentType": "Cash" + }, + { + "Id": 644, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2016-08-30T07:37:38", + "TransactionId": 10793387, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 312, + "CustomerInfo": 48116310, + "PaymentType": "Cash" + }, + { + "Id": 645, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2016-05-04T17:16:39", + "TransactionId": 24216133, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 704, + "CustomerInfo": 28650322, + "PaymentType": "Cash" + }, + { + "Id": 646, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2019-04-08T10:08:59", + "TransactionId": 28114014, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 113, + "CustomerInfo": 36149191, + "PaymentType": "Debit Card" + }, + { + "Id": 647, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-08-26T13:42:14", + "TransactionId": 41030130, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 903, + "CustomerInfo": 89993237, + "PaymentType": "Credit Card" + }, + { + "Id": 648, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2017-11-05T10:13:09", + "TransactionId": 89295525, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 432, + "CustomerInfo": 25414040, + "PaymentType": "Debit Card" + }, + { + "Id": 649, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2018-07-13T16:51:27", + "TransactionId": 71088382, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 176, + "CustomerInfo": 17244429, + "PaymentType": "Credit Card" + }, + { + "Id": 650, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2016-06-15T18:20:18", + "TransactionId": 23575623, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 852, + "CustomerInfo": 83320904, + "PaymentType": "Credit Card" + }, + { + "Id": 651, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-09-05T08:08:53", + "TransactionId": 47616879, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 941, + "CustomerInfo": 50985337, + "PaymentType": "Cash" + }, + { + "Id": 652, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2019-03-26T17:20:15", + "TransactionId": 31730592, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 749, + "CustomerInfo": 30418838, + "PaymentType": "Cash" + }, + { + "Id": 653, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-01-30T11:25:44", + "TransactionId": 24938142, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 5, + "CustomerInfo": 49649348, + "PaymentType": "Credit Card" + }, + { + "Id": 654, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-08-11T07:47:17", + "TransactionId": 8304911, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 143, + "CustomerInfo": 29669496, + "PaymentType": "Cash" + }, + { + "Id": 655, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2019-09-19T18:31:32", + "TransactionId": 83858949, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 72, + "CustomerInfo": 38188064, + "PaymentType": "Debit Card" + }, + { + "Id": 656, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-10-31T13:19:21", + "TransactionId": 82003510, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 264, + "CustomerInfo": 85611995, + "PaymentType": "Debit Card" + }, + { + "Id": 657, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-06-16T13:29:43", + "TransactionId": 83658935, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 852, + "CustomerInfo": 80675875, + "PaymentType": "Credit Card" + }, + { + "Id": 658, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2018-09-22T09:57:36", + "TransactionId": 16979146, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 915, + "CustomerInfo": 30792754, + "PaymentType": "Debit Card" + }, + { + "Id": 659, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-05-04T07:37:03", + "TransactionId": 48277748, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 846, + "CustomerInfo": 11985752, + "PaymentType": "Debit Card" + }, + { + "Id": 660, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2019-08-04T07:49:44", + "TransactionId": 80807472, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 86, + "CustomerInfo": 46228365, + "PaymentType": "Cash" + }, + { + "Id": 661, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2019-07-31T13:52:45", + "TransactionId": 40078974, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 641, + "CustomerInfo": 69482374, + "PaymentType": "Credit Card" + }, + { + "Id": 662, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-09-26T11:32:21", + "TransactionId": 82544462, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 518, + "CustomerInfo": 966357, + "PaymentType": "Cash" + }, + { + "Id": 663, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-02-10T16:58:48", + "TransactionId": 77891396, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 557, + "CustomerInfo": 16921409, + "PaymentType": "Cash" + }, + { + "Id": 664, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2017-05-31T15:40:45", + "TransactionId": 13356810, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 163, + "CustomerInfo": 9664577, + "PaymentType": "Debit Card" + }, + { + "Id": 665, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-08-27T19:39:39", + "TransactionId": 4506633, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 88898756, + "PaymentType": "Credit Card" + }, + { + "Id": 666, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-04-03T14:49:12", + "TransactionId": 48568576, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 75168125, + "PaymentType": "Credit Card" + }, + { + "Id": 667, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-05-30T13:16:11", + "TransactionId": 40429917, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 946, + "CustomerInfo": 67541442, + "PaymentType": "Cash" + }, + { + "Id": 668, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-04-08T12:24:37", + "TransactionId": 80574837, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 955, + "CustomerInfo": 10681152, + "PaymentType": "Debit Card" + }, + { + "Id": 669, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2019-03-19T18:12:40", + "TransactionId": 85850706, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 115, + "CustomerInfo": 30582283, + "PaymentType": "Cash" + }, + { + "Id": 670, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2017-07-25T12:13:41", + "TransactionId": 12483849, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 240, + "CustomerInfo": 91227843, + "PaymentType": "Cash" + }, + { + "Id": 671, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-07-04T17:05:25", + "TransactionId": 52245000, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 76322241, + "PaymentType": "Credit Card" + }, + { + "Id": 672, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2016-10-25T08:30:20", + "TransactionId": 46619931, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 727, + "CustomerInfo": 27695428, + "PaymentType": "Debit Card" + }, + { + "Id": 673, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2016-12-11T16:18:12", + "TransactionId": 54597915, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 637, + "CustomerInfo": 45557902, + "PaymentType": "Credit Card" + }, + { + "Id": 674, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2018-09-22T12:55:00", + "TransactionId": 84444323, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 663, + "CustomerInfo": 79581432, + "PaymentType": "Credit Card" + }, + { + "Id": 675, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-07-25T14:43:26", + "TransactionId": 25845700, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 632, + "CustomerInfo": 18193804, + "PaymentType": "Credit Card" + }, + { + "Id": 676, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-09-22T12:26:04", + "TransactionId": 86976152, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 236, + "CustomerInfo": 63022776, + "PaymentType": "Credit Card" + }, + { + "Id": 677, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-05-10T08:22:25", + "TransactionId": 60359831, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 63253325, + "PaymentType": "Credit Card" + }, + { + "Id": 678, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-06-30T14:46:28", + "TransactionId": 27594352, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 44692227, + "PaymentType": "Cash" + }, + { + "Id": 679, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-11-01T16:24:49", + "TransactionId": 5348313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 568, + "CustomerInfo": 88126538, + "PaymentType": "Credit Card" + }, + { + "Id": 680, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2018-05-07T16:09:42", + "TransactionId": 6418363, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 461, + "CustomerInfo": 87490818, + "PaymentType": "Debit Card" + }, + { + "Id": 681, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-10-03T16:38:38", + "TransactionId": 14428079, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 659, + "CustomerInfo": 49147235, + "PaymentType": "Credit Card" + }, + { + "Id": 682, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-05-25T12:21:01", + "TransactionId": 60793368, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 514, + "CustomerInfo": 36959634, + "PaymentType": "Debit Card" + }, + { + "Id": 683, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-01-05T13:05:23", + "TransactionId": 62254436, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 615, + "CustomerInfo": 2870106, + "PaymentType": "Credit Card" + }, + { + "Id": 684, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2019-11-24T08:53:05", + "TransactionId": 66271188, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 864, + "CustomerInfo": 75116763, + "PaymentType": "Credit Card" + }, + { + "Id": 685, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2016-07-22T09:45:13", + "TransactionId": 1815330, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 265, + "CustomerInfo": 62861746, + "PaymentType": "Debit Card" + }, + { + "Id": 686, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2017-07-19T11:34:57", + "TransactionId": 70557625, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 5, + "CustomerInfo": 23217218, + "PaymentType": "Credit Card" + }, + { + "Id": 687, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2016-12-18T14:25:35", + "TransactionId": 74165588, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 700, + "CustomerInfo": 92204094, + "PaymentType": "Cash" + }, + { + "Id": 688, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2016-11-06T09:39:01", + "TransactionId": 7319188, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 809, + "CustomerInfo": 62197948, + "PaymentType": "Credit Card" + }, + { + "Id": 689, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-11-17T14:13:21", + "TransactionId": 66890417, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 765, + "CustomerInfo": 90462376, + "PaymentType": "Credit Card" + }, + { + "Id": 690, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2019-01-29T09:55:35", + "TransactionId": 62460546, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 603, + "CustomerInfo": 60615049, + "PaymentType": "Cash" + }, + { + "Id": 691, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-12-06T16:58:31", + "TransactionId": 75100686, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 676, + "CustomerInfo": 53047598, + "PaymentType": "Cash" + }, + { + "Id": 692, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-01-12T13:29:00", + "TransactionId": 3049366, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 143, + "CustomerInfo": 46685678, + "PaymentType": "Credit Card" + }, + { + "Id": 693, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-01-20T17:49:03", + "TransactionId": 97065471, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 522, + "CustomerInfo": 56567645, + "PaymentType": "Debit Card" + }, + { + "Id": 694, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-04-06T16:52:19", + "TransactionId": 33010141, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 15, + "CustomerInfo": 44417097, + "PaymentType": "Credit Card" + }, + { + "Id": 695, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2018-08-03T14:27:53", + "TransactionId": 65996587, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 848, + "CustomerInfo": 72080848, + "PaymentType": "Credit Card" + }, + { + "Id": 696, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-02-21T11:09:45", + "TransactionId": 32190974, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 108, + "CustomerInfo": 61723925, + "PaymentType": "Cash" + }, + { + "Id": 697, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2016-10-25T11:59:51", + "TransactionId": 40891893, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 500, + "CustomerInfo": 27155494, + "PaymentType": "Credit Card" + }, + { + "Id": 698, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-09-14T09:37:09", + "TransactionId": 66225512, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 282, + "CustomerInfo": 70724109, + "PaymentType": "Credit Card" + }, + { + "Id": 699, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-08-15T18:36:43", + "TransactionId": 62212954, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 495, + "CustomerInfo": 22637432, + "PaymentType": "Debit Card" + }, + { + "Id": 700, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2016-02-24T10:09:07", + "TransactionId": 99574912, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 381, + "CustomerInfo": 34108534, + "PaymentType": "Cash" + }, + { + "Id": 701, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2019-05-14T17:14:04", + "TransactionId": 20759363, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 546, + "CustomerInfo": 75454599, + "PaymentType": "Debit Card" + }, + { + "Id": 702, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-03-16T13:32:18", + "TransactionId": 30847962, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 134, + "CustomerInfo": 44997639, + "PaymentType": "Credit Card" + }, + { + "Id": 703, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2019-03-04T16:59:57", + "TransactionId": 44947526, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 20315107, + "PaymentType": "Cash" + }, + { + "Id": 704, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2016-09-30T08:39:33", + "TransactionId": 61394822, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 378, + "CustomerInfo": 76390562, + "PaymentType": "Debit Card" + }, + { + "Id": 705, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2019-10-28T10:35:37", + "TransactionId": 90160387, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 407, + "CustomerInfo": 88097741, + "PaymentType": "Debit Card" + }, + { + "Id": 706, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2016-03-29T10:27:24", + "TransactionId": 29507291, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 622, + "CustomerInfo": 70822111, + "PaymentType": "Cash" + }, + { + "Id": 707, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2016-11-26T13:35:20", + "TransactionId": 66032683, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 752, + "CustomerInfo": 95510196, + "PaymentType": "Credit Card" + }, + { + "Id": 708, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-04-19T15:51:07", + "TransactionId": 65444175, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 325, + "CustomerInfo": 14481960, + "PaymentType": "Credit Card" + }, + { + "Id": 709, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2017-07-26T19:29:34", + "TransactionId": 81744636, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 811, + "CustomerInfo": 4534632, + "PaymentType": "Debit Card" + }, + { + "Id": 710, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2017-12-14T10:18:46", + "TransactionId": 79766034, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 488, + "CustomerInfo": 97105733, + "PaymentType": "Credit Card" + }, + { + "Id": 711, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-05-23T11:22:51", + "TransactionId": 32106360, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 730, + "CustomerInfo": 16750122, + "PaymentType": "Credit Card" + }, + { + "Id": 712, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2017-05-27T11:26:27", + "TransactionId": 43143915, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 582, + "CustomerInfo": 50660677, + "PaymentType": "Cash" + }, + { + "Id": 713, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2018-10-11T15:53:34", + "TransactionId": 61702074, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 167, + "CustomerInfo": 50692308, + "PaymentType": "Debit Card" + }, + { + "Id": 714, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2017-01-17T18:53:08", + "TransactionId": 4517631, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 437, + "CustomerInfo": 25545817, + "PaymentType": "Credit Card" + }, + { + "Id": 715, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2018-08-20T18:06:12", + "TransactionId": 49257938, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 651, + "CustomerInfo": 41719893, + "PaymentType": "Cash" + }, + { + "Id": 716, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2019-03-16T08:06:26", + "TransactionId": 95862829, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 644, + "CustomerInfo": 53041106, + "PaymentType": "Credit Card" + }, + { + "Id": 717, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-09-04T13:45:24", + "TransactionId": 32749188, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 581, + "CustomerInfo": 26952115, + "PaymentType": "Credit Card" + }, + { + "Id": 718, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-08-31T15:14:41", + "TransactionId": 76812740, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 953, + "CustomerInfo": 38714990, + "PaymentType": "Credit Card" + }, + { + "Id": 719, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2017-02-07T15:15:42", + "TransactionId": 18196258, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 2, + "CustomerInfo": 27373846, + "PaymentType": "Debit Card" + }, + { + "Id": 720, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-11-23T08:08:36", + "TransactionId": 2584108, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 387, + "CustomerInfo": 11654545, + "PaymentType": "Credit Card" + }, + { + "Id": 721, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2017-01-21T14:30:20", + "TransactionId": 85749356, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 673, + "CustomerInfo": 70440095, + "PaymentType": "Credit Card" + }, + { + "Id": 722, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2018-02-22T09:26:21", + "TransactionId": 13988859, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 722, + "CustomerInfo": 65493019, + "PaymentType": "Cash" + }, + { + "Id": 723, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-12-24T16:08:07", + "TransactionId": 50189516, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 177, + "CustomerInfo": 73690793, + "PaymentType": "Credit Card" + }, + { + "Id": 724, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2019-06-11T12:54:43", + "TransactionId": 60554653, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 819, + "CustomerInfo": 23538706, + "PaymentType": "Cash" + }, + { + "Id": 725, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2019-05-01T17:06:09", + "TransactionId": 1303553, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 705, + "CustomerInfo": 37392873, + "PaymentType": "Debit Card" + }, + { + "Id": 726, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-02-15T12:41:54", + "TransactionId": 89636565, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 989, + "CustomerInfo": 63289214, + "PaymentType": "Debit Card" + }, + { + "Id": 727, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2016-04-27T15:17:51", + "TransactionId": 97906528, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 929, + "CustomerInfo": 24939427, + "PaymentType": "Debit Card" + }, + { + "Id": 728, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2018-12-01T19:05:48", + "TransactionId": 70274998, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 664, + "CustomerInfo": 92026363, + "PaymentType": "Cash" + }, + { + "Id": 729, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-10-03T07:38:21", + "TransactionId": 76064249, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 98, + "CustomerInfo": 44937538, + "PaymentType": "Cash" + }, + { + "Id": 730, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-02-08T17:55:41", + "TransactionId": 63473084, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 391, + "CustomerInfo": 81637928, + "PaymentType": "Credit Card" + }, + { + "Id": 731, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2017-08-07T09:52:51", + "TransactionId": 45616458, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 245, + "CustomerInfo": 64482423, + "PaymentType": "Debit Card" + }, + { + "Id": 732, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-07-11T17:23:51", + "TransactionId": 81962005, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 654, + "CustomerInfo": 6818687, + "PaymentType": "Credit Card" + }, + { + "Id": 733, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2017-10-20T08:50:04", + "TransactionId": 10500686, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 158, + "CustomerInfo": 29056168, + "PaymentType": "Debit Card" + }, + { + "Id": 734, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-12-09T09:27:48", + "TransactionId": 43036882, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 10494804, + "PaymentType": "Credit Card" + }, + { + "Id": 735, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2017-05-08T18:38:18", + "TransactionId": 43939569, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 810, + "CustomerInfo": 3088828, + "PaymentType": "Debit Card" + }, + { + "Id": 736, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2016-03-14T16:23:05", + "TransactionId": 26152233, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 774, + "CustomerInfo": 20802267, + "PaymentType": "Cash" + }, + { + "Id": 737, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2019-04-30T19:39:48", + "TransactionId": 51387836, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 120, + "CustomerInfo": 2428022, + "PaymentType": "Credit Card" + }, + { + "Id": 738, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-05-31T17:32:04", + "TransactionId": 34230196, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 590, + "CustomerInfo": 12720652, + "PaymentType": "Cash" + }, + { + "Id": 739, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2016-03-04T14:22:51", + "TransactionId": 82709988, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 379, + "CustomerInfo": 79242987, + "PaymentType": "Debit Card" + }, + { + "Id": 740, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-01-22T12:07:12", + "TransactionId": 46964842, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 213, + "CustomerInfo": 45959088, + "PaymentType": "Cash" + }, + { + "Id": 741, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2018-01-02T17:48:37", + "TransactionId": 7131602, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 413, + "CustomerInfo": 79060794, + "PaymentType": "Debit Card" + }, + { + "Id": 742, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2017-05-28T18:23:20", + "TransactionId": 89986837, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 207, + "CustomerInfo": 33986584, + "PaymentType": "Credit Card" + }, + { + "Id": 743, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-05-24T17:41:34", + "TransactionId": 84672613, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 56, + "CustomerInfo": 92031278, + "PaymentType": "Credit Card" + }, + { + "Id": 744, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2019-10-17T18:55:35", + "TransactionId": 72204351, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 521, + "CustomerInfo": 32447976, + "PaymentType": "Cash" + }, + { + "Id": 745, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2018-09-27T18:44:21", + "TransactionId": 9582190, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 608, + "CustomerInfo": 51223622, + "PaymentType": "Credit Card" + }, + { + "Id": 746, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-05-31T14:37:15", + "TransactionId": 21592528, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 3, + "CustomerInfo": 96482306, + "PaymentType": "Cash" + }, + { + "Id": 747, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-07-09T07:51:36", + "TransactionId": 99717518, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 323, + "CustomerInfo": 64102187, + "PaymentType": "Cash" + }, + { + "Id": 748, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2017-08-02T11:36:49", + "TransactionId": 45990010, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 138, + "CustomerInfo": 28025655, + "PaymentType": "Debit Card" + }, + { + "Id": 749, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-07-25T16:30:35", + "TransactionId": 10526925, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 823, + "CustomerInfo": 47567962, + "PaymentType": "Debit Card" + }, + { + "Id": 750, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-04-16T18:41:37", + "TransactionId": 72820547, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 999, + "CustomerInfo": 6902984, + "PaymentType": "Cash" + }, + { + "Id": 751, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2018-04-23T18:26:12", + "TransactionId": 50992590, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 667, + "CustomerInfo": 20669638, + "PaymentType": "Cash" + }, + { + "Id": 752, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-08-08T19:51:27", + "TransactionId": 206573, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 247, + "CustomerInfo": 28596273, + "PaymentType": "Debit Card" + }, + { + "Id": 753, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2016-01-08T11:45:45", + "TransactionId": 15370323, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 71605207, + "PaymentType": "Credit Card" + }, + { + "Id": 754, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-11-19T10:49:52", + "TransactionId": 94370158, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 212, + "CustomerInfo": 29547617, + "PaymentType": "Credit Card" + }, + { + "Id": 755, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2016-02-07T09:31:15", + "TransactionId": 24887234, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 37, + "CustomerInfo": 56193573, + "PaymentType": "Cash" + }, + { + "Id": 756, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-03-27T16:42:32", + "TransactionId": 42136840, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 213, + "CustomerInfo": 83439904, + "PaymentType": "Credit Card" + }, + { + "Id": 757, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2018-02-08T07:54:55", + "TransactionId": 44224396, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 114, + "CustomerInfo": 13525388, + "PaymentType": "Cash" + }, + { + "Id": 758, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-01-12T09:01:44", + "TransactionId": 54032405, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 458, + "CustomerInfo": 43959461, + "PaymentType": "Cash" + }, + { + "Id": 759, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2017-08-01T12:27:56", + "TransactionId": 32391908, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 873, + "CustomerInfo": 92745281, + "PaymentType": "Debit Card" + }, + { + "Id": 760, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-03-18T07:28:25", + "TransactionId": 67255518, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 161, + "CustomerInfo": 43452499, + "PaymentType": "Debit Card" + }, + { + "Id": 761, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-05-04T10:50:18", + "TransactionId": 2358625, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 95, + "CustomerInfo": 7599879, + "PaymentType": "Credit Card" + }, + { + "Id": 762, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-06-22T12:04:36", + "TransactionId": 50059645, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 569, + "CustomerInfo": 43657384, + "PaymentType": "Cash" + }, + { + "Id": 763, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2018-07-01T09:26:38", + "TransactionId": 18198986, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 970, + "CustomerInfo": 89659909, + "PaymentType": "Debit Card" + }, + { + "Id": 764, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-10-18T07:34:54", + "TransactionId": 85669375, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 73242357, + "PaymentType": "Cash" + }, + { + "Id": 765, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2019-01-30T14:45:36", + "TransactionId": 57796931, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 515, + "CustomerInfo": 67527891, + "PaymentType": "Cash" + }, + { + "Id": 766, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-03-09T14:32:04", + "TransactionId": 84073337, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 202, + "CustomerInfo": 6828506, + "PaymentType": "Credit Card" + }, + { + "Id": 767, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2019-03-29T08:41:34", + "TransactionId": 70731104, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 616, + "CustomerInfo": 52783109, + "PaymentType": "Debit Card" + }, + { + "Id": 768, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2017-01-05T16:12:43", + "TransactionId": 72104355, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 576, + "CustomerInfo": 77144001, + "PaymentType": "Debit Card" + }, + { + "Id": 769, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2017-05-30T15:25:47", + "TransactionId": 59873777, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 291, + "CustomerInfo": 79649340, + "PaymentType": "Debit Card" + }, + { + "Id": 770, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-05-28T12:14:24", + "TransactionId": 77122405, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 490, + "CustomerInfo": 13097135, + "PaymentType": "Debit Card" + }, + { + "Id": 771, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2018-12-25T08:13:38", + "TransactionId": 80827670, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 606, + "CustomerInfo": 20701079, + "PaymentType": "Credit Card" + }, + { + "Id": 772, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-08-16T16:41:14", + "TransactionId": 54106321, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 459, + "CustomerInfo": 66262215, + "PaymentType": "Credit Card" + }, + { + "Id": 773, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2016-03-27T13:35:20", + "TransactionId": 89701323, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 65561411, + "PaymentType": "Credit Card" + }, + { + "Id": 774, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-02-08T11:21:59", + "TransactionId": 58984516, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 281, + "CustomerInfo": 15497401, + "PaymentType": "Cash" + }, + { + "Id": 775, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-06-19T11:14:12", + "TransactionId": 56256141, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 145, + "CustomerInfo": 38009347, + "PaymentType": "Cash" + }, + { + "Id": 776, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2018-03-30T11:50:04", + "TransactionId": 89134392, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 492, + "CustomerInfo": 25729052, + "PaymentType": "Debit Card" + }, + { + "Id": 777, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-04-02T19:54:29", + "TransactionId": 54958687, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 74, + "CustomerInfo": 95971624, + "PaymentType": "Credit Card" + }, + { + "Id": 778, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2016-01-01T07:31:35", + "TransactionId": 85390803, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 523, + "CustomerInfo": 45096648, + "PaymentType": "Credit Card" + }, + { + "Id": 779, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2016-03-18T14:01:15", + "TransactionId": 81921587, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 364, + "CustomerInfo": 70701306, + "PaymentType": "Credit Card" + }, + { + "Id": 780, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2017-03-14T11:41:00", + "TransactionId": 20241171, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 372, + "CustomerInfo": 93601030, + "PaymentType": "Debit Card" + }, + { + "Id": 781, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2019-09-16T18:24:29", + "TransactionId": 91872049, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 22, + "CustomerInfo": 64462738, + "PaymentType": "Credit Card" + }, + { + "Id": 782, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-04-27T11:56:41", + "TransactionId": 32432539, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 920, + "CustomerInfo": 7333658, + "PaymentType": "Credit Card" + }, + { + "Id": 783, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2019-01-08T18:24:55", + "TransactionId": 68377377, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 122, + "CustomerInfo": 58419661, + "PaymentType": "Cash" + }, + { + "Id": 784, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2019-03-29T18:04:19", + "TransactionId": 41781076, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 290, + "CustomerInfo": 28788534, + "PaymentType": "Debit Card" + }, + { + "Id": 785, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2019-03-03T14:24:09", + "TransactionId": 52744096, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 378, + "CustomerInfo": 4247236, + "PaymentType": "Credit Card" + }, + { + "Id": 786, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-04-14T17:33:13", + "TransactionId": 3480405, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 613, + "CustomerInfo": 58510481, + "PaymentType": "Cash" + }, + { + "Id": 787, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2016-08-27T13:14:01", + "TransactionId": 83915584, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 481, + "CustomerInfo": 62955587, + "PaymentType": "Debit Card" + }, + { + "Id": 788, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2018-11-07T18:04:28", + "TransactionId": 20700041, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 832, + "CustomerInfo": 67914406, + "PaymentType": "Cash" + }, + { + "Id": 789, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2019-09-29T19:32:01", + "TransactionId": 91704001, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 391, + "CustomerInfo": 90843986, + "PaymentType": "Cash" + }, + { + "Id": 790, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2018-03-12T13:01:29", + "TransactionId": 19880002, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 62, + "CustomerInfo": 20132684, + "PaymentType": "Credit Card" + }, + { + "Id": 791, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2016-06-04T10:47:25", + "TransactionId": 21888112, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 948, + "CustomerInfo": 92406026, + "PaymentType": "Credit Card" + }, + { + "Id": 792, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-10-01T14:46:28", + "TransactionId": 11653496, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 132, + "CustomerInfo": 7767976, + "PaymentType": "Cash" + }, + { + "Id": 793, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2019-07-23T11:56:50", + "TransactionId": 2507978, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 644, + "CustomerInfo": 74218263, + "PaymentType": "Cash" + }, + { + "Id": 794, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-05-31T08:26:27", + "TransactionId": 30621987, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 594, + "CustomerInfo": 35286490, + "PaymentType": "Credit Card" + }, + { + "Id": 795, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-10-20T08:05:34", + "TransactionId": 57458581, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 411, + "CustomerInfo": 49450126, + "PaymentType": "Credit Card" + }, + { + "Id": 796, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2018-01-12T19:15:45", + "TransactionId": 27344693, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 690, + "CustomerInfo": 21536900, + "PaymentType": "Debit Card" + }, + { + "Id": 797, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-01-15T11:56:41", + "TransactionId": 64898779, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 454, + "CustomerInfo": 19111615, + "PaymentType": "Debit Card" + }, + { + "Id": 798, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2018-03-23T11:33:56", + "TransactionId": 2659921, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 943, + "CustomerInfo": 30356334, + "PaymentType": "Debit Card" + }, + { + "Id": 799, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-11-25T09:27:22", + "TransactionId": 61856354, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 161, + "CustomerInfo": 59449777, + "PaymentType": "Credit Card" + }, + { + "Id": 800, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-12-09T19:17:37", + "TransactionId": 63908477, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 526, + "CustomerInfo": 83083305, + "PaymentType": "Debit Card" + }, + { + "Id": 801, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-09-09T18:45:30", + "TransactionId": 31271461, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 772, + "CustomerInfo": 91459208, + "PaymentType": "Cash" + }, + { + "Id": 802, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-08-14T08:03:42", + "TransactionId": 62321972, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 401, + "CustomerInfo": 95921486, + "PaymentType": "Debit Card" + }, + { + "Id": 803, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2018-09-05T07:08:41", + "TransactionId": 9619522, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 304, + "CustomerInfo": 96406106, + "PaymentType": "Debit Card" + }, + { + "Id": 804, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2017-02-11T13:35:37", + "TransactionId": 53499993, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 45, + "CustomerInfo": 99446662, + "PaymentType": "Debit Card" + }, + { + "Id": 805, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2019-05-23T15:26:12", + "TransactionId": 89750757, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 687, + "CustomerInfo": 33986493, + "PaymentType": "Cash" + }, + { + "Id": 806, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-04-09T10:15:27", + "TransactionId": 52251503, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 781, + "CustomerInfo": 77480383, + "PaymentType": "Cash" + }, + { + "Id": 807, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2017-07-28T08:31:21", + "TransactionId": 93416016, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 743, + "CustomerInfo": 2261219, + "PaymentType": "Debit Card" + }, + { + "Id": 808, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2018-01-30T07:04:39", + "TransactionId": 32616182, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 930, + "CustomerInfo": 71953866, + "PaymentType": "Debit Card" + }, + { + "Id": 809, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-06-02T07:15:27", + "TransactionId": 18786483, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 557, + "CustomerInfo": 48784692, + "PaymentType": "Credit Card" + }, + { + "Id": 810, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2018-08-01T07:53:37", + "TransactionId": 92938350, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 307, + "CustomerInfo": 83650697, + "PaymentType": "Credit Card" + }, + { + "Id": 811, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2017-05-29T17:09:36", + "TransactionId": 20745421, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 596, + "CustomerInfo": 71818606, + "PaymentType": "Cash" + }, + { + "Id": 812, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-04-18T11:36:49", + "TransactionId": 54992263, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 436, + "CustomerInfo": 65183588, + "PaymentType": "Cash" + }, + { + "Id": 813, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2016-10-18T19:24:23", + "TransactionId": 4294311, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 998, + "CustomerInfo": 11575842, + "PaymentType": "Credit Card" + }, + { + "Id": 814, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-12-18T13:26:33", + "TransactionId": 28380676, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 87769178, + "PaymentType": "Cash" + }, + { + "Id": 815, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-09-27T09:16:42", + "TransactionId": 36309179, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 951, + "CustomerInfo": 36876892, + "PaymentType": "Credit Card" + }, + { + "Id": 816, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2018-11-24T09:06:29", + "TransactionId": 91975446, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 698, + "CustomerInfo": 4180915, + "PaymentType": "Cash" + }, + { + "Id": 817, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-10-22T10:22:05", + "TransactionId": 19752633, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 4, + "CustomerInfo": 64331168, + "PaymentType": "Debit Card" + }, + { + "Id": 818, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-08-19T17:43:09", + "TransactionId": 5628421, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 886, + "CustomerInfo": 45539189, + "PaymentType": "Debit Card" + }, + { + "Id": 819, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2017-06-28T19:39:56", + "TransactionId": 6340298, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 346, + "CustomerInfo": 60042368, + "PaymentType": "Debit Card" + }, + { + "Id": 820, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2019-11-27T16:03:30", + "TransactionId": 46941368, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 53, + "CustomerInfo": 43462226, + "PaymentType": "Debit Card" + }, + { + "Id": 821, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2018-01-02T18:58:02", + "TransactionId": 82370961, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 22, + "CustomerInfo": 17084645, + "PaymentType": "Cash" + }, + { + "Id": 822, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2017-07-25T11:50:47", + "TransactionId": 83516787, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 201, + "CustomerInfo": 73603862, + "PaymentType": "Cash" + }, + { + "Id": 823, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2016-02-19T09:17:08", + "TransactionId": 94538661, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 168, + "CustomerInfo": 8813469, + "PaymentType": "Debit Card" + }, + { + "Id": 824, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-12-30T15:14:07", + "TransactionId": 61675373, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 383, + "CustomerInfo": 81987518, + "PaymentType": "Credit Card" + }, + { + "Id": 825, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-01-15T10:54:20", + "TransactionId": 72337225, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 657, + "CustomerInfo": 41637416, + "PaymentType": "Debit Card" + }, + { + "Id": 826, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-11-18T07:43:24", + "TransactionId": 55826851, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 683, + "CustomerInfo": 82108621, + "PaymentType": "Cash" + }, + { + "Id": 827, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2017-06-02T07:14:53", + "TransactionId": 24658102, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 95327606, + "PaymentType": "Debit Card" + }, + { + "Id": 828, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-11-13T19:48:09", + "TransactionId": 38604635, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 955, + "CustomerInfo": 36321198, + "PaymentType": "Debit Card" + }, + { + "Id": 829, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-12-17T11:07:44", + "TransactionId": 4938394, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 249, + "CustomerInfo": 75604323, + "PaymentType": "Credit Card" + }, + { + "Id": 830, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2017-11-18T16:09:59", + "TransactionId": 55705741, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 530, + "CustomerInfo": 11576301, + "PaymentType": "Credit Card" + }, + { + "Id": 831, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-02-03T12:34:08", + "TransactionId": 12233010, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 828, + "CustomerInfo": 96035542, + "PaymentType": "Credit Card" + }, + { + "Id": 832, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-02-11T17:24:35", + "TransactionId": 48215054, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 997, + "CustomerInfo": 4411902, + "PaymentType": "Cash" + }, + { + "Id": 833, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-09-10T10:55:55", + "TransactionId": 87904445, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 794, + "CustomerInfo": 52136322, + "PaymentType": "Cash" + }, + { + "Id": 834, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2019-09-11T17:00:40", + "TransactionId": 30340087, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 711, + "CustomerInfo": 30675985, + "PaymentType": "Debit Card" + }, + { + "Id": 835, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-02-22T08:18:23", + "TransactionId": 1570498, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 671, + "CustomerInfo": 75997350, + "PaymentType": "Credit Card" + }, + { + "Id": 836, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2016-03-11T14:03:07", + "TransactionId": 65024896, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 513, + "CustomerInfo": 43223506, + "PaymentType": "Cash" + }, + { + "Id": 837, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-06-16T12:58:54", + "TransactionId": 83032092, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 177, + "CustomerInfo": 8742738, + "PaymentType": "Cash" + }, + { + "Id": 838, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-09-25T19:49:44", + "TransactionId": 30134975, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 191, + "CustomerInfo": 77338823, + "PaymentType": "Debit Card" + }, + { + "Id": 839, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2019-02-26T11:08:01", + "TransactionId": 10921883, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 649, + "CustomerInfo": 91405482, + "PaymentType": "Cash" + }, + { + "Id": 840, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2018-10-18T16:24:06", + "TransactionId": 61036345, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 272, + "CustomerInfo": 45340041, + "PaymentType": "Debit Card" + }, + { + "Id": 841, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-08-08T10:33:27", + "TransactionId": 17931994, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 156, + "CustomerInfo": 58005556, + "PaymentType": "Credit Card" + }, + { + "Id": 842, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2016-03-24T17:21:24", + "TransactionId": 63688393, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 104, + "CustomerInfo": 64874701, + "PaymentType": "Debit Card" + }, + { + "Id": 843, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2018-03-14T10:19:29", + "TransactionId": 69572809, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 558, + "CustomerInfo": 33287367, + "PaymentType": "Debit Card" + }, + { + "Id": 844, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-11-30T18:15:07", + "TransactionId": 99772060, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 955, + "CustomerInfo": 13864462, + "PaymentType": "Credit Card" + }, + { + "Id": 845, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2019-07-03T12:57:45", + "TransactionId": 7588326, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 405, + "CustomerInfo": 18703070, + "PaymentType": "Debit Card" + }, + { + "Id": 846, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-06-19T16:03:04", + "TransactionId": 39608669, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 188, + "CustomerInfo": 89078996, + "PaymentType": "Cash" + }, + { + "Id": 847, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-05-17T11:49:47", + "TransactionId": 73575677, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 309, + "CustomerInfo": 37906446, + "PaymentType": "Credit Card" + }, + { + "Id": 848, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2018-02-01T10:08:50", + "TransactionId": 19047538, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 83, + "CustomerInfo": 17395482, + "PaymentType": "Cash" + }, + { + "Id": 849, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-05-18T18:42:12", + "TransactionId": 15702721, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 707, + "CustomerInfo": 18140891, + "PaymentType": "Cash" + }, + { + "Id": 850, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-11-05T13:42:49", + "TransactionId": 7680009, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 330, + "CustomerInfo": 46317605, + "PaymentType": "Credit Card" + }, + { + "Id": 851, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-03-25T12:26:38", + "TransactionId": 71431769, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 917, + "CustomerInfo": 40012885, + "PaymentType": "Cash" + }, + { + "Id": 852, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2017-02-16T19:05:05", + "TransactionId": 35562849, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 186, + "CustomerInfo": 75919878, + "PaymentType": "Cash" + }, + { + "Id": 853, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-05-03T15:04:28", + "TransactionId": 36996197, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 338, + "CustomerInfo": 68491349, + "PaymentType": "Cash" + }, + { + "Id": 854, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-11-26T08:45:45", + "TransactionId": 459783, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 259, + "CustomerInfo": 5161496, + "PaymentType": "Debit Card" + }, + { + "Id": 855, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2018-09-18T07:07:32", + "TransactionId": 54015146, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 663, + "CustomerInfo": 55516635, + "PaymentType": "Cash" + }, + { + "Id": 856, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-07-20T17:24:17", + "TransactionId": 55069514, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 946, + "CustomerInfo": 5503471, + "PaymentType": "Credit Card" + }, + { + "Id": 857, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2017-01-28T10:55:55", + "TransactionId": 65724103, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 32, + "CustomerInfo": 92882255, + "PaymentType": "Credit Card" + }, + { + "Id": 858, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-08-22T11:54:23", + "TransactionId": 14299963, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 349, + "CustomerInfo": 68316207, + "PaymentType": "Credit Card" + }, + { + "Id": 859, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2017-02-24T12:45:13", + "TransactionId": 6358792, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 717, + "CustomerInfo": 42924096, + "PaymentType": "Cash" + }, + { + "Id": 860, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-06-11T08:27:45", + "TransactionId": 67386498, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 420, + "CustomerInfo": 61591, + "PaymentType": "Credit Card" + }, + { + "Id": 861, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2016-08-29T16:49:09", + "TransactionId": 80186663, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 757, + "CustomerInfo": 54081114, + "PaymentType": "Debit Card" + }, + { + "Id": 862, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2019-05-17T09:33:50", + "TransactionId": 23114789, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 745, + "CustomerInfo": 88090339, + "PaymentType": "Debit Card" + }, + { + "Id": 863, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2018-03-15T10:32:01", + "TransactionId": 23646071, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 749, + "CustomerInfo": 79698911, + "PaymentType": "Debit Card" + }, + { + "Id": 864, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-11-15T13:22:39", + "TransactionId": 52961184, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 893, + "CustomerInfo": 61812341, + "PaymentType": "Cash" + }, + { + "Id": 865, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-05-13T18:26:56", + "TransactionId": 34528691, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 750, + "CustomerInfo": 40962124, + "PaymentType": "Debit Card" + }, + { + "Id": 866, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2017-01-17T10:06:14", + "TransactionId": 92007545, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 847, + "CustomerInfo": 57764744, + "PaymentType": "Debit Card" + }, + { + "Id": 867, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2018-09-20T10:46:25", + "TransactionId": 50591588, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 456, + "CustomerInfo": 51402012, + "PaymentType": "Debit Card" + }, + { + "Id": 868, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2019-09-29T07:54:46", + "TransactionId": 86963923, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 968, + "CustomerInfo": 25643062, + "PaymentType": "Credit Card" + }, + { + "Id": 869, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2016-05-06T11:23:34", + "TransactionId": 17132018, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 92, + "CustomerInfo": 14373390, + "PaymentType": "Debit Card" + }, + { + "Id": 870, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2017-02-15T11:47:28", + "TransactionId": 95869977, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 760, + "CustomerInfo": 96482218, + "PaymentType": "Debit Card" + }, + { + "Id": 871, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2017-05-26T19:58:57", + "TransactionId": 34760406, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 18, + "CustomerInfo": 734144, + "PaymentType": "Cash" + }, + { + "Id": 872, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2016-06-16T17:00:40", + "TransactionId": 58736680, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 708, + "CustomerInfo": 25748278, + "PaymentType": "Cash" + }, + { + "Id": 873, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-10-20T11:09:45", + "TransactionId": 96255890, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 232, + "CustomerInfo": 8817860, + "PaymentType": "Credit Card" + }, + { + "Id": 874, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2016-08-04T18:08:12", + "TransactionId": 85970326, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 130, + "CustomerInfo": 6957424, + "PaymentType": "Debit Card" + }, + { + "Id": 875, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-09-20T09:11:48", + "TransactionId": 86220850, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 458, + "CustomerInfo": 6727286, + "PaymentType": "Debit Card" + }, + { + "Id": 876, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2019-01-20T11:26:27", + "TransactionId": 49382875, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 219, + "CustomerInfo": 3422834, + "PaymentType": "Credit Card" + }, + { + "Id": 877, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2016-07-29T14:22:51", + "TransactionId": 70399545, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 453, + "CustomerInfo": 73359308, + "PaymentType": "Debit Card" + }, + { + "Id": 878, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2017-05-15T19:58:57", + "TransactionId": 56836530, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 984, + "CustomerInfo": 22922067, + "PaymentType": "Credit Card" + }, + { + "Id": 879, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2019-05-02T08:55:15", + "TransactionId": 46477680, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 266, + "CustomerInfo": 50214041, + "PaymentType": "Debit Card" + }, + { + "Id": 880, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2018-03-16T07:06:58", + "TransactionId": 43448849, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 50, + "CustomerInfo": 67987654, + "PaymentType": "Debit Card" + }, + { + "Id": 881, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2018-12-07T12:25:55", + "TransactionId": 66243388, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 494, + "CustomerInfo": 31589251, + "PaymentType": "Credit Card" + }, + { + "Id": 882, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-08-22T17:36:58", + "TransactionId": 14649263, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 245, + "CustomerInfo": 14302438, + "PaymentType": "Credit Card" + }, + { + "Id": 883, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2018-02-08T17:50:04", + "TransactionId": 79051585, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 880, + "CustomerInfo": 30220545, + "PaymentType": "Cash" + }, + { + "Id": 884, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2019-05-15T17:44:01", + "TransactionId": 45019126, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 762, + "CustomerInfo": 42045087, + "PaymentType": "Credit Card" + }, + { + "Id": 885, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2018-05-14T15:10:05", + "TransactionId": 84987982, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 309, + "CustomerInfo": 68115560, + "PaymentType": "Credit Card" + }, + { + "Id": 886, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2019-05-04T13:59:40", + "TransactionId": 69652933, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 10157418, + "PaymentType": "Cash" + }, + { + "Id": 887, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-08-28T13:22:22", + "TransactionId": 45424182, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 266, + "CustomerInfo": 47957567, + "PaymentType": "Debit Card" + }, + { + "Id": 888, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-05-14T10:30:35", + "TransactionId": 56381842, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 745, + "CustomerInfo": 47480536, + "PaymentType": "Credit Card" + }, + { + "Id": 889, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2016-06-26T07:16:19", + "TransactionId": 35127502, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 809, + "CustomerInfo": 62492206, + "PaymentType": "Debit Card" + }, + { + "Id": 890, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2018-09-20T07:32:18", + "TransactionId": 42437438, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 399, + "CustomerInfo": 53801774, + "PaymentType": "Cash" + }, + { + "Id": 891, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2016-02-15T13:15:01", + "TransactionId": 17604287, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 33220899, + "PaymentType": "Cash" + }, + { + "Id": 892, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-11-18T13:34:02", + "TransactionId": 60035320, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 491, + "CustomerInfo": 66434297, + "PaymentType": "Debit Card" + }, + { + "Id": 893, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-05-07T09:36:52", + "TransactionId": 74005640, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 853, + "CustomerInfo": 92434478, + "PaymentType": "Debit Card" + }, + { + "Id": 894, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2017-01-18T11:32:56", + "TransactionId": 89154922, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 37, + "CustomerInfo": 21501597, + "PaymentType": "Credit Card" + }, + { + "Id": 895, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-03-29T09:40:11", + "TransactionId": 44626935, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 341, + "CustomerInfo": 57906539, + "PaymentType": "Debit Card" + }, + { + "Id": 896, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-09-13T10:09:42", + "TransactionId": 13221956, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 664, + "CustomerInfo": 27724017, + "PaymentType": "Credit Card" + }, + { + "Id": 897, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-06-19T17:53:31", + "TransactionId": 18104241, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 375, + "CustomerInfo": 81465509, + "PaymentType": "Debit Card" + }, + { + "Id": 898, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2017-03-25T19:32:10", + "TransactionId": 61349787, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 670, + "CustomerInfo": 15470782, + "PaymentType": "Debit Card" + }, + { + "Id": 899, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2016-12-02T16:22:48", + "TransactionId": 41514481, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 379, + "CustomerInfo": 84040205, + "PaymentType": "Cash" + }, + { + "Id": 900, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2016-01-08T13:01:21", + "TransactionId": 36399650, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 515, + "CustomerInfo": 58638822, + "PaymentType": "Debit Card" + }, + { + "Id": 901, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-03-07T15:10:31", + "TransactionId": 29613912, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 825, + "CustomerInfo": 64531518, + "PaymentType": "Debit Card" + }, + { + "Id": 902, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2017-10-11T13:43:58", + "TransactionId": 45650763, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 681, + "CustomerInfo": 99249133, + "PaymentType": "Debit Card" + }, + { + "Id": 903, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2018-10-25T09:50:50", + "TransactionId": 41210039, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 376, + "CustomerInfo": 47172627, + "PaymentType": "Debit Card" + }, + { + "Id": 904, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-07-13T17:22:51", + "TransactionId": 38798376, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 501, + "CustomerInfo": 78258199, + "PaymentType": "Debit Card" + }, + { + "Id": 905, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2019-03-09T19:44:07", + "TransactionId": 81716556, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 264, + "CustomerInfo": 99597505, + "PaymentType": "Credit Card" + }, + { + "Id": 906, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2019-01-17T19:31:35", + "TransactionId": 460323, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 173, + "CustomerInfo": 8602461, + "PaymentType": "Cash" + }, + { + "Id": 907, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-10-26T17:58:34", + "TransactionId": 68824086, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 586, + "CustomerInfo": 64107927, + "PaymentType": "Debit Card" + }, + { + "Id": 908, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2016-10-15T09:02:27", + "TransactionId": 71381930, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 12, + "CustomerInfo": 67033711, + "PaymentType": "Cash" + }, + { + "Id": 909, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-07-12T17:29:28", + "TransactionId": 66882618, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 888, + "CustomerInfo": 43364106, + "PaymentType": "Debit Card" + }, + { + "Id": 910, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2019-09-26T07:04:05", + "TransactionId": 72748436, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 801, + "CustomerInfo": 45070697, + "PaymentType": "Credit Card" + }, + { + "Id": 911, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2016-09-05T12:40:19", + "TransactionId": 2622121, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 804, + "CustomerInfo": 76158679, + "PaymentType": "Credit Card" + }, + { + "Id": 912, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-06-04T07:05:48", + "TransactionId": 6272677, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 635, + "CustomerInfo": 63899578, + "PaymentType": "Cash" + }, + { + "Id": 913, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2018-07-24T13:50:27", + "TransactionId": 42335694, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 996, + "CustomerInfo": 21834654, + "PaymentType": "Cash" + }, + { + "Id": 914, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-01-25T15:59:54", + "TransactionId": 22931697, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 61, + "CustomerInfo": 59828522, + "PaymentType": "Credit Card" + }, + { + "Id": 915, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2018-07-02T16:36:29", + "TransactionId": 58557295, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 779, + "CustomerInfo": 96448733, + "PaymentType": "Credit Card" + }, + { + "Id": 916, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2018-02-24T14:51:30", + "TransactionId": 42822010, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 767, + "CustomerInfo": 75932446, + "PaymentType": "Credit Card" + }, + { + "Id": 917, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2017-10-25T15:34:34", + "TransactionId": 71292846, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 172, + "CustomerInfo": 17094456, + "PaymentType": "Credit Card" + }, + { + "Id": 918, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2016-05-19T12:24:12", + "TransactionId": 47227756, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 879, + "CustomerInfo": 76039217, + "PaymentType": "Cash" + }, + { + "Id": 919, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2016-11-13T09:08:04", + "TransactionId": 91537025, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 806, + "CustomerInfo": 34120271, + "PaymentType": "Credit Card" + }, + { + "Id": 920, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-03-16T19:27:24", + "TransactionId": 80488627, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 203, + "CustomerInfo": 12623770, + "PaymentType": "Credit Card" + }, + { + "Id": 921, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-05-11T13:34:11", + "TransactionId": 93123963, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 518, + "CustomerInfo": 63862850, + "PaymentType": "Cash" + }, + { + "Id": 922, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2016-02-15T07:29:51", + "TransactionId": 30708762, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 471, + "CustomerInfo": 29527995, + "PaymentType": "Credit Card" + }, + { + "Id": 923, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-05-13T10:30:52", + "TransactionId": 87511659, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 381, + "CustomerInfo": 31223851, + "PaymentType": "Debit Card" + }, + { + "Id": 924, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-01-28T14:18:49", + "TransactionId": 59561268, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 18, + "CustomerInfo": 45302700, + "PaymentType": "Credit Card" + }, + { + "Id": 925, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-08-26T12:40:19", + "TransactionId": 86144491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 881, + "CustomerInfo": 44650666, + "PaymentType": "Debit Card" + }, + { + "Id": 926, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2016-05-12T13:52:19", + "TransactionId": 83038074, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 873, + "CustomerInfo": 56492512, + "PaymentType": "Cash" + }, + { + "Id": 927, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-04-08T17:14:30", + "TransactionId": 99479800, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 924, + "CustomerInfo": 54487645, + "PaymentType": "Debit Card" + }, + { + "Id": 928, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2016-10-20T18:35:08", + "TransactionId": 94873601, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 334, + "CustomerInfo": 83253225, + "PaymentType": "Debit Card" + }, + { + "Id": 929, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2017-07-11T12:51:16", + "TransactionId": 64608192, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 70637804, + "PaymentType": "Credit Card" + }, + { + "Id": 930, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2017-06-01T16:13:52", + "TransactionId": 74141627, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 27, + "CustomerInfo": 90023054, + "PaymentType": "Cash" + }, + { + "Id": 931, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-03-24T18:22:28", + "TransactionId": 40623894, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 111, + "CustomerInfo": 90287094, + "PaymentType": "Credit Card" + }, + { + "Id": 932, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2019-10-19T15:14:15", + "TransactionId": 36642374, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 867, + "CustomerInfo": 14307444, + "PaymentType": "Cash" + }, + { + "Id": 933, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-01-28T19:18:12", + "TransactionId": 47339753, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 351, + "CustomerInfo": 12661711, + "PaymentType": "Cash" + }, + { + "Id": 934, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-03-19T11:36:06", + "TransactionId": 24559551, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 975, + "CustomerInfo": 96263900, + "PaymentType": "Debit Card" + }, + { + "Id": 935, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2016-09-17T12:16:16", + "TransactionId": 71452951, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 12508207, + "PaymentType": "Credit Card" + }, + { + "Id": 936, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2017-09-12T07:34:19", + "TransactionId": 87092216, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 820, + "CustomerInfo": 47305658, + "PaymentType": "Debit Card" + }, + { + "Id": 937, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-05-24T19:34:02", + "TransactionId": 28888984, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 466, + "CustomerInfo": 19209177, + "PaymentType": "Debit Card" + }, + { + "Id": 938, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2019-04-16T09:50:59", + "TransactionId": 89977310, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 452, + "CustomerInfo": 23868919, + "PaymentType": "Credit Card" + }, + { + "Id": 939, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-02-09T13:29:34", + "TransactionId": 1728568, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 206, + "CustomerInfo": 16091465, + "PaymentType": "Cash" + }, + { + "Id": 940, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-09-14T16:44:07", + "TransactionId": 8634567, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 322, + "CustomerInfo": 21153959, + "PaymentType": "Debit Card" + }, + { + "Id": 941, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2017-04-20T16:22:39", + "TransactionId": 45630748, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 334, + "CustomerInfo": 66295805, + "PaymentType": "Cash" + }, + { + "Id": 942, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2019-01-27T16:27:16", + "TransactionId": 50840978, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 294, + "CustomerInfo": 34195877, + "PaymentType": "Cash" + }, + { + "Id": 943, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-09-12T16:29:25", + "TransactionId": 98106952, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 934, + "CustomerInfo": 38399694, + "PaymentType": "Credit Card" + }, + { + "Id": 944, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2016-06-16T19:37:03", + "TransactionId": 25131359, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 189, + "CustomerInfo": 78388520, + "PaymentType": "Cash" + }, + { + "Id": 945, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-06-07T17:02:15", + "TransactionId": 20476199, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 707, + "CustomerInfo": 80681209, + "PaymentType": "Credit Card" + }, + { + "Id": 946, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-01-31T07:17:28", + "TransactionId": 39129657, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 564, + "CustomerInfo": 11595630, + "PaymentType": "Credit Card" + }, + { + "Id": 947, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-01-12T15:33:16", + "TransactionId": 22603720, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 455, + "CustomerInfo": 56559277, + "PaymentType": "Debit Card" + }, + { + "Id": 948, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-12-28T15:00:17", + "TransactionId": 84623889, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 743, + "CustomerInfo": 40798018, + "PaymentType": "Credit Card" + }, + { + "Id": 949, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-12-09T17:31:47", + "TransactionId": 90444864, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 510, + "CustomerInfo": 75521734, + "PaymentType": "Debit Card" + }, + { + "Id": 950, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2019-08-09T17:08:36", + "TransactionId": 59607263, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 158, + "CustomerInfo": 96615023, + "PaymentType": "Debit Card" + }, + { + "Id": 951, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2017-12-17T10:35:37", + "TransactionId": 41109871, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 720, + "CustomerInfo": 8653127, + "PaymentType": "Debit Card" + }, + { + "Id": 952, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2016-10-14T12:30:14", + "TransactionId": 2766547, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 602, + "CustomerInfo": 13253727, + "PaymentType": "Cash" + }, + { + "Id": 953, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2018-03-15T19:24:58", + "TransactionId": 9042659, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 45685374, + "PaymentType": "Credit Card" + }, + { + "Id": 954, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2016-06-16T13:28:34", + "TransactionId": 55211259, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 271, + "CustomerInfo": 43383485, + "PaymentType": "Debit Card" + }, + { + "Id": 955, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2018-07-26T07:12:09", + "TransactionId": 42252914, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 739, + "CustomerInfo": 37154191, + "PaymentType": "Debit Card" + }, + { + "Id": 956, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2016-02-13T13:04:39", + "TransactionId": 76635788, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 287, + "CustomerInfo": 96035392, + "PaymentType": "Cash" + }, + { + "Id": 957, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2018-12-10T10:17:54", + "TransactionId": 23865608, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 26, + "CustomerInfo": 90336269, + "PaymentType": "Cash" + }, + { + "Id": 958, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-06-19T11:33:22", + "TransactionId": 71143868, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 436, + "CustomerInfo": 23174738, + "PaymentType": "Cash" + }, + { + "Id": 959, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-11-19T14:26:36", + "TransactionId": 45882968, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 732, + "CustomerInfo": 43824484, + "PaymentType": "Credit Card" + }, + { + "Id": 960, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2018-06-07T15:10:31", + "TransactionId": 56639357, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 35, + "CustomerInfo": 20791303, + "PaymentType": "Credit Card" + }, + { + "Id": 961, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-03-20T18:08:21", + "TransactionId": 30687753, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 615, + "CustomerInfo": 73952087, + "PaymentType": "Cash" + }, + { + "Id": 962, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2019-12-14T13:47:51", + "TransactionId": 89526445, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 431, + "CustomerInfo": 49003851, + "PaymentType": "Cash" + }, + { + "Id": 963, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2017-08-29T11:12:03", + "TransactionId": 7267596, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 395, + "CustomerInfo": 8885471, + "PaymentType": "Cash" + }, + { + "Id": 964, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2018-03-07T12:01:09", + "TransactionId": 5223720, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 174, + "CustomerInfo": 55278373, + "PaymentType": "Debit Card" + }, + { + "Id": 965, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2019-03-06T10:41:40", + "TransactionId": 88018416, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 145, + "CustomerInfo": 1627480, + "PaymentType": "Debit Card" + }, + { + "Id": 966, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2017-10-20T07:08:59", + "TransactionId": 11946845, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 31855356, + "PaymentType": "Credit Card" + }, + { + "Id": 967, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2018-12-31T18:29:57", + "TransactionId": 32866341, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 594, + "CustomerInfo": 57727217, + "PaymentType": "Debit Card" + }, + { + "Id": 968, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-03-21T18:50:41", + "TransactionId": 9742160, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 610, + "CustomerInfo": 81687632, + "PaymentType": "Debit Card" + }, + { + "Id": 969, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2018-03-22T11:27:10", + "TransactionId": 55273838, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 938, + "CustomerInfo": 21993207, + "PaymentType": "Credit Card" + }, + { + "Id": 970, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-11-24T19:57:30", + "TransactionId": 58041595, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 682, + "CustomerInfo": 58155944, + "PaymentType": "Debit Card" + }, + { + "Id": 971, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2018-02-07T12:07:38", + "TransactionId": 34991287, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 14, + "CustomerInfo": 40777738, + "PaymentType": "Cash" + }, + { + "Id": 972, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2017-05-04T14:00:14", + "TransactionId": 68495815, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 870, + "CustomerInfo": 60674017, + "PaymentType": "Credit Card" + }, + { + "Id": 973, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-06-23T16:12:35", + "TransactionId": 47276484, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 150, + "CustomerInfo": 61361245, + "PaymentType": "Cash" + }, + { + "Id": 974, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2017-08-31T14:31:03", + "TransactionId": 57812969, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 357, + "CustomerInfo": 364215, + "PaymentType": "Credit Card" + }, + { + "Id": 975, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2019-09-26T08:05:17", + "TransactionId": 75646810, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 716, + "CustomerInfo": 95266850, + "PaymentType": "Credit Card" + }, + { + "Id": 976, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-07-07T15:18:26", + "TransactionId": 69603909, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 988, + "CustomerInfo": 2520840, + "PaymentType": "Credit Card" + }, + { + "Id": 977, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2018-12-08T17:52:57", + "TransactionId": 17937992, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 984, + "CustomerInfo": 66629941, + "PaymentType": "Cash" + }, + { + "Id": 978, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2017-11-16T13:01:47", + "TransactionId": 34204070, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 168, + "CustomerInfo": 81550687, + "PaymentType": "Debit Card" + }, + { + "Id": 979, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-02-02T11:00:49", + "TransactionId": 65193609, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 12, + "CustomerInfo": 1079865, + "PaymentType": "Debit Card" + }, + { + "Id": 980, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-02-07T16:06:40", + "TransactionId": 85085907, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 315, + "CustomerInfo": 40219931, + "PaymentType": "Credit Card" + }, + { + "Id": 981, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2017-09-30T15:57:53", + "TransactionId": 60252548, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 197, + "CustomerInfo": 18115786, + "PaymentType": "Credit Card" + }, + { + "Id": 982, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-11-29T10:30:43", + "TransactionId": 74389195, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 68034634, + "PaymentType": "Debit Card" + }, + { + "Id": 983, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2018-07-25T09:28:39", + "TransactionId": 57929140, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 503, + "CustomerInfo": 70203977, + "PaymentType": "Credit Card" + }, + { + "Id": 984, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2017-03-16T12:36:17", + "TransactionId": 2410476, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 800, + "CustomerInfo": 88074296, + "PaymentType": "Cash" + }, + { + "Id": 985, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2017-08-22T17:00:06", + "TransactionId": 73808567, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 123, + "CustomerInfo": 90258904, + "PaymentType": "Debit Card" + }, + { + "Id": 986, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2017-08-24T09:40:11", + "TransactionId": 84110017, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 91366189, + "PaymentType": "Cash" + }, + { + "Id": 987, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2018-05-05T19:59:57", + "TransactionId": 67385735, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 512, + "CustomerInfo": 13474633, + "PaymentType": "Debit Card" + }, + { + "Id": 988, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-01-28T18:58:45", + "TransactionId": 51887590, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 987, + "CustomerInfo": 76765821, + "PaymentType": "Debit Card" + }, + { + "Id": 989, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-01-13T17:57:50", + "TransactionId": 70947037, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 620, + "CustomerInfo": 81158606, + "PaymentType": "Debit Card" + }, + { + "Id": 990, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2019-03-16T17:44:01", + "TransactionId": 25405199, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 289, + "CustomerInfo": 24525135, + "PaymentType": "Credit Card" + }, + { + "Id": 991, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2016-01-14T17:53:57", + "TransactionId": 51179258, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 961, + "CustomerInfo": 34457512, + "PaymentType": "Cash" + }, + { + "Id": 992, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2018-05-10T12:28:57", + "TransactionId": 73296442, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 424, + "CustomerInfo": 46090565, + "PaymentType": "Credit Card" + }, + { + "Id": 993, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2016-09-21T10:03:56", + "TransactionId": 9010618, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 61, + "CustomerInfo": 36330111, + "PaymentType": "Cash" + }, + { + "Id": 994, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-03-02T19:18:03", + "TransactionId": 43549080, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 491, + "CustomerInfo": 26101579, + "PaymentType": "Credit Card" + }, + { + "Id": 995, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-11-20T15:54:09", + "TransactionId": 77748751, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 705, + "CustomerInfo": 91141824, + "PaymentType": "Debit Card" + }, + { + "Id": 996, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-05-13T09:56:10", + "TransactionId": 80140268, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 471, + "CustomerInfo": 7931288, + "PaymentType": "Cash" + }, + { + "Id": 997, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2017-11-30T14:10:11", + "TransactionId": 93394749, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 298, + "CustomerInfo": 75180224, + "PaymentType": "Cash" + }, + { + "Id": 998, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2019-03-30T14:39:33", + "TransactionId": 84537194, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 864, + "CustomerInfo": 56288151, + "PaymentType": "Debit Card" + }, + { + "Id": 999, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2017-09-22T15:38:27", + "TransactionId": 77669957, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 23, + "CustomerInfo": 63002525, + "PaymentType": "Debit Card" + }, + { + "Id": 1000, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2019-03-02T11:12:12", + "TransactionId": 44408241, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 822, + "CustomerInfo": 88499021, + "PaymentType": "Debit Card" + }, + { + "Id": 1001, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2017-04-14T09:06:20", + "TransactionId": 11314036, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 444, + "CustomerInfo": 6010141, + "PaymentType": "Cash" + }, + { + "Id": 1002, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-11-21T07:21:22", + "TransactionId": 68274041, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 683, + "CustomerInfo": 48681878, + "PaymentType": "Credit Card" + }, + { + "Id": 1003, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2019-08-26T10:07:15", + "TransactionId": 16838043, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 434, + "CustomerInfo": 24728121, + "PaymentType": "Credit Card" + }, + { + "Id": 1004, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-05-11T11:01:24", + "TransactionId": 83707942, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 203, + "CustomerInfo": 26651568, + "PaymentType": "Cash" + }, + { + "Id": 1005, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-06-22T12:51:16", + "TransactionId": 53992246, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 441, + "CustomerInfo": 52468899, + "PaymentType": "Debit Card" + }, + { + "Id": 1006, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-11-18T12:33:50", + "TransactionId": 71239143, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 282, + "CustomerInfo": 47541812, + "PaymentType": "Credit Card" + }, + { + "Id": 1007, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-11-04T15:31:32", + "TransactionId": 62210301, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 72210780, + "PaymentType": "Debit Card" + }, + { + "Id": 1008, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2016-06-01T07:30:43", + "TransactionId": 18250887, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 524, + "CustomerInfo": 29934072, + "PaymentType": "Credit Card" + }, + { + "Id": 1009, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-10-12T10:17:28", + "TransactionId": 63267956, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 770, + "CustomerInfo": 32768090, + "PaymentType": "Cash" + }, + { + "Id": 1010, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2019-05-03T14:00:58", + "TransactionId": 51082946, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 59682690, + "PaymentType": "Cash" + }, + { + "Id": 1011, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-10-03T17:37:06", + "TransactionId": 29877458, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 146, + "CustomerInfo": 88449165, + "PaymentType": "Credit Card" + }, + { + "Id": 1012, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-06-11T10:33:53", + "TransactionId": 75883027, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 914, + "CustomerInfo": 86097934, + "PaymentType": "Debit Card" + }, + { + "Id": 1013, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-10-17T17:46:36", + "TransactionId": 22194896, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 259, + "CustomerInfo": 13944952, + "PaymentType": "Cash" + }, + { + "Id": 1014, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2016-09-08T08:43:44", + "TransactionId": 6926828, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 643, + "CustomerInfo": 17197134, + "PaymentType": "Credit Card" + }, + { + "Id": 1015, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2016-08-09T18:34:16", + "TransactionId": 79006728, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 314, + "CustomerInfo": 55915668, + "PaymentType": "Cash" + }, + { + "Id": 1016, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2016-02-01T07:38:21", + "TransactionId": 6074875, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 272, + "CustomerInfo": 49461756, + "PaymentType": "Credit Card" + }, + { + "Id": 1017, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2018-01-26T18:10:13", + "TransactionId": 13785777, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 461, + "CustomerInfo": 79339703, + "PaymentType": "Debit Card" + }, + { + "Id": 1018, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2016-12-08T14:56:24", + "TransactionId": 67807861, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 833, + "CustomerInfo": 48690837, + "PaymentType": "Credit Card" + }, + { + "Id": 1019, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2019-05-25T07:18:37", + "TransactionId": 79612959, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 109, + "CustomerInfo": 83999088, + "PaymentType": "Cash" + }, + { + "Id": 1020, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2018-03-06T13:38:38", + "TransactionId": 23743847, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 931, + "CustomerInfo": 77830461, + "PaymentType": "Debit Card" + }, + { + "Id": 1021, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-04-09T12:30:32", + "TransactionId": 70922875, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 71541722, + "PaymentType": "Cash" + }, + { + "Id": 1022, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-11-05T15:56:53", + "TransactionId": 29272291, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 134, + "CustomerInfo": 74084787, + "PaymentType": "Cash" + }, + { + "Id": 1023, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-05-16T15:12:32", + "TransactionId": 61332735, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 117, + "CustomerInfo": 24389580, + "PaymentType": "Cash" + }, + { + "Id": 1024, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2019-06-14T08:59:08", + "TransactionId": 66118155, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 792, + "CustomerInfo": 27327145, + "PaymentType": "Debit Card" + }, + { + "Id": 1025, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-07-14T08:02:50", + "TransactionId": 76260392, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 34, + "CustomerInfo": 77414248, + "PaymentType": "Cash" + }, + { + "Id": 1026, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2019-10-08T18:41:11", + "TransactionId": 47670880, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 553, + "CustomerInfo": 44290981, + "PaymentType": "Credit Card" + }, + { + "Id": 1027, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2017-02-02T12:48:06", + "TransactionId": 31384771, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 428, + "CustomerInfo": 95189422, + "PaymentType": "Credit Card" + }, + { + "Id": 1028, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-07-06T13:47:34", + "TransactionId": 22749890, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 780, + "CustomerInfo": 89437514, + "PaymentType": "Credit Card" + }, + { + "Id": 1029, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2019-02-03T15:06:12", + "TransactionId": 14145286, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 806, + "CustomerInfo": 58980095, + "PaymentType": "Cash" + }, + { + "Id": 1030, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2019-09-04T18:48:58", + "TransactionId": 61447510, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 236, + "CustomerInfo": 88460219, + "PaymentType": "Debit Card" + }, + { + "Id": 1031, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-07-18T15:20:18", + "TransactionId": 61218795, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 59484399, + "PaymentType": "Cash" + }, + { + "Id": 1032, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2016-08-24T19:43:15", + "TransactionId": 24337773, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 566, + "CustomerInfo": 17025955, + "PaymentType": "Cash" + }, + { + "Id": 1033, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2018-03-03T09:05:28", + "TransactionId": 57355123, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 886, + "CustomerInfo": 87899999, + "PaymentType": "Debit Card" + }, + { + "Id": 1034, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2017-06-04T08:23:00", + "TransactionId": 68433196, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 97, + "CustomerInfo": 95007394, + "PaymentType": "Credit Card" + }, + { + "Id": 1035, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2017-07-08T10:13:18", + "TransactionId": 28374503, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 745, + "CustomerInfo": 10224770, + "PaymentType": "Cash" + }, + { + "Id": 1036, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2018-11-26T16:11:00", + "TransactionId": 28214492, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 309, + "CustomerInfo": 331643, + "PaymentType": "Cash" + }, + { + "Id": 1037, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2018-06-29T07:07:24", + "TransactionId": 68387296, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 104, + "CustomerInfo": 69329059, + "PaymentType": "Credit Card" + }, + { + "Id": 1038, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2016-06-16T18:11:40", + "TransactionId": 25389666, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 413, + "CustomerInfo": 94703946, + "PaymentType": "Credit Card" + }, + { + "Id": 1039, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-03-25T18:53:34", + "TransactionId": 74624618, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 469, + "CustomerInfo": 43993792, + "PaymentType": "Credit Card" + }, + { + "Id": 1040, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-06-30T11:47:46", + "TransactionId": 51084918, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 302, + "CustomerInfo": 25367736, + "PaymentType": "Credit Card" + }, + { + "Id": 1041, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2018-08-04T11:59:17", + "TransactionId": 81565347, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 493, + "CustomerInfo": 73777536, + "PaymentType": "Cash" + }, + { + "Id": 1042, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2018-07-15T17:32:56", + "TransactionId": 49597094, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 184, + "CustomerInfo": 7739140, + "PaymentType": "Credit Card" + }, + { + "Id": 1043, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-09-02T18:48:58", + "TransactionId": 27243813, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 22687485, + "PaymentType": "Credit Card" + }, + { + "Id": 1044, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-06-01T07:23:40", + "TransactionId": 62710322, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 582, + "CustomerInfo": 71602823, + "PaymentType": "Credit Card" + }, + { + "Id": 1045, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-11-16T12:28:22", + "TransactionId": 53392928, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 853, + "CustomerInfo": 51264680, + "PaymentType": "Debit Card" + }, + { + "Id": 1046, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2016-06-28T17:33:13", + "TransactionId": 76371071, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 370, + "CustomerInfo": 22759124, + "PaymentType": "Cash" + }, + { + "Id": 1047, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-08-20T19:56:12", + "TransactionId": 90023021, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 673, + "CustomerInfo": 60810814, + "PaymentType": "Credit Card" + }, + { + "Id": 1048, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-11-02T17:16:31", + "TransactionId": 47410661, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 92, + "CustomerInfo": 87725379, + "PaymentType": "Debit Card" + }, + { + "Id": 1049, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2019-02-13T12:21:27", + "TransactionId": 36776171, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 294, + "CustomerInfo": 51187226, + "PaymentType": "Debit Card" + }, + { + "Id": 1050, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2019-04-09T16:50:53", + "TransactionId": 1258225, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 181, + "CustomerInfo": 97055670, + "PaymentType": "Cash" + }, + { + "Id": 1051, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2018-01-29T15:03:45", + "TransactionId": 96532726, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 125, + "CustomerInfo": 55417400, + "PaymentType": "Credit Card" + }, + { + "Id": 1052, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-12-31T17:51:30", + "TransactionId": 40461690, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 345, + "CustomerInfo": 69604180, + "PaymentType": "Credit Card" + }, + { + "Id": 1053, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2016-08-23T15:37:18", + "TransactionId": 44685438, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 919, + "CustomerInfo": 61924205, + "PaymentType": "Cash" + }, + { + "Id": 1054, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-01-07T19:04:13", + "TransactionId": 2657345, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 307, + "CustomerInfo": 72338328, + "PaymentType": "Debit Card" + }, + { + "Id": 1055, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2016-09-16T17:46:02", + "TransactionId": 79855556, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 737, + "CustomerInfo": 86972248, + "PaymentType": "Cash" + }, + { + "Id": 1056, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2016-11-19T08:23:17", + "TransactionId": 93178488, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 48, + "CustomerInfo": 92654737, + "PaymentType": "Debit Card" + }, + { + "Id": 1057, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-09-26T12:15:33", + "TransactionId": 19124180, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 60, + "CustomerInfo": 93865799, + "PaymentType": "Cash" + }, + { + "Id": 1058, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2019-08-15T16:44:33", + "TransactionId": 86990401, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 596, + "CustomerInfo": 23962784, + "PaymentType": "Credit Card" + }, + { + "Id": 1059, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2017-12-07T10:02:56", + "TransactionId": 31298975, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 219, + "CustomerInfo": 84914552, + "PaymentType": "Cash" + }, + { + "Id": 1060, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2019-06-04T07:29:00", + "TransactionId": 63065753, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 95339450, + "PaymentType": "Credit Card" + }, + { + "Id": 1061, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2019-08-11T16:02:12", + "TransactionId": 37723917, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 401, + "CustomerInfo": 30528224, + "PaymentType": "Cash" + }, + { + "Id": 1062, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-03-19T16:35:02", + "TransactionId": 28013940, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 20, + "CustomerInfo": 90809233, + "PaymentType": "Cash" + }, + { + "Id": 1063, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2017-06-12T14:31:12", + "TransactionId": 94027334, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 909, + "CustomerInfo": 55183523, + "PaymentType": "Debit Card" + }, + { + "Id": 1064, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2016-01-08T17:23:51", + "TransactionId": 41421287, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 103, + "CustomerInfo": 22075067, + "PaymentType": "Debit Card" + }, + { + "Id": 1065, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2018-05-05T17:25:52", + "TransactionId": 35276686, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 50, + "CustomerInfo": 60651443, + "PaymentType": "Debit Card" + }, + { + "Id": 1066, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2016-08-02T15:12:32", + "TransactionId": 66348941, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 57, + "CustomerInfo": 90600188, + "PaymentType": "Debit Card" + }, + { + "Id": 1067, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2018-09-15T07:05:57", + "TransactionId": 66053987, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 858, + "CustomerInfo": 98262554, + "PaymentType": "Credit Card" + }, + { + "Id": 1068, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-08-13T11:50:56", + "TransactionId": 22718517, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 64283660, + "PaymentType": "Debit Card" + }, + { + "Id": 1069, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2019-06-26T16:33:27", + "TransactionId": 21430465, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 799, + "CustomerInfo": 58515331, + "PaymentType": "Credit Card" + }, + { + "Id": 1070, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2017-11-04T08:46:36", + "TransactionId": 52692842, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 608, + "CustomerInfo": 34643309, + "PaymentType": "Credit Card" + }, + { + "Id": 1071, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2017-09-29T13:55:03", + "TransactionId": 80475148, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 722, + "CustomerInfo": 67745877, + "PaymentType": "Cash" + }, + { + "Id": 1072, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-09-22T08:33:56", + "TransactionId": 45435265, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 999, + "CustomerInfo": 46246225, + "PaymentType": "Credit Card" + }, + { + "Id": 1073, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-08-10T19:00:12", + "TransactionId": 53174984, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 204, + "CustomerInfo": 45181019, + "PaymentType": "Credit Card" + }, + { + "Id": 1074, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2017-06-03T11:26:27", + "TransactionId": 54338226, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 964, + "CustomerInfo": 88962407, + "PaymentType": "Cash" + }, + { + "Id": 1075, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2017-09-16T14:47:37", + "TransactionId": 77010878, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 878, + "CustomerInfo": 55263693, + "PaymentType": "Credit Card" + }, + { + "Id": 1076, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2019-04-28T08:53:23", + "TransactionId": 5405801, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 371, + "CustomerInfo": 73259819, + "PaymentType": "Cash" + }, + { + "Id": 1077, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2016-09-28T10:09:07", + "TransactionId": 55512929, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 418, + "CustomerInfo": 8130091, + "PaymentType": "Cash" + }, + { + "Id": 1078, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2019-08-17T17:55:58", + "TransactionId": 27951410, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 214, + "CustomerInfo": 17882732, + "PaymentType": "Cash" + }, + { + "Id": 1079, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-02-14T10:11:17", + "TransactionId": 93755929, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 82, + "CustomerInfo": 23993494, + "PaymentType": "Cash" + }, + { + "Id": 1080, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2016-07-10T07:47:00", + "TransactionId": 33871226, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 421, + "CustomerInfo": 81572406, + "PaymentType": "Credit Card" + }, + { + "Id": 1081, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2017-03-08T12:03:36", + "TransactionId": 74159337, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 563, + "CustomerInfo": 17642249, + "PaymentType": "Debit Card" + }, + { + "Id": 1082, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-04-04T13:50:53", + "TransactionId": 50152355, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 33, + "CustomerInfo": 25191723, + "PaymentType": "Credit Card" + }, + { + "Id": 1083, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2016-12-12T09:32:41", + "TransactionId": 1206706, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 776, + "CustomerInfo": 72226994, + "PaymentType": "Debit Card" + }, + { + "Id": 1084, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2019-01-14T10:32:27", + "TransactionId": 2560602, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 477, + "CustomerInfo": 2974245, + "PaymentType": "Credit Card" + }, + { + "Id": 1085, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-06-16T11:13:12", + "TransactionId": 66708217, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 969, + "CustomerInfo": 78710384, + "PaymentType": "Debit Card" + }, + { + "Id": 1086, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2019-06-02T14:57:07", + "TransactionId": 62744849, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 532, + "CustomerInfo": 69431854, + "PaymentType": "Cash" + }, + { + "Id": 1087, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-10-14T11:28:45", + "TransactionId": 25843010, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 623, + "CustomerInfo": 32917609, + "PaymentType": "Debit Card" + }, + { + "Id": 1088, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-07-28T08:23:25", + "TransactionId": 44972176, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 195, + "CustomerInfo": 12643165, + "PaymentType": "Credit Card" + }, + { + "Id": 1089, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-11-14T08:13:55", + "TransactionId": 55184768, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 872, + "CustomerInfo": 32622491, + "PaymentType": "Debit Card" + }, + { + "Id": 1090, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2016-10-18T18:08:30", + "TransactionId": 56011095, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 971, + "CustomerInfo": 68734929, + "PaymentType": "Credit Card" + }, + { + "Id": 1091, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2018-02-27T13:13:18", + "TransactionId": 14628828, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 96, + "CustomerInfo": 30004238, + "PaymentType": "Credit Card" + }, + { + "Id": 1092, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-01-28T11:28:28", + "TransactionId": 44114216, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 624, + "CustomerInfo": 73864351, + "PaymentType": "Credit Card" + }, + { + "Id": 1093, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-05-28T17:17:48", + "TransactionId": 70402029, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 30, + "CustomerInfo": 98215688, + "PaymentType": "Cash" + }, + { + "Id": 1094, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-08-17T10:35:20", + "TransactionId": 48630688, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 514, + "CustomerInfo": 64278463, + "PaymentType": "Cash" + }, + { + "Id": 1095, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-12-08T07:46:25", + "TransactionId": 84664565, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 906, + "CustomerInfo": 74509471, + "PaymentType": "Debit Card" + }, + { + "Id": 1096, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2019-10-22T08:49:03", + "TransactionId": 16944782, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 387, + "CustomerInfo": 1637966, + "PaymentType": "Credit Card" + }, + { + "Id": 1097, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2016-12-13T07:05:48", + "TransactionId": 43169720, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 135, + "CustomerInfo": 85414112, + "PaymentType": "Cash" + }, + { + "Id": 1098, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2017-04-12T13:19:55", + "TransactionId": 87800750, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 15, + "CustomerInfo": 65985219, + "PaymentType": "Debit Card" + }, + { + "Id": 1099, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2017-07-24T09:52:25", + "TransactionId": 19388393, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 512, + "CustomerInfo": 55527066, + "PaymentType": "Debit Card" + }, + { + "Id": 1100, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-01-03T17:27:27", + "TransactionId": 55251031, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 247, + "CustomerInfo": 41820493, + "PaymentType": "Cash" + }, + { + "Id": 1101, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-02-26T14:04:16", + "TransactionId": 17629191, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 67395150, + "PaymentType": "Credit Card" + }, + { + "Id": 1102, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-11-29T16:21:04", + "TransactionId": 7353978, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 455, + "CustomerInfo": 15765768, + "PaymentType": "Credit Card" + }, + { + "Id": 1103, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-11-18T17:26:36", + "TransactionId": 41468369, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 157, + "CustomerInfo": 38275275, + "PaymentType": "Cash" + }, + { + "Id": 1104, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2019-04-22T12:24:03", + "TransactionId": 69193237, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 474, + "CustomerInfo": 90869465, + "PaymentType": "Debit Card" + }, + { + "Id": 1105, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2019-07-26T19:30:09", + "TransactionId": 52492380, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 401, + "CustomerInfo": 92135861, + "PaymentType": "Cash" + }, + { + "Id": 1106, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-01-24T09:24:03", + "TransactionId": 72688100, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 985, + "CustomerInfo": 80037839, + "PaymentType": "Debit Card" + }, + { + "Id": 1107, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2019-04-24T19:08:59", + "TransactionId": 38302289, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 880, + "CustomerInfo": 67021468, + "PaymentType": "Credit Card" + }, + { + "Id": 1108, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-03-15T11:21:59", + "TransactionId": 13207388, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 68735876, + "PaymentType": "Credit Card" + }, + { + "Id": 1109, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2016-08-17T12:24:20", + "TransactionId": 56979596, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 253, + "CustomerInfo": 64635954, + "PaymentType": "Cash" + }, + { + "Id": 1110, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2017-09-07T10:00:03", + "TransactionId": 56888129, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 451, + "CustomerInfo": 72324423, + "PaymentType": "Credit Card" + }, + { + "Id": 1111, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-08-29T13:56:47", + "TransactionId": 15389981, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 318, + "CustomerInfo": 7608556, + "PaymentType": "Credit Card" + }, + { + "Id": 1112, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2016-11-06T12:54:26", + "TransactionId": 73931777, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 862, + "CustomerInfo": 16271787, + "PaymentType": "Credit Card" + }, + { + "Id": 1113, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2018-10-05T09:05:37", + "TransactionId": 43049766, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 386, + "CustomerInfo": 71175955, + "PaymentType": "Cash" + }, + { + "Id": 1114, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2016-05-17T10:36:46", + "TransactionId": 35240595, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 338, + "CustomerInfo": 65624944, + "PaymentType": "Debit Card" + }, + { + "Id": 1115, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2017-07-12T08:50:38", + "TransactionId": 89354293, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 532, + "CustomerInfo": 58675585, + "PaymentType": "Credit Card" + }, + { + "Id": 1116, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-06-02T12:15:33", + "TransactionId": 23631872, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 36, + "CustomerInfo": 13261326, + "PaymentType": "Cash" + }, + { + "Id": 1117, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-09-14T18:25:29", + "TransactionId": 40561335, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 558, + "CustomerInfo": 93160761, + "PaymentType": "Debit Card" + }, + { + "Id": 1118, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-08-12T07:03:56", + "TransactionId": 26065325, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 704, + "CustomerInfo": 71448640, + "PaymentType": "Cash" + }, + { + "Id": 1119, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-01-01T08:36:32", + "TransactionId": 32143118, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 922, + "CustomerInfo": 14973893, + "PaymentType": "Debit Card" + }, + { + "Id": 1120, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2019-09-22T10:37:03", + "TransactionId": 84493945, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 68839249, + "PaymentType": "Debit Card" + }, + { + "Id": 1121, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2019-01-23T10:09:16", + "TransactionId": 57574711, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 549, + "CustomerInfo": 72313726, + "PaymentType": "Credit Card" + }, + { + "Id": 1122, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-10-21T15:14:24", + "TransactionId": 6882242, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 44, + "CustomerInfo": 26779265, + "PaymentType": "Debit Card" + }, + { + "Id": 1123, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-04-15T07:18:55", + "TransactionId": 27373775, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 954, + "CustomerInfo": 42072303, + "PaymentType": "Credit Card" + }, + { + "Id": 1124, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2016-12-31T08:13:55", + "TransactionId": 17617910, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 835, + "CustomerInfo": 80418844, + "PaymentType": "Cash" + }, + { + "Id": 1125, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2016-01-08T18:41:46", + "TransactionId": 13999286, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 234, + "CustomerInfo": 68313657, + "PaymentType": "Cash" + }, + { + "Id": 1126, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2017-11-07T13:35:11", + "TransactionId": 69683946, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 734, + "CustomerInfo": 81794819, + "PaymentType": "Debit Card" + }, + { + "Id": 1127, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-07-01T07:13:00", + "TransactionId": 32120898, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 876, + "CustomerInfo": 80872597, + "PaymentType": "Credit Card" + }, + { + "Id": 1128, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-02-14T19:48:43", + "TransactionId": 8034283, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 689, + "CustomerInfo": 83221086, + "PaymentType": "Cash" + }, + { + "Id": 1129, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2017-02-05T17:20:50", + "TransactionId": 98094327, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 729, + "CustomerInfo": 70707170, + "PaymentType": "Credit Card" + }, + { + "Id": 1130, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-02-24T15:15:24", + "TransactionId": 87857484, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 638, + "CustomerInfo": 25733289, + "PaymentType": "Credit Card" + }, + { + "Id": 1131, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-11-06T10:40:39", + "TransactionId": 34159848, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 825, + "CustomerInfo": 71647076, + "PaymentType": "Cash" + }, + { + "Id": 1132, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2016-10-09T11:22:51", + "TransactionId": 37737680, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 426, + "CustomerInfo": 50300921, + "PaymentType": "Cash" + }, + { + "Id": 1133, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-10-26T17:16:48", + "TransactionId": 95294207, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 876, + "CustomerInfo": 62427777, + "PaymentType": "Cash" + }, + { + "Id": 1134, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-02-02T09:18:09", + "TransactionId": 72474730, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 413, + "CustomerInfo": 31308101, + "PaymentType": "Debit Card" + }, + { + "Id": 1135, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-02-15T16:54:29", + "TransactionId": 37235363, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 49, + "CustomerInfo": 30807270, + "PaymentType": "Credit Card" + }, + { + "Id": 1136, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2019-02-26T16:55:29", + "TransactionId": 90376905, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 907, + "CustomerInfo": 99058297, + "PaymentType": "Debit Card" + }, + { + "Id": 1137, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-09-25T15:18:35", + "TransactionId": 62689738, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 536, + "CustomerInfo": 69905807, + "PaymentType": "Credit Card" + }, + { + "Id": 1138, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2017-10-26T15:23:20", + "TransactionId": 1041329, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 698, + "CustomerInfo": 61166680, + "PaymentType": "Debit Card" + }, + { + "Id": 1139, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2016-07-24T12:57:10", + "TransactionId": 51440428, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 265, + "CustomerInfo": 93058939, + "PaymentType": "Credit Card" + }, + { + "Id": 1140, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2016-09-07T13:39:04", + "TransactionId": 6938941, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 226, + "CustomerInfo": 3352484, + "PaymentType": "Credit Card" + }, + { + "Id": 1141, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-02-26T17:24:52", + "TransactionId": 35138063, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 150, + "CustomerInfo": 72145788, + "PaymentType": "Debit Card" + }, + { + "Id": 1142, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-12-15T10:47:25", + "TransactionId": 50562529, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 946, + "CustomerInfo": 51623975, + "PaymentType": "Credit Card" + }, + { + "Id": 1143, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2017-06-08T17:26:53", + "TransactionId": 51074098, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 60, + "CustomerInfo": 189803, + "PaymentType": "Credit Card" + }, + { + "Id": 1144, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2018-03-19T14:12:46", + "TransactionId": 99244687, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 248, + "CustomerInfo": 51441714, + "PaymentType": "Cash" + }, + { + "Id": 1145, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-08-28T07:16:45", + "TransactionId": 92920548, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 294, + "CustomerInfo": 91206588, + "PaymentType": "Debit Card" + }, + { + "Id": 1146, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-07-20T10:06:49", + "TransactionId": 52479816, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 994, + "CustomerInfo": 35545735, + "PaymentType": "Cash" + }, + { + "Id": 1147, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2018-09-23T13:49:00", + "TransactionId": 95011420, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 913, + "CustomerInfo": 78246610, + "PaymentType": "Debit Card" + }, + { + "Id": 1148, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-02-07T09:19:26", + "TransactionId": 85007070, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 564, + "CustomerInfo": 46069659, + "PaymentType": "Cash" + }, + { + "Id": 1149, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2017-12-02T09:19:44", + "TransactionId": 44817141, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 493, + "CustomerInfo": 41668128, + "PaymentType": "Cash" + }, + { + "Id": 1150, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2019-03-11T18:12:40", + "TransactionId": 89425574, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 728, + "CustomerInfo": 27488385, + "PaymentType": "Credit Card" + }, + { + "Id": 1151, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-08-06T19:33:45", + "TransactionId": 5469950, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 319, + "CustomerInfo": 59871871, + "PaymentType": "Cash" + }, + { + "Id": 1152, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2016-09-20T08:55:06", + "TransactionId": 70271688, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 943, + "CustomerInfo": 80742337, + "PaymentType": "Debit Card" + }, + { + "Id": 1153, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2017-09-25T15:15:42", + "TransactionId": 26684719, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 651, + "CustomerInfo": 91291675, + "PaymentType": "Cash" + }, + { + "Id": 1154, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2017-12-24T09:20:53", + "TransactionId": 87679149, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 31, + "CustomerInfo": 94831523, + "PaymentType": "Debit Card" + }, + { + "Id": 1155, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-11-20T09:25:03", + "TransactionId": 31510584, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 142, + "CustomerInfo": 68164734, + "PaymentType": "Credit Card" + }, + { + "Id": 1156, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-02-10T13:16:36", + "TransactionId": 17104493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 555, + "CustomerInfo": 81434786, + "PaymentType": "Debit Card" + }, + { + "Id": 1157, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-10-02T09:38:53", + "TransactionId": 10150537, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 668, + "CustomerInfo": 92097608, + "PaymentType": "Debit Card" + }, + { + "Id": 1158, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2018-02-09T15:31:32", + "TransactionId": 27303493, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 602, + "CustomerInfo": 37823028, + "PaymentType": "Cash" + }, + { + "Id": 1159, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2019-01-03T18:09:48", + "TransactionId": 37597405, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 248, + "CustomerInfo": 98230881, + "PaymentType": "Cash" + }, + { + "Id": 1160, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2018-01-27T16:31:00", + "TransactionId": 22998415, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 437, + "CustomerInfo": 21724832, + "PaymentType": "Credit Card" + }, + { + "Id": 1161, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-07-12T15:27:56", + "TransactionId": 75167156, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 275, + "CustomerInfo": 30930467, + "PaymentType": "Debit Card" + }, + { + "Id": 1162, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2016-03-05T11:53:23", + "TransactionId": 1822500, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 290, + "CustomerInfo": 7236925, + "PaymentType": "Cash" + }, + { + "Id": 1163, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2017-08-19T08:34:05", + "TransactionId": 22491239, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 680, + "CustomerInfo": 1052999, + "PaymentType": "Cash" + }, + { + "Id": 1164, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-10-30T11:13:12", + "TransactionId": 31000932, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 530, + "CustomerInfo": 79207972, + "PaymentType": "Credit Card" + }, + { + "Id": 1165, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-01-25T07:42:32", + "TransactionId": 44333659, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 761, + "CustomerInfo": 80357366, + "PaymentType": "Cash" + }, + { + "Id": 1166, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2017-10-22T10:44:24", + "TransactionId": 62109399, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 985, + "CustomerInfo": 59348030, + "PaymentType": "Cash" + }, + { + "Id": 1167, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-07-31T10:58:57", + "TransactionId": 88095540, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 14, + "CustomerInfo": 23739729, + "PaymentType": "Credit Card" + }, + { + "Id": 1168, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2016-07-05T09:43:55", + "TransactionId": 78558893, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 992, + "CustomerInfo": 33266240, + "PaymentType": "Cash" + }, + { + "Id": 1169, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-03-30T16:41:23", + "TransactionId": 25214980, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 961, + "CustomerInfo": 47266013, + "PaymentType": "Cash" + }, + { + "Id": 1170, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-12-02T10:31:44", + "TransactionId": 26081539, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 111, + "CustomerInfo": 52401594, + "PaymentType": "Cash" + }, + { + "Id": 1171, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2016-12-20T15:18:52", + "TransactionId": 5937952, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 327, + "CustomerInfo": 77798286, + "PaymentType": "Credit Card" + }, + { + "Id": 1172, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2016-12-20T08:41:34", + "TransactionId": 65900186, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 17, + "CustomerInfo": 80257831, + "PaymentType": "Credit Card" + }, + { + "Id": 1173, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-08-14T13:27:50", + "TransactionId": 30018619, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 991, + "CustomerInfo": 75343932, + "PaymentType": "Debit Card" + }, + { + "Id": 1174, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-06-19T10:57:39", + "TransactionId": 21026842, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 60411325, + "PaymentType": "Credit Card" + }, + { + "Id": 1175, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-11-13T17:48:55", + "TransactionId": 99778128, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 234, + "CustomerInfo": 84033821, + "PaymentType": "Debit Card" + }, + { + "Id": 1176, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-04-15T13:17:11", + "TransactionId": 8179905, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 963, + "CustomerInfo": 60169374, + "PaymentType": "Debit Card" + }, + { + "Id": 1177, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2016-05-11T16:28:34", + "TransactionId": 25310487, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 407, + "CustomerInfo": 27817904, + "PaymentType": "Cash" + }, + { + "Id": 1178, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-08-09T19:45:07", + "TransactionId": 18704626, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 792, + "CustomerInfo": 90362651, + "PaymentType": "Cash" + }, + { + "Id": 1179, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2018-11-23T14:59:17", + "TransactionId": 35638419, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 841, + "CustomerInfo": 73717208, + "PaymentType": "Credit Card" + }, + { + "Id": 1180, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-02-12T13:13:35", + "TransactionId": 47887175, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 515, + "CustomerInfo": 57111484, + "PaymentType": "Credit Card" + }, + { + "Id": 1181, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2019-04-23T16:16:19", + "TransactionId": 10991718, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 301, + "CustomerInfo": 22863398, + "PaymentType": "Credit Card" + }, + { + "Id": 1182, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-06-03T16:09:33", + "TransactionId": 19774159, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 240, + "CustomerInfo": 19481726, + "PaymentType": "Cash" + }, + { + "Id": 1183, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-03-31T16:37:21", + "TransactionId": 15165438, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 585, + "CustomerInfo": 84905031, + "PaymentType": "Cash" + }, + { + "Id": 1184, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2016-04-21T17:32:04", + "TransactionId": 39224889, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 397, + "CustomerInfo": 99948134, + "PaymentType": "Credit Card" + }, + { + "Id": 1185, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-02-01T08:21:50", + "TransactionId": 98883901, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 601, + "CustomerInfo": 51599420, + "PaymentType": "Credit Card" + }, + { + "Id": 1186, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-02-15T19:57:48", + "TransactionId": 99804085, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 403, + "CustomerInfo": 2287413, + "PaymentType": "Debit Card" + }, + { + "Id": 1187, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2016-11-27T09:21:10", + "TransactionId": 14451338, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 726, + "CustomerInfo": 36860716, + "PaymentType": "Debit Card" + }, + { + "Id": 1188, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2019-12-09T10:17:37", + "TransactionId": 24869105, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 145, + "CustomerInfo": 74893478, + "PaymentType": "Credit Card" + }, + { + "Id": 1189, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2019-03-06T09:56:18", + "TransactionId": 50500181, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 572, + "CustomerInfo": 2609412, + "PaymentType": "Credit Card" + }, + { + "Id": 1190, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-06-19T15:12:23", + "TransactionId": 41147142, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 922, + "CustomerInfo": 41250534, + "PaymentType": "Cash" + }, + { + "Id": 1191, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2018-06-04T15:56:44", + "TransactionId": 71385737, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 409, + "CustomerInfo": 15420625, + "PaymentType": "Cash" + }, + { + "Id": 1192, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2019-10-07T16:15:19", + "TransactionId": 46931164, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 661, + "CustomerInfo": 93506983, + "PaymentType": "Debit Card" + }, + { + "Id": 1193, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-01-28T10:19:21", + "TransactionId": 92094939, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 568, + "CustomerInfo": 60475189, + "PaymentType": "Cash" + }, + { + "Id": 1194, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-11-20T10:49:35", + "TransactionId": 84563819, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 562, + "CustomerInfo": 44948600, + "PaymentType": "Debit Card" + }, + { + "Id": 1195, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-04-28T08:48:55", + "TransactionId": 87474987, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 620, + "CustomerInfo": 88854641, + "PaymentType": "Credit Card" + }, + { + "Id": 1196, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2016-05-27T10:32:10", + "TransactionId": 8476139, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 30980868, + "PaymentType": "Debit Card" + }, + { + "Id": 1197, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-05-03T16:10:08", + "TransactionId": 67037894, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 779, + "CustomerInfo": 27175927, + "PaymentType": "Credit Card" + }, + { + "Id": 1198, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-08-17T14:13:03", + "TransactionId": 93561550, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 31376629, + "PaymentType": "Credit Card" + }, + { + "Id": 1199, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2016-05-16T13:58:57", + "TransactionId": 78011375, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 932, + "CustomerInfo": 59176109, + "PaymentType": "Credit Card" + }, + { + "Id": 1200, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2017-04-18T08:08:53", + "TransactionId": 46929604, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 93, + "CustomerInfo": 29494862, + "PaymentType": "Cash" + }, + { + "Id": 1201, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2019-10-19T16:39:48", + "TransactionId": 43955606, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 66, + "CustomerInfo": 83260737, + "PaymentType": "Debit Card" + }, + { + "Id": 1202, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2019-08-16T07:20:30", + "TransactionId": 17857145, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 855, + "CustomerInfo": 50975290, + "PaymentType": "Cash" + }, + { + "Id": 1203, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-07-20T09:20:10", + "TransactionId": 17982830, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 918, + "CustomerInfo": 17408566, + "PaymentType": "Credit Card" + }, + { + "Id": 1204, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2018-12-27T17:31:55", + "TransactionId": 91115298, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 699, + "CustomerInfo": 50413151, + "PaymentType": "Credit Card" + }, + { + "Id": 1205, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2018-05-09T12:11:31", + "TransactionId": 77685894, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 490, + "CustomerInfo": 39962329, + "PaymentType": "Cash" + }, + { + "Id": 1206, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2017-09-03T14:48:37", + "TransactionId": 60407, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 902, + "CustomerInfo": 70021742, + "PaymentType": "Credit Card" + }, + { + "Id": 1207, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2018-09-07T18:44:30", + "TransactionId": 33866402, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 393, + "CustomerInfo": 90234191, + "PaymentType": "Debit Card" + }, + { + "Id": 1208, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2018-08-05T12:22:28", + "TransactionId": 49164469, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 64, + "CustomerInfo": 34902515, + "PaymentType": "Credit Card" + }, + { + "Id": 1209, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2016-05-11T14:09:19", + "TransactionId": 71985226, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 386, + "CustomerInfo": 49548635, + "PaymentType": "Credit Card" + }, + { + "Id": 1210, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-04-04T13:29:08", + "TransactionId": 65378529, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 855, + "CustomerInfo": 76624799, + "PaymentType": "Debit Card" + }, + { + "Id": 1211, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2018-11-23T13:00:55", + "TransactionId": 29038709, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 784, + "CustomerInfo": 12168291, + "PaymentType": "Cash" + }, + { + "Id": 1212, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2018-07-08T18:37:09", + "TransactionId": 1833936, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 66, + "CustomerInfo": 11604854, + "PaymentType": "Debit Card" + }, + { + "Id": 1213, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-12-22T07:31:35", + "TransactionId": 76150374, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 596, + "CustomerInfo": 11561790, + "PaymentType": "Credit Card" + }, + { + "Id": 1214, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-06-05T08:14:30", + "TransactionId": 7468913, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 312, + "CustomerInfo": 15471680, + "PaymentType": "Debit Card" + }, + { + "Id": 1215, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2016-08-21T11:19:15", + "TransactionId": 4736985, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 235, + "CustomerInfo": 88229603, + "PaymentType": "Credit Card" + }, + { + "Id": 1216, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-01-17T07:52:36", + "TransactionId": 18828775, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 378, + "CustomerInfo": 16998021, + "PaymentType": "Credit Card" + }, + { + "Id": 1217, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2018-10-18T19:37:12", + "TransactionId": 46813260, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 61, + "CustomerInfo": 64325964, + "PaymentType": "Cash" + }, + { + "Id": 1218, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2019-12-21T10:36:37", + "TransactionId": 96134016, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 131, + "CustomerInfo": 27115848, + "PaymentType": "Debit Card" + }, + { + "Id": 1219, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-11-21T11:53:57", + "TransactionId": 15764438, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 476, + "CustomerInfo": 77798322, + "PaymentType": "Credit Card" + }, + { + "Id": 1220, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-04-08T17:16:39", + "TransactionId": 90615723, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 20, + "CustomerInfo": 7660152, + "PaymentType": "Credit Card" + }, + { + "Id": 1221, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2019-09-16T07:15:10", + "TransactionId": 97592635, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 963, + "CustomerInfo": 38058061, + "PaymentType": "Credit Card" + }, + { + "Id": 1222, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2017-12-21T18:55:00", + "TransactionId": 71065057, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 931, + "CustomerInfo": 64087262, + "PaymentType": "Debit Card" + }, + { + "Id": 1223, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-02-09T17:03:16", + "TransactionId": 66152018, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 93, + "CustomerInfo": 96797630, + "PaymentType": "Debit Card" + }, + { + "Id": 1224, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2018-09-19T19:33:36", + "TransactionId": 31710147, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 988, + "CustomerInfo": 34948759, + "PaymentType": "Debit Card" + }, + { + "Id": 1225, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2016-06-12T16:44:33", + "TransactionId": 5648304, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 772, + "CustomerInfo": 53389164, + "PaymentType": "Credit Card" + }, + { + "Id": 1226, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2016-05-07T08:25:35", + "TransactionId": 81980000, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 345, + "CustomerInfo": 17302131, + "PaymentType": "Debit Card" + }, + { + "Id": 1227, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2018-12-10T19:38:47", + "TransactionId": 14660853, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 542, + "CustomerInfo": 74532638, + "PaymentType": "Debit Card" + }, + { + "Id": 1228, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2017-05-02T10:42:49", + "TransactionId": 76545395, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 65, + "CustomerInfo": 88561546, + "PaymentType": "Credit Card" + }, + { + "Id": 1229, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2018-09-10T08:46:54", + "TransactionId": 57161124, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 543, + "CustomerInfo": 58744439, + "PaymentType": "Cash" + }, + { + "Id": 1230, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-10-29T15:34:51", + "TransactionId": 59618138, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 709, + "CustomerInfo": 4527967, + "PaymentType": "Cash" + }, + { + "Id": 1231, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-01-31T12:28:22", + "TransactionId": 76015118, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 54, + "CustomerInfo": 2238555, + "PaymentType": "Credit Card" + }, + { + "Id": 1232, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2018-08-25T07:18:37", + "TransactionId": 65615951, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 562, + "CustomerInfo": 39883279, + "PaymentType": "Credit Card" + }, + { + "Id": 1233, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2017-05-17T10:02:38", + "TransactionId": 21388638, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 863, + "CustomerInfo": 91805848, + "PaymentType": "Cash" + }, + { + "Id": 1234, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2016-01-27T18:46:13", + "TransactionId": 40607635, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 87647010, + "PaymentType": "Cash" + }, + { + "Id": 1235, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2017-03-07T10:57:13", + "TransactionId": 90790538, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 943, + "CustomerInfo": 56108455, + "PaymentType": "Credit Card" + }, + { + "Id": 1236, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-02-13T13:12:00", + "TransactionId": 99884184, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 433, + "CustomerInfo": 86792635, + "PaymentType": "Cash" + }, + { + "Id": 1237, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-03-17T07:49:44", + "TransactionId": 28035255, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 840, + "CustomerInfo": 71479099, + "PaymentType": "Credit Card" + }, + { + "Id": 1238, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-11-12T08:28:11", + "TransactionId": 52183087, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 490, + "CustomerInfo": 37263592, + "PaymentType": "Debit Card" + }, + { + "Id": 1239, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2017-08-13T07:43:58", + "TransactionId": 51637591, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 663, + "CustomerInfo": 75473333, + "PaymentType": "Credit Card" + }, + { + "Id": 1240, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-03-14T08:08:10", + "TransactionId": 26010236, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 136, + "CustomerInfo": 57160364, + "PaymentType": "Debit Card" + }, + { + "Id": 1241, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2017-09-18T12:21:19", + "TransactionId": 64929775, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 764, + "CustomerInfo": 80585626, + "PaymentType": "Cash" + }, + { + "Id": 1242, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2019-07-26T18:03:10", + "TransactionId": 22391835, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 512, + "CustomerInfo": 96055995, + "PaymentType": "Credit Card" + }, + { + "Id": 1243, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-05-15T16:54:46", + "TransactionId": 57852115, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 147, + "CustomerInfo": 2124621, + "PaymentType": "Debit Card" + }, + { + "Id": 1244, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-04-18T18:20:44", + "TransactionId": 68898238, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 354, + "CustomerInfo": 34743729, + "PaymentType": "Credit Card" + }, + { + "Id": 1245, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-01-21T17:29:28", + "TransactionId": 19468163, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 902, + "CustomerInfo": 80785333, + "PaymentType": "Cash" + }, + { + "Id": 1246, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2019-08-09T10:15:36", + "TransactionId": 96630042, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 844, + "CustomerInfo": 73583233, + "PaymentType": "Debit Card" + }, + { + "Id": 1247, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2017-05-03T09:39:01", + "TransactionId": 39747992, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 850, + "CustomerInfo": 63482039, + "PaymentType": "Debit Card" + }, + { + "Id": 1248, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-09-26T15:29:05", + "TransactionId": 69329905, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 7537696, + "PaymentType": "Debit Card" + }, + { + "Id": 1249, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-10-06T14:15:30", + "TransactionId": 29184435, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 120, + "CustomerInfo": 98605646, + "PaymentType": "Debit Card" + }, + { + "Id": 1250, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2017-03-19T16:35:11", + "TransactionId": 78683186, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 64, + "CustomerInfo": 24415084, + "PaymentType": "Credit Card" + }, + { + "Id": 1251, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2017-04-04T19:21:13", + "TransactionId": 37247776, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 800, + "CustomerInfo": 32887060, + "PaymentType": "Debit Card" + }, + { + "Id": 1252, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-08-02T16:34:11", + "TransactionId": 34120279, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 709, + "CustomerInfo": 9912623, + "PaymentType": "Credit Card" + }, + { + "Id": 1253, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-09-22T11:31:29", + "TransactionId": 96065474, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 650, + "CustomerInfo": 62669898, + "PaymentType": "Credit Card" + }, + { + "Id": 1254, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2018-05-28T18:34:25", + "TransactionId": 98729487, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 81, + "CustomerInfo": 89549842, + "PaymentType": "Debit Card" + }, + { + "Id": 1255, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-01-11T17:28:45", + "TransactionId": 77442191, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 541, + "CustomerInfo": 55903238, + "PaymentType": "Cash" + }, + { + "Id": 1256, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2019-11-04T13:09:24", + "TransactionId": 81214890, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 105, + "CustomerInfo": 47463140, + "PaymentType": "Credit Card" + }, + { + "Id": 1257, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-12-23T19:43:49", + "TransactionId": 69646992, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 475, + "CustomerInfo": 10027778, + "PaymentType": "Debit Card" + }, + { + "Id": 1258, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-02-21T11:51:48", + "TransactionId": 55048043, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 227, + "CustomerInfo": 65480493, + "PaymentType": "Cash" + }, + { + "Id": 1259, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-08-23T17:25:26", + "TransactionId": 83478660, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 475, + "CustomerInfo": 97577863, + "PaymentType": "Cash" + }, + { + "Id": 1260, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-10-19T14:30:46", + "TransactionId": 94847299, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 104, + "CustomerInfo": 83491840, + "PaymentType": "Debit Card" + }, + { + "Id": 1261, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-09-30T15:11:05", + "TransactionId": 34065630, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 871, + "CustomerInfo": 45146552, + "PaymentType": "Credit Card" + }, + { + "Id": 1262, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2017-09-11T10:17:20", + "TransactionId": 50796876, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 877, + "CustomerInfo": 668670, + "PaymentType": "Cash" + }, + { + "Id": 1263, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2016-04-27T11:22:25", + "TransactionId": 94026417, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 2, + "CustomerInfo": 92826559, + "PaymentType": "Cash" + }, + { + "Id": 1264, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2018-04-15T14:00:14", + "TransactionId": 30693380, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 253, + "CustomerInfo": 92693284, + "PaymentType": "Cash" + }, + { + "Id": 1265, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2016-03-21T15:57:10", + "TransactionId": 80215469, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 338, + "CustomerInfo": 95625842, + "PaymentType": "Credit Card" + }, + { + "Id": 1266, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-04-05T07:18:12", + "TransactionId": 14940811, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 927, + "CustomerInfo": 19971505, + "PaymentType": "Credit Card" + }, + { + "Id": 1267, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-08-03T15:57:27", + "TransactionId": 75515894, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 691, + "CustomerInfo": 76500956, + "PaymentType": "Debit Card" + }, + { + "Id": 1268, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2018-04-19T14:58:08", + "TransactionId": 97125791, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 222, + "CustomerInfo": 70619507, + "PaymentType": "Debit Card" + }, + { + "Id": 1269, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2017-06-12T19:23:57", + "TransactionId": 6067232, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 960, + "CustomerInfo": 12372444, + "PaymentType": "Debit Card" + }, + { + "Id": 1270, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2018-04-25T15:41:54", + "TransactionId": 55527147, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 766, + "CustomerInfo": 61207768, + "PaymentType": "Debit Card" + }, + { + "Id": 1271, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2019-02-19T07:36:12", + "TransactionId": 62255835, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 936, + "CustomerInfo": 59353892, + "PaymentType": "Credit Card" + }, + { + "Id": 1272, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-11-19T18:32:24", + "TransactionId": 82882746, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 560, + "CustomerInfo": 79896404, + "PaymentType": "Credit Card" + }, + { + "Id": 1273, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2017-07-20T15:06:03", + "TransactionId": 42462359, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 120, + "CustomerInfo": 33294949, + "PaymentType": "Credit Card" + }, + { + "Id": 1274, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2016-04-24T18:15:50", + "TransactionId": 96037740, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 649, + "CustomerInfo": 40145810, + "PaymentType": "Credit Card" + }, + { + "Id": 1275, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2019-10-08T19:37:38", + "TransactionId": 78418183, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 907, + "CustomerInfo": 6593276, + "PaymentType": "Debit Card" + }, + { + "Id": 1276, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-05-30T14:03:07", + "TransactionId": 463293, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 408, + "CustomerInfo": 11726280, + "PaymentType": "Credit Card" + }, + { + "Id": 1277, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-08-18T19:27:24", + "TransactionId": 88996232, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 224, + "CustomerInfo": 24144345, + "PaymentType": "Cash" + }, + { + "Id": 1278, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2017-04-24T14:20:41", + "TransactionId": 69621289, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 134, + "CustomerInfo": 85948434, + "PaymentType": "Cash" + }, + { + "Id": 1279, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2018-06-23T11:02:15", + "TransactionId": 54229649, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 729, + "CustomerInfo": 21470435, + "PaymentType": "Cash" + }, + { + "Id": 1280, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2018-05-13T18:15:33", + "TransactionId": 48500570, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 984, + "CustomerInfo": 2660932, + "PaymentType": "Debit Card" + }, + { + "Id": 1281, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2019-07-14T15:19:52", + "TransactionId": 86211221, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 415, + "CustomerInfo": 62814049, + "PaymentType": "Debit Card" + }, + { + "Id": 1282, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2018-11-28T16:04:22", + "TransactionId": 13601160, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 619, + "CustomerInfo": 8517216, + "PaymentType": "Credit Card" + }, + { + "Id": 1283, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2016-10-08T16:05:14", + "TransactionId": 83290602, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 200, + "CustomerInfo": 72396792, + "PaymentType": "Cash" + }, + { + "Id": 1284, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2016-11-11T11:15:22", + "TransactionId": 72621861, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 686, + "CustomerInfo": 13444330, + "PaymentType": "Cash" + }, + { + "Id": 1285, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2019-06-08T12:32:41", + "TransactionId": 9351943, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 202, + "CustomerInfo": 59859807, + "PaymentType": "Cash" + }, + { + "Id": 1286, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-08-23T14:56:33", + "TransactionId": 73840365, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 780, + "CustomerInfo": 7242151, + "PaymentType": "Cash" + }, + { + "Id": 1287, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2016-10-05T07:37:38", + "TransactionId": 2967153, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 504, + "CustomerInfo": 54011234, + "PaymentType": "Debit Card" + }, + { + "Id": 1288, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-03-01T10:47:08", + "TransactionId": 77774195, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 255, + "CustomerInfo": 56736665, + "PaymentType": "Debit Card" + }, + { + "Id": 1289, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-10-02T17:43:18", + "TransactionId": 22193330, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 335, + "CustomerInfo": 49894067, + "PaymentType": "Debit Card" + }, + { + "Id": 1290, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-06-08T08:58:16", + "TransactionId": 29393487, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 347, + "CustomerInfo": 14704900, + "PaymentType": "Debit Card" + }, + { + "Id": 1291, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2019-05-29T14:37:49", + "TransactionId": 13825575, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 409, + "CustomerInfo": 48986947, + "PaymentType": "Credit Card" + }, + { + "Id": 1292, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-05-08T07:40:13", + "TransactionId": 25787638, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 268, + "CustomerInfo": 68407000, + "PaymentType": "Cash" + }, + { + "Id": 1293, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2019-11-06T08:45:19", + "TransactionId": 25780723, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 331, + "CustomerInfo": 7092002, + "PaymentType": "Debit Card" + }, + { + "Id": 1294, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-10-14T18:13:06", + "TransactionId": 25417145, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 213, + "CustomerInfo": 55045329, + "PaymentType": "Debit Card" + }, + { + "Id": 1295, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-07-15T08:16:13", + "TransactionId": 60497191, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 866, + "CustomerInfo": 24739443, + "PaymentType": "Cash" + }, + { + "Id": 1296, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2016-06-28T08:40:34", + "TransactionId": 78475579, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 972, + "CustomerInfo": 60456310, + "PaymentType": "Credit Card" + }, + { + "Id": 1297, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-01-27T18:29:23", + "TransactionId": 82224584, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 125, + "CustomerInfo": 91247865, + "PaymentType": "Cash" + }, + { + "Id": 1298, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2017-12-22T10:55:03", + "TransactionId": 36321543, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 717, + "CustomerInfo": 90815879, + "PaymentType": "Debit Card" + }, + { + "Id": 1299, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-02-14T17:52:31", + "TransactionId": 45599371, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 260, + "CustomerInfo": 30861902, + "PaymentType": "Debit Card" + }, + { + "Id": 1300, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2019-07-15T13:40:05", + "TransactionId": 35117462, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 856, + "CustomerInfo": 42875734, + "PaymentType": "Debit Card" + }, + { + "Id": 1301, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-05-10T09:01:09", + "TransactionId": 7763842, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 380, + "CustomerInfo": 33909731, + "PaymentType": "Cash" + }, + { + "Id": 1302, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-01-03T19:39:22", + "TransactionId": 84828036, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 291, + "CustomerInfo": 51304738, + "PaymentType": "Credit Card" + }, + { + "Id": 1303, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2018-10-24T14:13:12", + "TransactionId": 89469211, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 882, + "CustomerInfo": 70246060, + "PaymentType": "Cash" + }, + { + "Id": 1304, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2017-10-04T11:14:12", + "TransactionId": 21530560, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 550, + "CustomerInfo": 87986830, + "PaymentType": "Credit Card" + }, + { + "Id": 1305, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2016-06-04T09:22:36", + "TransactionId": 56066568, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 32177449, + "PaymentType": "Cash" + }, + { + "Id": 1306, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-01-03T07:31:26", + "TransactionId": 23538337, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 293, + "CustomerInfo": 52605890, + "PaymentType": "Cash" + }, + { + "Id": 1307, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2016-11-10T17:24:52", + "TransactionId": 25189090, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 69, + "CustomerInfo": 91340601, + "PaymentType": "Credit Card" + }, + { + "Id": 1308, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2017-05-17T16:34:36", + "TransactionId": 86628072, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 6, + "CustomerInfo": 53228758, + "PaymentType": "Credit Card" + }, + { + "Id": 1309, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-09-03T16:56:47", + "TransactionId": 29236704, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 1155298, + "PaymentType": "Debit Card" + }, + { + "Id": 1310, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-04-05T13:16:54", + "TransactionId": 75193150, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 788, + "CustomerInfo": 59879818, + "PaymentType": "Credit Card" + }, + { + "Id": 1311, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2017-09-15T07:46:25", + "TransactionId": 28016908, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 288, + "CustomerInfo": 47608419, + "PaymentType": "Credit Card" + }, + { + "Id": 1312, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2018-03-05T17:21:07", + "TransactionId": 56334711, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 958, + "CustomerInfo": 10009256, + "PaymentType": "Credit Card" + }, + { + "Id": 1313, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2017-02-24T14:21:42", + "TransactionId": 2720456, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 438, + "CustomerInfo": 42175794, + "PaymentType": "Credit Card" + }, + { + "Id": 1314, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2017-07-05T13:54:46", + "TransactionId": 46563766, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 518, + "CustomerInfo": 64114992, + "PaymentType": "Debit Card" + }, + { + "Id": 1315, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-01-19T18:31:41", + "TransactionId": 93248054, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 950, + "CustomerInfo": 79786909, + "PaymentType": "Credit Card" + }, + { + "Id": 1316, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2017-02-14T12:08:21", + "TransactionId": 94359282, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 516, + "CustomerInfo": 80968167, + "PaymentType": "Credit Card" + }, + { + "Id": 1317, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2016-09-29T08:45:27", + "TransactionId": 85103842, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 770, + "CustomerInfo": 95944527, + "PaymentType": "Credit Card" + }, + { + "Id": 1318, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-12-20T17:45:45", + "TransactionId": 78863781, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 460, + "CustomerInfo": 66127426, + "PaymentType": "Credit Card" + }, + { + "Id": 1319, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-03-21T19:59:14", + "TransactionId": 29053843, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 174, + "CustomerInfo": 88637625, + "PaymentType": "Debit Card" + }, + { + "Id": 1320, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2016-09-02T15:17:43", + "TransactionId": 77258153, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 589, + "CustomerInfo": 21683109, + "PaymentType": "Credit Card" + }, + { + "Id": 1321, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2018-01-10T18:19:18", + "TransactionId": 33136923, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 283681, + "PaymentType": "Credit Card" + }, + { + "Id": 1322, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2019-05-17T12:04:45", + "TransactionId": 4203713, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 177, + "CustomerInfo": 57145816, + "PaymentType": "Debit Card" + }, + { + "Id": 1323, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2019-08-07T10:04:22", + "TransactionId": 74816144, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 966, + "CustomerInfo": 29420539, + "PaymentType": "Credit Card" + }, + { + "Id": 1324, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2017-08-08T10:50:27", + "TransactionId": 83397185, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 57, + "CustomerInfo": 69599004, + "PaymentType": "Debit Card" + }, + { + "Id": 1325, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2018-12-20T18:46:57", + "TransactionId": 87110039, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 61, + "CustomerInfo": 89396827, + "PaymentType": "Debit Card" + }, + { + "Id": 1326, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-12-05T07:19:21", + "TransactionId": 17351372, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 875, + "CustomerInfo": 45107748, + "PaymentType": "Cash" + }, + { + "Id": 1327, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-03-28T18:46:39", + "TransactionId": 39184835, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 863, + "CustomerInfo": 25073621, + "PaymentType": "Credit Card" + }, + { + "Id": 1328, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-11-15T18:43:55", + "TransactionId": 99737464, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 951, + "CustomerInfo": 56794782, + "PaymentType": "Credit Card" + }, + { + "Id": 1329, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-06-27T16:24:23", + "TransactionId": 73577863, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 220, + "CustomerInfo": 64943088, + "PaymentType": "Debit Card" + }, + { + "Id": 1330, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-01-28T18:45:30", + "TransactionId": 34238029, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 532, + "CustomerInfo": 62689713, + "PaymentType": "Cash" + }, + { + "Id": 1331, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2017-07-19T13:45:33", + "TransactionId": 77360977, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 989, + "CustomerInfo": 27696892, + "PaymentType": "Debit Card" + }, + { + "Id": 1332, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-10-28T16:08:41", + "TransactionId": 84649736, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 188, + "CustomerInfo": 65863947, + "PaymentType": "Cash" + }, + { + "Id": 1333, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2019-08-06T17:23:17", + "TransactionId": 93592915, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 187, + "CustomerInfo": 32361597, + "PaymentType": "Debit Card" + }, + { + "Id": 1334, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-08-22T14:55:49", + "TransactionId": 69228009, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 34086325, + "PaymentType": "Cash" + }, + { + "Id": 1335, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-05-13T18:09:13", + "TransactionId": 92581594, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 699, + "CustomerInfo": 54983133, + "PaymentType": "Credit Card" + }, + { + "Id": 1336, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2016-11-20T15:48:32", + "TransactionId": 96133831, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 706, + "CustomerInfo": 54005339, + "PaymentType": "Cash" + }, + { + "Id": 1337, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2019-11-02T10:58:05", + "TransactionId": 99863926, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 599, + "CustomerInfo": 97266528, + "PaymentType": "Debit Card" + }, + { + "Id": 1338, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-01-14T15:02:10", + "TransactionId": 41864049, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 881, + "CustomerInfo": 28932460, + "PaymentType": "Debit Card" + }, + { + "Id": 1339, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-03-17T15:00:52", + "TransactionId": 21702573, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 47, + "CustomerInfo": 26507679, + "PaymentType": "Debit Card" + }, + { + "Id": 1340, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2018-03-09T14:49:21", + "TransactionId": 71128706, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 696, + "CustomerInfo": 75681586, + "PaymentType": "Debit Card" + }, + { + "Id": 1341, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-04-09T12:17:43", + "TransactionId": 92429704, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 557, + "CustomerInfo": 2645123, + "PaymentType": "Cash" + }, + { + "Id": 1342, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2019-07-31T14:04:16", + "TransactionId": 92163576, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 280, + "CustomerInfo": 13365359, + "PaymentType": "Credit Card" + }, + { + "Id": 1343, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2018-10-31T12:34:34", + "TransactionId": 20985552, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 758, + "CustomerInfo": 43561606, + "PaymentType": "Cash" + }, + { + "Id": 1344, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2016-05-13T08:08:44", + "TransactionId": 33156476, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 293, + "CustomerInfo": 81373294, + "PaymentType": "Cash" + }, + { + "Id": 1345, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2016-11-09T10:57:13", + "TransactionId": 75865693, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 811, + "CustomerInfo": 35360498, + "PaymentType": "Credit Card" + }, + { + "Id": 1346, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-03-27T18:30:14", + "TransactionId": 97774508, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 137, + "CustomerInfo": 48368720, + "PaymentType": "Credit Card" + }, + { + "Id": 1347, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-02-16T10:06:06", + "TransactionId": 73786333, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 457, + "CustomerInfo": 83510050, + "PaymentType": "Cash" + }, + { + "Id": 1348, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-09-19T13:57:22", + "TransactionId": 95959076, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 74, + "CustomerInfo": 89686542, + "PaymentType": "Debit Card" + }, + { + "Id": 1349, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-02-07T19:42:23", + "TransactionId": 83467337, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 149, + "CustomerInfo": 31491876, + "PaymentType": "Credit Card" + }, + { + "Id": 1350, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2016-02-26T14:20:50", + "TransactionId": 10881748, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 521, + "CustomerInfo": 10840112, + "PaymentType": "Cash" + }, + { + "Id": 1351, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2017-05-09T11:30:12", + "TransactionId": 46783071, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 505, + "CustomerInfo": 72466789, + "PaymentType": "Cash" + }, + { + "Id": 1352, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2019-03-22T11:06:00", + "TransactionId": 63874505, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 879, + "CustomerInfo": 22174341, + "PaymentType": "Credit Card" + }, + { + "Id": 1353, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2016-08-14T07:15:10", + "TransactionId": 86392177, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 314, + "CustomerInfo": 75868879, + "PaymentType": "Credit Card" + }, + { + "Id": 1354, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2016-12-19T09:19:18", + "TransactionId": 99526650, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 81, + "CustomerInfo": 13353209, + "PaymentType": "Credit Card" + }, + { + "Id": 1355, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2018-08-14T16:38:30", + "TransactionId": 37835883, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 633, + "CustomerInfo": 54619008, + "PaymentType": "Cash" + }, + { + "Id": 1356, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2018-09-05T10:56:04", + "TransactionId": 92246591, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 316, + "CustomerInfo": 45180658, + "PaymentType": "Credit Card" + }, + { + "Id": 1357, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2018-01-19T09:17:43", + "TransactionId": 21156463, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 444, + "CustomerInfo": 97689793, + "PaymentType": "Debit Card" + }, + { + "Id": 1358, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2019-09-13T15:42:29", + "TransactionId": 98803158, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 505, + "CustomerInfo": 88083019, + "PaymentType": "Credit Card" + }, + { + "Id": 1359, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2016-04-15T09:04:28", + "TransactionId": 9631310, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 732, + "CustomerInfo": 96249417, + "PaymentType": "Cash" + }, + { + "Id": 1360, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2016-12-10T16:35:28", + "TransactionId": 42442830, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 562, + "CustomerInfo": 80206595, + "PaymentType": "Cash" + }, + { + "Id": 1361, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2018-06-07T18:14:07", + "TransactionId": 35098520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 64, + "CustomerInfo": 17314813, + "PaymentType": "Cash" + }, + { + "Id": 1362, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-06-04T18:10:39", + "TransactionId": 69256388, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 148, + "CustomerInfo": 37907396, + "PaymentType": "Debit Card" + }, + { + "Id": 1363, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-01-04T18:19:09", + "TransactionId": 16298010, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 728, + "CustomerInfo": 40321125, + "PaymentType": "Credit Card" + }, + { + "Id": 1364, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2016-06-21T14:52:39", + "TransactionId": 14873204, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 541, + "CustomerInfo": 74701754, + "PaymentType": "Credit Card" + }, + { + "Id": 1365, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2017-03-26T07:15:53", + "TransactionId": 38167083, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 155, + "CustomerInfo": 15157566, + "PaymentType": "Credit Card" + }, + { + "Id": 1366, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2019-09-14T15:37:18", + "TransactionId": 20073901, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 152, + "CustomerInfo": 11332726, + "PaymentType": "Debit Card" + }, + { + "Id": 1367, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2019-05-26T11:14:47", + "TransactionId": 67846260, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 858, + "CustomerInfo": 86823615, + "PaymentType": "Debit Card" + }, + { + "Id": 1368, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2019-08-28T09:18:35", + "TransactionId": 261234, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 955, + "CustomerInfo": 67942909, + "PaymentType": "Cash" + }, + { + "Id": 1369, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-10-24T16:11:00", + "TransactionId": 74531340, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 831, + "CustomerInfo": 39905550, + "PaymentType": "Debit Card" + }, + { + "Id": 1370, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-10-11T13:07:15", + "TransactionId": 72813662, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 322, + "CustomerInfo": 50614810, + "PaymentType": "Cash" + }, + { + "Id": 1371, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-03-15T19:40:39", + "TransactionId": 11855412, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 676, + "CustomerInfo": 5462008, + "PaymentType": "Debit Card" + }, + { + "Id": 1372, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2019-09-01T19:31:09", + "TransactionId": 99357518, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 499, + "CustomerInfo": 95097319, + "PaymentType": "Credit Card" + }, + { + "Id": 1373, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2019-08-05T12:31:06", + "TransactionId": 31760818, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 699, + "CustomerInfo": 26227501, + "PaymentType": "Debit Card" + }, + { + "Id": 1374, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-08-04T08:28:36", + "TransactionId": 41240612, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 989, + "CustomerInfo": 62523031, + "PaymentType": "Cash" + }, + { + "Id": 1375, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-04-23T11:05:25", + "TransactionId": 65767670, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 794, + "CustomerInfo": 22498311, + "PaymentType": "Cash" + }, + { + "Id": 1376, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-10-10T18:12:32", + "TransactionId": 10182887, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 112, + "CustomerInfo": 43572235, + "PaymentType": "Debit Card" + }, + { + "Id": 1377, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2017-01-15T19:01:03", + "TransactionId": 23999340, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 622, + "CustomerInfo": 67978150, + "PaymentType": "Debit Card" + }, + { + "Id": 1378, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2018-04-27T08:43:35", + "TransactionId": 77598960, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 26, + "CustomerInfo": 95150428, + "PaymentType": "Debit Card" + }, + { + "Id": 1379, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-08-29T11:33:13", + "TransactionId": 79072230, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 627, + "CustomerInfo": 95540328, + "PaymentType": "Debit Card" + }, + { + "Id": 1380, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2016-04-01T16:12:26", + "TransactionId": 52616496, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 381, + "CustomerInfo": 78094049, + "PaymentType": "Credit Card" + }, + { + "Id": 1381, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2016-08-21T17:07:18", + "TransactionId": 23469580, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 370, + "CustomerInfo": 74072469, + "PaymentType": "Debit Card" + }, + { + "Id": 1382, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-10-27T09:49:41", + "TransactionId": 50276174, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 450, + "CustomerInfo": 25551603, + "PaymentType": "Debit Card" + }, + { + "Id": 1383, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-05-02T11:55:41", + "TransactionId": 89853066, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 367, + "CustomerInfo": 34855122, + "PaymentType": "Debit Card" + }, + { + "Id": 1384, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2018-03-28T12:13:32", + "TransactionId": 35150745, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 412, + "CustomerInfo": 60617839, + "PaymentType": "Cash" + }, + { + "Id": 1385, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2017-03-23T16:10:42", + "TransactionId": 59893323, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 223, + "CustomerInfo": 34754721, + "PaymentType": "Debit Card" + }, + { + "Id": 1386, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2016-10-07T16:14:44", + "TransactionId": 92088881, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 276, + "CustomerInfo": 740419, + "PaymentType": "Debit Card" + }, + { + "Id": 1387, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2019-03-22T15:57:01", + "TransactionId": 41915892, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 735, + "CustomerInfo": 1701180, + "PaymentType": "Debit Card" + }, + { + "Id": 1388, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-06-17T16:35:28", + "TransactionId": 93080853, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 34397507, + "PaymentType": "Cash" + }, + { + "Id": 1389, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-06-12T17:37:32", + "TransactionId": 89598123, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 819, + "CustomerInfo": 18677776, + "PaymentType": "Credit Card" + }, + { + "Id": 1390, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2019-05-22T14:48:20", + "TransactionId": 61986075, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 37, + "CustomerInfo": 56555047, + "PaymentType": "Debit Card" + }, + { + "Id": 1391, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2016-07-12T10:24:06", + "TransactionId": 62817757, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 10406206, + "PaymentType": "Debit Card" + }, + { + "Id": 1392, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-10-11T19:47:43", + "TransactionId": 47612007, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 726, + "CustomerInfo": 21621800, + "PaymentType": "Cash" + }, + { + "Id": 1393, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2019-06-21T17:55:58", + "TransactionId": 27636900, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 647, + "CustomerInfo": 40645474, + "PaymentType": "Cash" + }, + { + "Id": 1394, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-08-05T16:04:22", + "TransactionId": 94022, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 566, + "CustomerInfo": 25624649, + "PaymentType": "Credit Card" + }, + { + "Id": 1395, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2019-10-31T19:57:30", + "TransactionId": 39005493, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 466, + "CustomerInfo": 33088629, + "PaymentType": "Credit Card" + }, + { + "Id": 1396, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2016-11-05T12:51:50", + "TransactionId": 81459070, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 381, + "CustomerInfo": 98542266, + "PaymentType": "Debit Card" + }, + { + "Id": 1397, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2017-08-01T10:50:18", + "TransactionId": 40835914, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 82, + "CustomerInfo": 55472374, + "PaymentType": "Debit Card" + }, + { + "Id": 1398, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2016-02-28T19:18:20", + "TransactionId": 36774143, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 22, + "CustomerInfo": 62553230, + "PaymentType": "Credit Card" + }, + { + "Id": 1399, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2016-03-02T08:46:11", + "TransactionId": 27390445, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 879, + "CustomerInfo": 64153092, + "PaymentType": "Credit Card" + }, + { + "Id": 1400, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-09-08T10:38:30", + "TransactionId": 5351206, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 180, + "CustomerInfo": 92272856, + "PaymentType": "Cash" + }, + { + "Id": 1401, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-08-26T11:55:15", + "TransactionId": 59397733, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 314, + "CustomerInfo": 45679688, + "PaymentType": "Cash" + }, + { + "Id": 1402, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2018-01-09T16:17:46", + "TransactionId": 74697791, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 900, + "CustomerInfo": 79872013, + "PaymentType": "Cash" + }, + { + "Id": 1403, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-04-08T07:27:59", + "TransactionId": 63910371, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 355, + "CustomerInfo": 76848172, + "PaymentType": "Credit Card" + }, + { + "Id": 1404, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-07-12T17:21:24", + "TransactionId": 64286122, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 797, + "CustomerInfo": 35758525, + "PaymentType": "Credit Card" + }, + { + "Id": 1405, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2018-08-16T08:43:00", + "TransactionId": 26911685, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 122, + "CustomerInfo": 99086486, + "PaymentType": "Credit Card" + }, + { + "Id": 1406, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2019-01-02T15:04:19", + "TransactionId": 38140220, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 164, + "CustomerInfo": 39200611, + "PaymentType": "Cash" + }, + { + "Id": 1407, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2018-07-18T10:32:36", + "TransactionId": 50053956, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 599, + "CustomerInfo": 13537697, + "PaymentType": "Credit Card" + }, + { + "Id": 1408, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-11-06T10:56:38", + "TransactionId": 46134950, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 277, + "CustomerInfo": 83542640, + "PaymentType": "Cash" + }, + { + "Id": 1409, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-04-30T07:15:45", + "TransactionId": 2437682, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 76956788, + "PaymentType": "Debit Card" + }, + { + "Id": 1410, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-02-10T08:54:14", + "TransactionId": 1497967, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 761, + "CustomerInfo": 20283870, + "PaymentType": "Cash" + }, + { + "Id": 1411, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-07-20T15:25:55", + "TransactionId": 5832743, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 745, + "CustomerInfo": 25653642, + "PaymentType": "Cash" + }, + { + "Id": 1412, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-05-10T18:46:48", + "TransactionId": 39529992, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 415, + "CustomerInfo": 72587670, + "PaymentType": "Cash" + }, + { + "Id": 1413, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2016-03-22T19:54:03", + "TransactionId": 32338371, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 116, + "CustomerInfo": 61708662, + "PaymentType": "Debit Card" + }, + { + "Id": 1414, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-01-15T17:46:54", + "TransactionId": 27748208, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 967, + "CustomerInfo": 30205311, + "PaymentType": "Credit Card" + }, + { + "Id": 1415, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2016-02-04T13:35:28", + "TransactionId": 62308885, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 15, + "CustomerInfo": 78799237, + "PaymentType": "Cash" + }, + { + "Id": 1416, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2019-09-20T17:10:19", + "TransactionId": 39294822, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 175, + "CustomerInfo": 61087361, + "PaymentType": "Debit Card" + }, + { + "Id": 1417, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2017-07-07T13:43:49", + "TransactionId": 86087619, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 768, + "CustomerInfo": 47093203, + "PaymentType": "Cash" + }, + { + "Id": 1418, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2019-07-07T11:34:13", + "TransactionId": 24908016, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 185, + "CustomerInfo": 48138480, + "PaymentType": "Cash" + }, + { + "Id": 1419, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2018-06-06T13:11:17", + "TransactionId": 20859691, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 122, + "CustomerInfo": 13963371, + "PaymentType": "Debit Card" + }, + { + "Id": 1420, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2017-05-09T16:44:41", + "TransactionId": 18760170, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 588, + "CustomerInfo": 31864858, + "PaymentType": "Credit Card" + }, + { + "Id": 1421, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-02-05T10:18:12", + "TransactionId": 26286080, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 527, + "CustomerInfo": 59551997, + "PaymentType": "Credit Card" + }, + { + "Id": 1422, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2016-08-30T12:41:28", + "TransactionId": 6846337, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 681, + "CustomerInfo": 79621913, + "PaymentType": "Debit Card" + }, + { + "Id": 1423, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2017-07-23T12:05:54", + "TransactionId": 99738411, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 22339748, + "PaymentType": "Credit Card" + }, + { + "Id": 1424, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2017-03-08T19:03:13", + "TransactionId": 45341254, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 699, + "CustomerInfo": 31171921, + "PaymentType": "Cash" + }, + { + "Id": 1425, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2019-10-14T12:34:34", + "TransactionId": 44175368, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 107, + "CustomerInfo": 8847584, + "PaymentType": "Cash" + }, + { + "Id": 1426, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2017-11-29T11:11:54", + "TransactionId": 61673187, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 788, + "CustomerInfo": 35092712, + "PaymentType": "Debit Card" + }, + { + "Id": 1427, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2017-09-22T15:52:08", + "TransactionId": 80618429, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 648, + "CustomerInfo": 73714018, + "PaymentType": "Credit Card" + }, + { + "Id": 1428, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-02-27T15:19:52", + "TransactionId": 35149432, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 938, + "CustomerInfo": 1183183, + "PaymentType": "Cash" + }, + { + "Id": 1429, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-01-07T14:44:18", + "TransactionId": 24293625, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 630, + "CustomerInfo": 49290588, + "PaymentType": "Credit Card" + }, + { + "Id": 1430, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2017-12-19T17:21:42", + "TransactionId": 13303520, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 832, + "CustomerInfo": 47081932, + "PaymentType": "Credit Card" + }, + { + "Id": 1431, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2016-07-16T11:32:04", + "TransactionId": 48002471, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 625, + "CustomerInfo": 91203356, + "PaymentType": "Credit Card" + }, + { + "Id": 1432, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-07-17T07:52:36", + "TransactionId": 51574352, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 146, + "CustomerInfo": 77608380, + "PaymentType": "Debit Card" + }, + { + "Id": 1433, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2016-01-07T12:19:44", + "TransactionId": 92568205, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 48812831, + "PaymentType": "Debit Card" + }, + { + "Id": 1434, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2017-09-16T07:57:56", + "TransactionId": 98428983, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 936, + "CustomerInfo": 99855794, + "PaymentType": "Debit Card" + }, + { + "Id": 1435, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-09-22T19:14:36", + "TransactionId": 58879769, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 413, + "CustomerInfo": 17034449, + "PaymentType": "Credit Card" + }, + { + "Id": 1436, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-01-11T12:01:09", + "TransactionId": 7279735, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 70, + "CustomerInfo": 95170031, + "PaymentType": "Cash" + }, + { + "Id": 1437, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2016-03-07T08:02:59", + "TransactionId": 69122422, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 157, + "CustomerInfo": 62167124, + "PaymentType": "Debit Card" + }, + { + "Id": 1438, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-01-09T12:56:36", + "TransactionId": 16316809, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 764, + "CustomerInfo": 56548006, + "PaymentType": "Credit Card" + }, + { + "Id": 1439, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2016-04-21T12:02:53", + "TransactionId": 93651290, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 815, + "CustomerInfo": 92176386, + "PaymentType": "Credit Card" + }, + { + "Id": 1440, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-06-07T07:16:02", + "TransactionId": 64783107, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 775, + "CustomerInfo": 16031487, + "PaymentType": "Cash" + }, + { + "Id": 1441, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2016-02-27T14:06:52", + "TransactionId": 30304023, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 923, + "CustomerInfo": 96027224, + "PaymentType": "Cash" + }, + { + "Id": 1442, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2017-07-06T16:07:41", + "TransactionId": 1266978, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 21, + "CustomerInfo": 91770679, + "PaymentType": "Cash" + }, + { + "Id": 1443, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2017-03-21T12:06:37", + "TransactionId": 99684650, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 125, + "CustomerInfo": 33927013, + "PaymentType": "Debit Card" + }, + { + "Id": 1444, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-09-17T12:16:42", + "TransactionId": 45310060, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 530, + "CustomerInfo": 88127169, + "PaymentType": "Debit Card" + }, + { + "Id": 1445, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-11-14T19:02:38", + "TransactionId": 1953683, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 854, + "CustomerInfo": 39490992, + "PaymentType": "Credit Card" + }, + { + "Id": 1446, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2019-05-26T19:22:13", + "TransactionId": 56154607, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 896, + "CustomerInfo": 52397691, + "PaymentType": "Credit Card" + }, + { + "Id": 1447, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2016-08-20T09:16:25", + "TransactionId": 27398296, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 639, + "CustomerInfo": 34397444, + "PaymentType": "Credit Card" + }, + { + "Id": 1448, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-12-20T11:25:26", + "TransactionId": 29971925, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 399, + "CustomerInfo": 17924332, + "PaymentType": "Cash" + }, + { + "Id": 1449, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2017-05-19T09:53:08", + "TransactionId": 3729100, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 429, + "CustomerInfo": 44886563, + "PaymentType": "Credit Card" + }, + { + "Id": 1450, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2019-09-30T17:18:58", + "TransactionId": 74993061, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 359, + "CustomerInfo": 53731800, + "PaymentType": "Credit Card" + }, + { + "Id": 1451, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-11-27T07:38:56", + "TransactionId": 21703334, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 782, + "CustomerInfo": 28424748, + "PaymentType": "Debit Card" + }, + { + "Id": 1452, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2018-11-29T17:52:05", + "TransactionId": 18087068, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 295, + "CustomerInfo": 45191190, + "PaymentType": "Debit Card" + }, + { + "Id": 1453, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2016-12-09T14:44:36", + "TransactionId": 51254053, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 882, + "CustomerInfo": 45995793, + "PaymentType": "Cash" + }, + { + "Id": 1454, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2018-05-14T18:24:55", + "TransactionId": 64656555, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 800, + "CustomerInfo": 76764818, + "PaymentType": "Credit Card" + }, + { + "Id": 1455, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-08-25T10:27:50", + "TransactionId": 36701372, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 656, + "CustomerInfo": 92686901, + "PaymentType": "Cash" + }, + { + "Id": 1456, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-09-06T07:15:19", + "TransactionId": 1958654, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 98, + "CustomerInfo": 48974824, + "PaymentType": "Debit Card" + }, + { + "Id": 1457, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2019-02-07T08:09:45", + "TransactionId": 91964475, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 290, + "CustomerInfo": 49310918, + "PaymentType": "Cash" + }, + { + "Id": 1458, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2016-01-24T16:47:25", + "TransactionId": 66528429, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 839, + "CustomerInfo": 10086823, + "PaymentType": "Debit Card" + }, + { + "Id": 1459, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2019-01-17T15:17:25", + "TransactionId": 62154480, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 216, + "CustomerInfo": 80248054, + "PaymentType": "Cash" + }, + { + "Id": 1460, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2017-04-02T08:02:15", + "TransactionId": 76750766, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 380, + "CustomerInfo": 14224006, + "PaymentType": "Debit Card" + }, + { + "Id": 1461, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-12-11T11:49:12", + "TransactionId": 10645531, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 73, + "CustomerInfo": 19553911, + "PaymentType": "Cash" + }, + { + "Id": 1462, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-06-01T14:17:23", + "TransactionId": 61142431, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 490, + "CustomerInfo": 11174612, + "PaymentType": "Cash" + }, + { + "Id": 1463, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-11-22T10:48:35", + "TransactionId": 41865943, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 667, + "CustomerInfo": 13750058, + "PaymentType": "Credit Card" + }, + { + "Id": 1464, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2016-05-22T11:23:34", + "TransactionId": 93113638, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 643, + "CustomerInfo": 14643814, + "PaymentType": "Credit Card" + }, + { + "Id": 1465, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-10-17T16:42:49", + "TransactionId": 77939638, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 254, + "CustomerInfo": 44419455, + "PaymentType": "Cash" + }, + { + "Id": 1466, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-12-21T09:19:52", + "TransactionId": 83499766, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 24, + "CustomerInfo": 97062314, + "PaymentType": "Credit Card" + }, + { + "Id": 1467, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2019-04-20T16:40:22", + "TransactionId": 71920955, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 470, + "CustomerInfo": 69438074, + "PaymentType": "Credit Card" + }, + { + "Id": 1468, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2019-10-01T16:53:37", + "TransactionId": 39343055, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 169, + "CustomerInfo": 38923285, + "PaymentType": "Debit Card" + }, + { + "Id": 1469, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2019-12-10T14:25:44", + "TransactionId": 23875171, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 127, + "CustomerInfo": 92964693, + "PaymentType": "Debit Card" + }, + { + "Id": 1470, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-01-24T07:03:13", + "TransactionId": 46472745, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 834190, + "PaymentType": "Debit Card" + }, + { + "Id": 1471, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2019-04-02T15:56:18", + "TransactionId": 38752294, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 481, + "CustomerInfo": 70926844, + "PaymentType": "Cash" + }, + { + "Id": 1472, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-04-03T09:26:12", + "TransactionId": 8411143, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 844, + "CustomerInfo": 29146487, + "PaymentType": "Credit Card" + }, + { + "Id": 1473, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2016-02-19T14:18:32", + "TransactionId": 31320519, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 749, + "CustomerInfo": 91586903, + "PaymentType": "Credit Card" + }, + { + "Id": 1474, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-10-06T07:49:44", + "TransactionId": 98509485, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 722, + "CustomerInfo": 69198172, + "PaymentType": "Credit Card" + }, + { + "Id": 1475, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-01-08T14:23:34", + "TransactionId": 39950609, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 799, + "CustomerInfo": 31558024, + "PaymentType": "Debit Card" + }, + { + "Id": 1476, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-02-03T17:59:00", + "TransactionId": 59384543, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 619, + "CustomerInfo": 85245086, + "PaymentType": "Cash" + }, + { + "Id": 1477, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-07-23T11:11:11", + "TransactionId": 96661306, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 680, + "CustomerInfo": 5152830, + "PaymentType": "Credit Card" + }, + { + "Id": 1478, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2019-09-21T11:56:24", + "TransactionId": 56426206, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 683, + "CustomerInfo": 13692297, + "PaymentType": "Cash" + }, + { + "Id": 1479, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2019-12-05T17:09:10", + "TransactionId": 49034305, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 712, + "CustomerInfo": 89605598, + "PaymentType": "Credit Card" + }, + { + "Id": 1480, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2017-05-15T09:16:34", + "TransactionId": 9313636, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 928, + "CustomerInfo": 66284467, + "PaymentType": "Cash" + }, + { + "Id": 1481, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2016-05-28T13:54:20", + "TransactionId": 34364423, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 778, + "CustomerInfo": 90837445, + "PaymentType": "Credit Card" + }, + { + "Id": 1482, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2017-03-03T18:13:15", + "TransactionId": 16170523, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 717, + "CustomerInfo": 89621074, + "PaymentType": "Credit Card" + }, + { + "Id": 1483, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2016-05-16T10:44:33", + "TransactionId": 63196865, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 927, + "CustomerInfo": 89115051, + "PaymentType": "Cash" + }, + { + "Id": 1484, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2016-10-17T08:30:20", + "TransactionId": 6509712, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 461, + "CustomerInfo": 39720498, + "PaymentType": "Debit Card" + }, + { + "Id": 1485, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2019-06-05T16:52:54", + "TransactionId": 75067786, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 977, + "CustomerInfo": 24618771, + "PaymentType": "Debit Card" + }, + { + "Id": 1486, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-11-13T19:37:03", + "TransactionId": 80365710, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 478, + "CustomerInfo": 35655121, + "PaymentType": "Cash" + }, + { + "Id": 1487, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2018-06-20T14:55:58", + "TransactionId": 82633161, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 95, + "CustomerInfo": 8011650, + "PaymentType": "Credit Card" + }, + { + "Id": 1488, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2018-05-11T12:04:19", + "TransactionId": 74288830, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 667, + "CustomerInfo": 62381820, + "PaymentType": "Debit Card" + }, + { + "Id": 1489, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-07-17T11:45:19", + "TransactionId": 97481224, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 509, + "CustomerInfo": 22382772, + "PaymentType": "Debit Card" + }, + { + "Id": 1490, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-09-21T17:14:56", + "TransactionId": 46120572, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 426, + "CustomerInfo": 62814140, + "PaymentType": "Debit Card" + }, + { + "Id": 1491, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-09-16T18:10:22", + "TransactionId": 44062451, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 579, + "CustomerInfo": 60344893, + "PaymentType": "Credit Card" + }, + { + "Id": 1492, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-09-09T15:06:29", + "TransactionId": 97811322, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 746, + "CustomerInfo": 11596621, + "PaymentType": "Credit Card" + }, + { + "Id": 1493, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2017-06-13T19:10:34", + "TransactionId": 73240482, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 88, + "CustomerInfo": 45262218, + "PaymentType": "Debit Card" + }, + { + "Id": 1494, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2018-11-04T15:07:29", + "TransactionId": 67147643, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 733, + "CustomerInfo": 26159103, + "PaymentType": "Debit Card" + }, + { + "Id": 1495, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2019-06-02T11:12:12", + "TransactionId": 68134654, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 233, + "CustomerInfo": 19633954, + "PaymentType": "Credit Card" + }, + { + "Id": 1496, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2019-08-05T13:33:36", + "TransactionId": 97376990, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 960, + "CustomerInfo": 73208886, + "PaymentType": "Debit Card" + }, + { + "Id": 1497, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2017-05-14T18:53:34", + "TransactionId": 59640715, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 226, + "CustomerInfo": 65367553, + "PaymentType": "Debit Card" + }, + { + "Id": 1498, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2016-03-22T12:36:17", + "TransactionId": 80984161, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 353, + "CustomerInfo": 55404921, + "PaymentType": "Debit Card" + }, + { + "Id": 1499, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2016-06-25T09:17:51", + "TransactionId": 39619502, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 825, + "CustomerInfo": 16240852, + "PaymentType": "Cash" + }, + { + "Id": 1500, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-09-16T12:41:20", + "TransactionId": 29028835, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 914, + "CustomerInfo": 88093095, + "PaymentType": "Cash" + }, + { + "Id": 1501, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2017-09-28T15:30:40", + "TransactionId": 80459374, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 244, + "CustomerInfo": 89272661, + "PaymentType": "Cash" + }, + { + "Id": 1502, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2016-11-17T14:06:26", + "TransactionId": 2462227, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 842, + "CustomerInfo": 47734768, + "PaymentType": "Credit Card" + }, + { + "Id": 1503, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-01-29T09:26:47", + "TransactionId": 44477554, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 396, + "CustomerInfo": 6820109, + "PaymentType": "Debit Card" + }, + { + "Id": 1504, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2018-10-27T19:31:44", + "TransactionId": 32649158, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 235, + "CustomerInfo": 92015875, + "PaymentType": "Cash" + }, + { + "Id": 1505, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2018-12-01T18:48:06", + "TransactionId": 46848503, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 599, + "CustomerInfo": 76325349, + "PaymentType": "Credit Card" + }, + { + "Id": 1506, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-01-17T09:33:16", + "TransactionId": 42295031, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 809, + "CustomerInfo": 87946537, + "PaymentType": "Credit Card" + }, + { + "Id": 1507, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2018-10-12T17:43:00", + "TransactionId": 96872588, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 709, + "CustomerInfo": 59614871, + "PaymentType": "Cash" + }, + { + "Id": 1508, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-10-03T08:42:00", + "TransactionId": 32093897, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 404, + "CustomerInfo": 13693428, + "PaymentType": "Cash" + }, + { + "Id": 1509, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-10-30T15:58:45", + "TransactionId": 63042840, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 699, + "CustomerInfo": 37422574, + "PaymentType": "Cash" + }, + { + "Id": 1510, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-01-02T09:26:30", + "TransactionId": 79341952, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 942, + "CustomerInfo": 59968517, + "PaymentType": "Debit Card" + }, + { + "Id": 1511, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2016-01-25T18:40:45", + "TransactionId": 40036095, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 872, + "CustomerInfo": 55080217, + "PaymentType": "Debit Card" + }, + { + "Id": 1512, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-08-07T08:37:24", + "TransactionId": 52304903, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 391, + "CustomerInfo": 29578020, + "PaymentType": "Debit Card" + }, + { + "Id": 1513, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-02-02T08:35:40", + "TransactionId": 86733488, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 96432743, + "PaymentType": "Credit Card" + }, + { + "Id": 1514, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2017-07-24T11:37:15", + "TransactionId": 90893540, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 990, + "CustomerInfo": 76952139, + "PaymentType": "Debit Card" + }, + { + "Id": 1515, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2019-01-31T14:39:07", + "TransactionId": 75804840, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 67, + "CustomerInfo": 26871629, + "PaymentType": "Credit Card" + }, + { + "Id": 1516, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2019-04-28T09:11:31", + "TransactionId": 78380993, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 694, + "CustomerInfo": 94226423, + "PaymentType": "Credit Card" + }, + { + "Id": 1517, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-03-02T07:48:35", + "TransactionId": 36421288, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 592, + "CustomerInfo": 58422282, + "PaymentType": "Debit Card" + }, + { + "Id": 1518, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2019-01-24T16:15:27", + "TransactionId": 69178148, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 7798860, + "PaymentType": "Cash" + }, + { + "Id": 1519, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2018-09-18T11:48:46", + "TransactionId": 20594210, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 454, + "CustomerInfo": 97842857, + "PaymentType": "Cash" + }, + { + "Id": 1520, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2019-06-19T11:58:51", + "TransactionId": 26937625, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 706, + "CustomerInfo": 69067119, + "PaymentType": "Credit Card" + }, + { + "Id": 1521, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2016-07-11T16:38:38", + "TransactionId": 75967371, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 248, + "CustomerInfo": 2599407, + "PaymentType": "Debit Card" + }, + { + "Id": 1522, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-08-03T08:07:35", + "TransactionId": 85385536, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 676, + "CustomerInfo": 49330619, + "PaymentType": "Cash" + }, + { + "Id": 1523, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-01-13T13:47:00", + "TransactionId": 6910157, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 8, + "CustomerInfo": 53956507, + "PaymentType": "Credit Card" + }, + { + "Id": 1524, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2017-11-15T13:52:54", + "TransactionId": 13834270, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 7, + "CustomerInfo": 393891, + "PaymentType": "Debit Card" + }, + { + "Id": 1525, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2018-08-22T13:59:14", + "TransactionId": 32845226, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 760, + "CustomerInfo": 31461227, + "PaymentType": "Cash" + }, + { + "Id": 1526, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-11-29T08:47:20", + "TransactionId": 51961327, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 490, + "CustomerInfo": 74889363, + "PaymentType": "Cash" + }, + { + "Id": 1527, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-11-13T17:06:43", + "TransactionId": 48740237, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 416, + "CustomerInfo": 72374265, + "PaymentType": "Cash" + }, + { + "Id": 1528, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-07-23T18:37:26", + "TransactionId": 61578429, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 785, + "CustomerInfo": 63935545, + "PaymentType": "Debit Card" + }, + { + "Id": 1529, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2018-09-26T13:19:55", + "TransactionId": 73359141, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 531, + "CustomerInfo": 59012906, + "PaymentType": "Credit Card" + }, + { + "Id": 1530, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2019-06-12T16:24:49", + "TransactionId": 65498978, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 321, + "CustomerInfo": 77140342, + "PaymentType": "Debit Card" + }, + { + "Id": 1531, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2016-07-14T18:31:06", + "TransactionId": 224781, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 912, + "CustomerInfo": 81047399, + "PaymentType": "Debit Card" + }, + { + "Id": 1532, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2019-11-29T16:15:45", + "TransactionId": 66484695, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 220, + "CustomerInfo": 63516193, + "PaymentType": "Credit Card" + }, + { + "Id": 1533, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-07-29T16:03:22", + "TransactionId": 57915254, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 858, + "CustomerInfo": 10108986, + "PaymentType": "Credit Card" + }, + { + "Id": 1534, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-11-05T13:49:09", + "TransactionId": 6103116, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 966, + "CustomerInfo": 42712634, + "PaymentType": "Debit Card" + }, + { + "Id": 1535, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-11-06T16:32:18", + "TransactionId": 94523247, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 70, + "CustomerInfo": 72800537, + "PaymentType": "Cash" + }, + { + "Id": 1536, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-04-22T18:59:11", + "TransactionId": 86260749, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 682, + "CustomerInfo": 51227989, + "PaymentType": "Credit Card" + }, + { + "Id": 1537, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2018-05-03T15:30:49", + "TransactionId": 18435109, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 830, + "CustomerInfo": 87800534, + "PaymentType": "Cash" + }, + { + "Id": 1538, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2019-03-30T07:09:42", + "TransactionId": 87243711, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 138, + "CustomerInfo": 31015467, + "PaymentType": "Cash" + }, + { + "Id": 1539, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-04-04T16:29:43", + "TransactionId": 64081200, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 90, + "CustomerInfo": 69414509, + "PaymentType": "Cash" + }, + { + "Id": 1540, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-08-13T18:50:15", + "TransactionId": 75643507, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 645, + "CustomerInfo": 22231752, + "PaymentType": "Debit Card" + }, + { + "Id": 1541, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2016-06-04T19:41:14", + "TransactionId": 2069039, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 5889123, + "PaymentType": "Debit Card" + }, + { + "Id": 1542, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-07-23T14:13:55", + "TransactionId": 30303491, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 328, + "CustomerInfo": 65131299, + "PaymentType": "Cash" + }, + { + "Id": 1543, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2019-01-03T17:34:57", + "TransactionId": 84206824, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 973, + "CustomerInfo": 22909427, + "PaymentType": "Credit Card" + }, + { + "Id": 1544, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-09-25T19:11:00", + "TransactionId": 14462836, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 775, + "CustomerInfo": 98332480, + "PaymentType": "Cash" + }, + { + "Id": 1545, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2018-01-13T08:14:04", + "TransactionId": 74895086, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 888, + "CustomerInfo": 14687794, + "PaymentType": "Debit Card" + }, + { + "Id": 1546, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-08-23T12:50:33", + "TransactionId": 56878289, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 700, + "CustomerInfo": 73620999, + "PaymentType": "Debit Card" + }, + { + "Id": 1547, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-02-21T18:29:57", + "TransactionId": 22411861, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 48, + "CustomerInfo": 31311563, + "PaymentType": "Debit Card" + }, + { + "Id": 1548, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-06-14T14:29:11", + "TransactionId": 74331179, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 13, + "CustomerInfo": 38653186, + "PaymentType": "Debit Card" + }, + { + "Id": 1549, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2019-08-10T07:10:34", + "TransactionId": 5606184, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 63, + "CustomerInfo": 9714575, + "PaymentType": "Debit Card" + }, + { + "Id": 1550, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-10-14T19:54:20", + "TransactionId": 94914716, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 768, + "CustomerInfo": 61137398, + "PaymentType": "Credit Card" + }, + { + "Id": 1551, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-02-02T18:40:54", + "TransactionId": 25901115, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 64, + "CustomerInfo": 49611303, + "PaymentType": "Cash" + }, + { + "Id": 1552, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-04-22T18:21:01", + "TransactionId": 8331413, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 617, + "CustomerInfo": 82419836, + "PaymentType": "Debit Card" + }, + { + "Id": 1553, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-09-17T15:15:33", + "TransactionId": 64005429, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 740, + "CustomerInfo": 53672673, + "PaymentType": "Cash" + }, + { + "Id": 1554, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2017-06-13T07:46:51", + "TransactionId": 29038489, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 345, + "CustomerInfo": 93154166, + "PaymentType": "Credit Card" + }, + { + "Id": 1555, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-07-24T14:23:00", + "TransactionId": 69599445, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 541, + "CustomerInfo": 97494419, + "PaymentType": "Debit Card" + }, + { + "Id": 1556, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-10-08T19:03:56", + "TransactionId": 97782649, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 305, + "CustomerInfo": 69323032, + "PaymentType": "Cash" + }, + { + "Id": 1557, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2018-06-16T07:20:21", + "TransactionId": 43374916, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 449, + "CustomerInfo": 66217327, + "PaymentType": "Cash" + }, + { + "Id": 1558, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-01-18T19:30:26", + "TransactionId": 58075622, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 959, + "CustomerInfo": 58368268, + "PaymentType": "Cash" + }, + { + "Id": 1559, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2018-09-03T09:57:45", + "TransactionId": 32086242, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 675, + "CustomerInfo": 42311475, + "PaymentType": "Debit Card" + }, + { + "Id": 1560, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2017-11-21T11:44:01", + "TransactionId": 54577851, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 37130263, + "PaymentType": "Debit Card" + }, + { + "Id": 1561, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-07-06T17:46:54", + "TransactionId": 64176631, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 400, + "CustomerInfo": 77805514, + "PaymentType": "Credit Card" + }, + { + "Id": 1562, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-08-27T11:27:36", + "TransactionId": 21846907, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 878, + "CustomerInfo": 29303038, + "PaymentType": "Debit Card" + }, + { + "Id": 1563, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-04-11T12:16:42", + "TransactionId": 83266360, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 28248385, + "PaymentType": "Debit Card" + }, + { + "Id": 1564, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-06-04T14:48:12", + "TransactionId": 51597431, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 270, + "CustomerInfo": 72573285, + "PaymentType": "Cash" + }, + { + "Id": 1565, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-07-26T09:45:30", + "TransactionId": 45620044, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 695, + "CustomerInfo": 67216090, + "PaymentType": "Credit Card" + }, + { + "Id": 1566, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2019-08-28T08:39:16", + "TransactionId": 70839791, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 443, + "CustomerInfo": 25591576, + "PaymentType": "Debit Card" + }, + { + "Id": 1567, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-07-29T08:27:53", + "TransactionId": 58624512, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 548, + "CustomerInfo": 67734242, + "PaymentType": "Credit Card" + }, + { + "Id": 1568, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-03-17T18:39:01", + "TransactionId": 73594510, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 867, + "CustomerInfo": 49663144, + "PaymentType": "Debit Card" + }, + { + "Id": 1569, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2018-10-06T13:20:47", + "TransactionId": 50727803, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 148, + "CustomerInfo": 91892995, + "PaymentType": "Credit Card" + }, + { + "Id": 1570, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-10-08T09:42:46", + "TransactionId": 78717551, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 116, + "CustomerInfo": 58362290, + "PaymentType": "Debit Card" + }, + { + "Id": 1571, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2016-10-27T12:26:21", + "TransactionId": 47373774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 315, + "CustomerInfo": 25234780, + "PaymentType": "Cash" + }, + { + "Id": 1572, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2018-02-10T19:20:38", + "TransactionId": 5560686, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 702, + "CustomerInfo": 40696374, + "PaymentType": "Debit Card" + }, + { + "Id": 1573, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-05-26T15:29:40", + "TransactionId": 20520352, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 505, + "CustomerInfo": 65993770, + "PaymentType": "Cash" + }, + { + "Id": 1574, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2018-03-27T14:41:17", + "TransactionId": 63442470, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 215, + "CustomerInfo": 60840974, + "PaymentType": "Cash" + }, + { + "Id": 1575, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-07-16T14:29:37", + "TransactionId": 29843905, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 465, + "CustomerInfo": 39879517, + "PaymentType": "Credit Card" + }, + { + "Id": 1576, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-04-30T13:40:48", + "TransactionId": 82721250, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 258, + "CustomerInfo": 99755924, + "PaymentType": "Debit Card" + }, + { + "Id": 1577, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-06-23T11:14:38", + "TransactionId": 61742769, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 933, + "CustomerInfo": 34679245, + "PaymentType": "Debit Card" + }, + { + "Id": 1578, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2017-05-18T07:43:32", + "TransactionId": 38251246, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 704, + "CustomerInfo": 44164802, + "PaymentType": "Credit Card" + }, + { + "Id": 1579, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-12-20T15:12:58", + "TransactionId": 25864120, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 868, + "CustomerInfo": 20178359, + "PaymentType": "Debit Card" + }, + { + "Id": 1580, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2016-04-17T12:20:36", + "TransactionId": 91065448, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 427, + "CustomerInfo": 64118924, + "PaymentType": "Debit Card" + }, + { + "Id": 1581, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-02-23T10:05:14", + "TransactionId": 21627187, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 620, + "CustomerInfo": 52314012, + "PaymentType": "Debit Card" + }, + { + "Id": 1582, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-02-10T12:05:37", + "TransactionId": 67321663, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 634, + "CustomerInfo": 38306158, + "PaymentType": "Debit Card" + }, + { + "Id": 1583, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2016-12-15T10:59:05", + "TransactionId": 81998360, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 343, + "CustomerInfo": 74008880, + "PaymentType": "Credit Card" + }, + { + "Id": 1584, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2019-03-19T08:15:13", + "TransactionId": 77693345, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 171, + "CustomerInfo": 69178823, + "PaymentType": "Debit Card" + }, + { + "Id": 1585, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2018-05-30T08:52:05", + "TransactionId": 91895545, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 92965433, + "PaymentType": "Credit Card" + }, + { + "Id": 1586, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2019-02-08T08:13:55", + "TransactionId": 53286429, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 576, + "CustomerInfo": 37432032, + "PaymentType": "Cash" + }, + { + "Id": 1587, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-12-15T08:17:40", + "TransactionId": 29602405, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 902, + "CustomerInfo": 8896498, + "PaymentType": "Cash" + }, + { + "Id": 1588, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2016-06-16T12:23:28", + "TransactionId": 94750211, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 278, + "CustomerInfo": 69396934, + "PaymentType": "Cash" + }, + { + "Id": 1589, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-11-09T13:20:12", + "TransactionId": 21769307, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 595, + "CustomerInfo": 38239449, + "PaymentType": "Credit Card" + }, + { + "Id": 1590, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-05-07T18:35:08", + "TransactionId": 50267523, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 832, + "CustomerInfo": 53067223, + "PaymentType": "Cash" + }, + { + "Id": 1591, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-01-21T09:00:17", + "TransactionId": 18262990, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 691, + "CustomerInfo": 9255002, + "PaymentType": "Debit Card" + }, + { + "Id": 1592, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2019-11-10T14:33:30", + "TransactionId": 46022662, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 673, + "CustomerInfo": 15829941, + "PaymentType": "Debit Card" + }, + { + "Id": 1593, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-10-25T17:16:05", + "TransactionId": 23812798, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 964, + "CustomerInfo": 74211280, + "PaymentType": "Credit Card" + }, + { + "Id": 1594, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-01-18T10:40:39", + "TransactionId": 54968421, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 565, + "CustomerInfo": 92826007, + "PaymentType": "Credit Card" + }, + { + "Id": 1595, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-01-17T19:51:53", + "TransactionId": 83122255, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 111, + "CustomerInfo": 39459192, + "PaymentType": "Cash" + }, + { + "Id": 1596, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2017-03-15T14:05:25", + "TransactionId": 15827883, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 90638245, + "PaymentType": "Credit Card" + }, + { + "Id": 1597, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2019-01-14T18:27:22", + "TransactionId": 13128030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 356, + "CustomerInfo": 10045467, + "PaymentType": "Debit Card" + }, + { + "Id": 1598, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-10-19T10:32:44", + "TransactionId": 11699531, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 569, + "CustomerInfo": 62777736, + "PaymentType": "Debit Card" + }, + { + "Id": 1599, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2016-05-28T17:14:38", + "TransactionId": 67596308, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 386, + "CustomerInfo": 16434756, + "PaymentType": "Cash" + }, + { + "Id": 1600, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2016-02-20T12:20:36", + "TransactionId": 9852769, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 22, + "CustomerInfo": 78657483, + "PaymentType": "Credit Card" + }, + { + "Id": 1601, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2018-05-30T07:55:29", + "TransactionId": 20397985, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 771, + "CustomerInfo": 10403516, + "PaymentType": "Credit Card" + }, + { + "Id": 1602, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2019-01-09T08:46:45", + "TransactionId": 40797344, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 321, + "CustomerInfo": 32137840, + "PaymentType": "Credit Card" + }, + { + "Id": 1603, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-03-06T08:36:40", + "TransactionId": 93071338, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 265, + "CustomerInfo": 52888470, + "PaymentType": "Debit Card" + }, + { + "Id": 1604, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2016-06-22T11:06:43", + "TransactionId": 94850013, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 549, + "CustomerInfo": 27266961, + "PaymentType": "Debit Card" + }, + { + "Id": 1605, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2018-08-31T14:08:53", + "TransactionId": 10288467, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 791, + "CustomerInfo": 55454245, + "PaymentType": "Cash" + }, + { + "Id": 1606, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-02-27T19:37:38", + "TransactionId": 44248605, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 213, + "CustomerInfo": 20835924, + "PaymentType": "Debit Card" + }, + { + "Id": 1607, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-06-02T07:54:12", + "TransactionId": 1976026, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 998, + "CustomerInfo": 13107834, + "PaymentType": "Cash" + }, + { + "Id": 1608, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2019-04-07T15:11:23", + "TransactionId": 51626604, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 86, + "CustomerInfo": 20194195, + "PaymentType": "Debit Card" + }, + { + "Id": 1609, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-12-26T16:25:49", + "TransactionId": 12919208, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 753, + "CustomerInfo": 93155984, + "PaymentType": "Debit Card" + }, + { + "Id": 1610, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-09-18T10:15:19", + "TransactionId": 32959524, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 751, + "CustomerInfo": 53254110, + "PaymentType": "Debit Card" + }, + { + "Id": 1611, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2017-01-28T08:35:40", + "TransactionId": 98823355, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 31943894, + "PaymentType": "Credit Card" + }, + { + "Id": 1612, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2017-09-04T12:10:05", + "TransactionId": 32262910, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 359, + "CustomerInfo": 6920522, + "PaymentType": "Credit Card" + }, + { + "Id": 1613, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2019-08-03T11:24:52", + "TransactionId": 70806042, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 539, + "CustomerInfo": 48762870, + "PaymentType": "Credit Card" + }, + { + "Id": 1614, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-10-12T14:57:42", + "TransactionId": 89385801, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 822, + "CustomerInfo": 42058584, + "PaymentType": "Credit Card" + }, + { + "Id": 1615, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-05-01T13:42:58", + "TransactionId": 97301761, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 638, + "CustomerInfo": 47421227, + "PaymentType": "Debit Card" + }, + { + "Id": 1616, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2018-05-01T18:00:52", + "TransactionId": 60130274, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 703, + "CustomerInfo": 13261934, + "PaymentType": "Credit Card" + }, + { + "Id": 1617, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-04-21T19:13:35", + "TransactionId": 49479038, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 634, + "CustomerInfo": 61748907, + "PaymentType": "Cash" + }, + { + "Id": 1618, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2016-06-11T16:00:29", + "TransactionId": 54258252, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 152, + "CustomerInfo": 23445701, + "PaymentType": "Debit Card" + }, + { + "Id": 1619, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-03-28T17:34:05", + "TransactionId": 88582372, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 94497806, + "PaymentType": "Debit Card" + }, + { + "Id": 1620, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2017-12-30T07:21:04", + "TransactionId": 409002, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 879, + "CustomerInfo": 71016754, + "PaymentType": "Debit Card" + }, + { + "Id": 1621, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-11-19T10:29:34", + "TransactionId": 28872267, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 567, + "CustomerInfo": 40643336, + "PaymentType": "Credit Card" + }, + { + "Id": 1622, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-10-06T07:02:56", + "TransactionId": 58170222, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 86, + "CustomerInfo": 15243981, + "PaymentType": "Credit Card" + }, + { + "Id": 1623, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2018-10-03T13:03:39", + "TransactionId": 77908019, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 66611921, + "PaymentType": "Debit Card" + }, + { + "Id": 1624, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-01-24T15:23:54", + "TransactionId": 32419128, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 89, + "CustomerInfo": 99139531, + "PaymentType": "Cash" + }, + { + "Id": 1625, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2019-07-18T17:26:01", + "TransactionId": 86492700, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 522, + "CustomerInfo": 74357192, + "PaymentType": "Debit Card" + }, + { + "Id": 1626, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2017-04-16T07:59:48", + "TransactionId": 33900734, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 685, + "CustomerInfo": 62670088, + "PaymentType": "Cash" + }, + { + "Id": 1627, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-07-24T15:13:15", + "TransactionId": 50361801, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 85610333, + "PaymentType": "Credit Card" + }, + { + "Id": 1628, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2017-12-30T07:30:52", + "TransactionId": 6439290, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 662, + "CustomerInfo": 2930631, + "PaymentType": "Debit Card" + }, + { + "Id": 1629, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2017-07-01T16:41:31", + "TransactionId": 12255518, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 76, + "CustomerInfo": 27032594, + "PaymentType": "Credit Card" + }, + { + "Id": 1630, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2016-08-17T09:06:20", + "TransactionId": 67719689, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 82, + "CustomerInfo": 72118771, + "PaymentType": "Cash" + }, + { + "Id": 1631, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-05-24T19:57:48", + "TransactionId": 74771170, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 14845003, + "PaymentType": "Credit Card" + }, + { + "Id": 1632, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-12-14T10:54:37", + "TransactionId": 71174922, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 951, + "CustomerInfo": 53577871, + "PaymentType": "Cash" + }, + { + "Id": 1633, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2016-01-04T08:56:41", + "TransactionId": 32925405, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 518, + "CustomerInfo": 19260182, + "PaymentType": "Debit Card" + }, + { + "Id": 1634, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2017-03-01T08:21:42", + "TransactionId": 64968290, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 630, + "CustomerInfo": 80191412, + "PaymentType": "Debit Card" + }, + { + "Id": 1635, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2017-12-03T14:51:04", + "TransactionId": 1028256, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 262, + "CustomerInfo": 83048447, + "PaymentType": "Cash" + }, + { + "Id": 1636, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2016-05-22T19:58:05", + "TransactionId": 95383082, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 148, + "CustomerInfo": 88259798, + "PaymentType": "Cash" + }, + { + "Id": 1637, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2018-08-19T14:15:30", + "TransactionId": 38445640, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 974, + "CustomerInfo": 41872427, + "PaymentType": "Cash" + }, + { + "Id": 1638, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2019-12-18T18:14:15", + "TransactionId": 95770537, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 268, + "CustomerInfo": 84402032, + "PaymentType": "Debit Card" + }, + { + "Id": 1639, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-07-05T15:05:28", + "TransactionId": 49005407, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 849, + "CustomerInfo": 30410236, + "PaymentType": "Cash" + }, + { + "Id": 1640, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-10-30T07:19:29", + "TransactionId": 12189758, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 403, + "CustomerInfo": 56043698, + "PaymentType": "Credit Card" + }, + { + "Id": 1641, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2019-08-02T07:25:24", + "TransactionId": 82508071, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 879, + "CustomerInfo": 27802104, + "PaymentType": "Cash" + }, + { + "Id": 1642, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-11-04T11:26:27", + "TransactionId": 70540713, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 804, + "CustomerInfo": 18467281, + "PaymentType": "Credit Card" + }, + { + "Id": 1643, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-08-04T08:27:53", + "TransactionId": 85166968, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 95, + "CustomerInfo": 30006488, + "PaymentType": "Debit Card" + }, + { + "Id": 1644, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-06-22T16:42:14", + "TransactionId": 42620275, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 337, + "CustomerInfo": 571670, + "PaymentType": "Credit Card" + }, + { + "Id": 1645, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2017-06-22T09:35:34", + "TransactionId": 27783064, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 745, + "CustomerInfo": 59429255, + "PaymentType": "Credit Card" + }, + { + "Id": 1646, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2016-05-09T16:44:24", + "TransactionId": 64865457, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 483, + "CustomerInfo": 26606482, + "PaymentType": "Cash" + }, + { + "Id": 1647, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2018-10-08T08:38:15", + "TransactionId": 77181945, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 459, + "CustomerInfo": 87370276, + "PaymentType": "Debit Card" + }, + { + "Id": 1648, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2019-01-28T13:18:37", + "TransactionId": 62629489, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 280, + "CustomerInfo": 98173316, + "PaymentType": "Credit Card" + }, + { + "Id": 1649, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2016-12-22T09:20:10", + "TransactionId": 2725778, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 388, + "CustomerInfo": 77579122, + "PaymentType": "Debit Card" + }, + { + "Id": 1650, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-03-16T16:29:51", + "TransactionId": 75766911, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 819, + "CustomerInfo": 10010885, + "PaymentType": "Credit Card" + }, + { + "Id": 1651, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2018-08-24T12:40:45", + "TransactionId": 29491561, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 357, + "CustomerInfo": 8872694, + "PaymentType": "Debit Card" + }, + { + "Id": 1652, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2016-02-09T12:02:44", + "TransactionId": 14730249, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 801, + "CustomerInfo": 87296126, + "PaymentType": "Credit Card" + }, + { + "Id": 1653, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2017-01-09T13:03:22", + "TransactionId": 63366647, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 749, + "CustomerInfo": 13169670, + "PaymentType": "Credit Card" + }, + { + "Id": 1654, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-02-04T08:19:49", + "TransactionId": 96511072, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 685, + "CustomerInfo": 4599350, + "PaymentType": "Credit Card" + }, + { + "Id": 1655, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-09-23T18:54:52", + "TransactionId": 54674989, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 61800524, + "PaymentType": "Debit Card" + }, + { + "Id": 1656, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2017-03-23T11:53:31", + "TransactionId": 32869505, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 492, + "CustomerInfo": 20851958, + "PaymentType": "Cash" + }, + { + "Id": 1657, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2019-01-15T10:54:37", + "TransactionId": 75416983, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 400, + "CustomerInfo": 38981657, + "PaymentType": "Cash" + }, + { + "Id": 1658, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-05-04T16:59:48", + "TransactionId": 62329389, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 176, + "CustomerInfo": 94076707, + "PaymentType": "Debit Card" + }, + { + "Id": 1659, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2017-01-10T11:16:05", + "TransactionId": 23997577, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 79994046, + "PaymentType": "Cash" + }, + { + "Id": 1660, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-06-06T13:09:59", + "TransactionId": 78924372, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 373, + "CustomerInfo": 40226415, + "PaymentType": "Credit Card" + }, + { + "Id": 1661, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2016-05-06T09:14:33", + "TransactionId": 32704541, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 363, + "CustomerInfo": 1980702, + "PaymentType": "Debit Card" + }, + { + "Id": 1662, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2016-02-25T15:53:00", + "TransactionId": 81010812, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 949, + "CustomerInfo": 76634948, + "PaymentType": "Cash" + }, + { + "Id": 1663, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2019-06-19T12:45:56", + "TransactionId": 99200547, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 875, + "CustomerInfo": 13721753, + "PaymentType": "Credit Card" + }, + { + "Id": 1664, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2016-04-27T14:43:52", + "TransactionId": 11520772, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 662, + "CustomerInfo": 21016173, + "PaymentType": "Credit Card" + }, + { + "Id": 1665, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2016-12-10T11:05:17", + "TransactionId": 9706595, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 991, + "CustomerInfo": 55850052, + "PaymentType": "Cash" + }, + { + "Id": 1666, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-04-10T15:03:45", + "TransactionId": 24816733, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 516, + "CustomerInfo": 48592021, + "PaymentType": "Credit Card" + }, + { + "Id": 1667, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2019-12-14T11:02:33", + "TransactionId": 96344633, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 552, + "CustomerInfo": 54620094, + "PaymentType": "Cash" + }, + { + "Id": 1668, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-04-27T13:30:52", + "TransactionId": 71545703, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 902, + "CustomerInfo": 3084387, + "PaymentType": "Cash" + }, + { + "Id": 1669, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2018-07-05T07:17:02", + "TransactionId": 29504802, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 372, + "CustomerInfo": 7494578, + "PaymentType": "Debit Card" + }, + { + "Id": 1670, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-05-10T08:29:02", + "TransactionId": 68211901, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 771, + "CustomerInfo": 6844675, + "PaymentType": "Cash" + }, + { + "Id": 1671, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2017-09-20T14:58:34", + "TransactionId": 4972266, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 149, + "CustomerInfo": 24621279, + "PaymentType": "Credit Card" + }, + { + "Id": 1672, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2017-12-28T08:23:17", + "TransactionId": 74173269, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 499, + "CustomerInfo": 46181842, + "PaymentType": "Cash" + }, + { + "Id": 1673, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-05-13T09:13:41", + "TransactionId": 16284468, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 263, + "CustomerInfo": 29607796, + "PaymentType": "Debit Card" + }, + { + "Id": 1674, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-08-20T07:17:02", + "TransactionId": 76999179, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 548, + "CustomerInfo": 93847078, + "PaymentType": "Credit Card" + }, + { + "Id": 1675, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2017-12-20T09:11:40", + "TransactionId": 59720466, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 915, + "CustomerInfo": 43730545, + "PaymentType": "Cash" + }, + { + "Id": 1676, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2018-04-24T15:35:00", + "TransactionId": 41537965, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 60, + "CustomerInfo": 24378811, + "PaymentType": "Credit Card" + }, + { + "Id": 1677, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-03-26T14:59:43", + "TransactionId": 89578112, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 190, + "CustomerInfo": 91916543, + "PaymentType": "Debit Card" + }, + { + "Id": 1678, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-11-23T08:27:01", + "TransactionId": 28594147, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 957, + "CustomerInfo": 9808395, + "PaymentType": "Credit Card" + }, + { + "Id": 1679, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2019-06-06T12:12:49", + "TransactionId": 58666545, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 988, + "CustomerInfo": 31770260, + "PaymentType": "Cash" + }, + { + "Id": 1680, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2016-12-31T12:34:16", + "TransactionId": 71939174, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 103, + "CustomerInfo": 93717481, + "PaymentType": "Cash" + }, + { + "Id": 1681, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2017-08-02T17:18:23", + "TransactionId": 65889404, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 987, + "CustomerInfo": 27698867, + "PaymentType": "Cash" + }, + { + "Id": 1682, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2016-07-29T13:23:48", + "TransactionId": 81899871, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 550, + "CustomerInfo": 64251919, + "PaymentType": "Credit Card" + }, + { + "Id": 1683, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-02-18T15:51:16", + "TransactionId": 65600358, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 183, + "CustomerInfo": 97716949, + "PaymentType": "Cash" + }, + { + "Id": 1684, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-04-18T08:29:37", + "TransactionId": 12381189, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 650, + "CustomerInfo": 65572377, + "PaymentType": "Cash" + }, + { + "Id": 1685, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-12-09T08:34:05", + "TransactionId": 24107496, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 179, + "CustomerInfo": 47137767, + "PaymentType": "Credit Card" + }, + { + "Id": 1686, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2016-10-23T13:11:43", + "TransactionId": 93338280, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 129, + "CustomerInfo": 54950175, + "PaymentType": "Credit Card" + }, + { + "Id": 1687, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-05-10T09:20:01", + "TransactionId": 64142226, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 319, + "CustomerInfo": 63943940, + "PaymentType": "Debit Card" + }, + { + "Id": 1688, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-03-12T09:55:44", + "TransactionId": 53979007, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 536, + "CustomerInfo": 1648980, + "PaymentType": "Credit Card" + }, + { + "Id": 1689, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-10-18T08:40:51", + "TransactionId": 7141007, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 446, + "CustomerInfo": 10901452, + "PaymentType": "Debit Card" + }, + { + "Id": 1690, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-11-03T18:34:51", + "TransactionId": 62528942, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 367, + "CustomerInfo": 86324381, + "PaymentType": "Debit Card" + }, + { + "Id": 1691, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2018-04-17T07:03:56", + "TransactionId": 89975385, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 706, + "CustomerInfo": 16595216, + "PaymentType": "Credit Card" + }, + { + "Id": 1692, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-12-27T18:25:38", + "TransactionId": 34975847, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 75, + "CustomerInfo": 16344342, + "PaymentType": "Cash" + }, + { + "Id": 1693, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2016-06-08T11:01:58", + "TransactionId": 3302230, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 426, + "CustomerInfo": 59335883, + "PaymentType": "Credit Card" + }, + { + "Id": 1694, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-10-18T16:39:30", + "TransactionId": 21469132, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 425, + "CustomerInfo": 29397346, + "PaymentType": "Debit Card" + }, + { + "Id": 1695, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2016-04-24T08:01:24", + "TransactionId": 7511194, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 87, + "CustomerInfo": 27406948, + "PaymentType": "Debit Card" + }, + { + "Id": 1696, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2016-07-29T19:33:53", + "TransactionId": 87085641, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 702, + "CustomerInfo": 74463871, + "PaymentType": "Debit Card" + }, + { + "Id": 1697, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2018-09-21T13:54:37", + "TransactionId": 61370591, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 26, + "CustomerInfo": 20483131, + "PaymentType": "Credit Card" + }, + { + "Id": 1698, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-05-21T17:47:28", + "TransactionId": 48631562, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 503, + "CustomerInfo": 10136503, + "PaymentType": "Credit Card" + }, + { + "Id": 1699, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2018-06-30T09:01:18", + "TransactionId": 52378933, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 381, + "CustomerInfo": 70861601, + "PaymentType": "Credit Card" + }, + { + "Id": 1700, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2019-09-13T10:20:38", + "TransactionId": 36426681, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 837, + "CustomerInfo": 6316638, + "PaymentType": "Cash" + }, + { + "Id": 1701, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2017-07-28T13:16:36", + "TransactionId": 31616036, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 345, + "CustomerInfo": 33600348, + "PaymentType": "Credit Card" + }, + { + "Id": 1702, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-09-14T17:28:02", + "TransactionId": 72691180, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 746, + "CustomerInfo": 550707, + "PaymentType": "Credit Card" + }, + { + "Id": 1703, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-12-13T10:21:30", + "TransactionId": 97363213, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 810, + "CustomerInfo": 42001617, + "PaymentType": "Cash" + }, + { + "Id": 1704, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2019-09-24T19:57:22", + "TransactionId": 71644920, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 91, + "CustomerInfo": 11656385, + "PaymentType": "Cash" + }, + { + "Id": 1705, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2017-10-26T17:54:49", + "TransactionId": 46885646, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 693, + "CustomerInfo": 93025922, + "PaymentType": "Credit Card" + }, + { + "Id": 1706, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-05-26T14:20:15", + "TransactionId": 38858515, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 268, + "CustomerInfo": 73979183, + "PaymentType": "Debit Card" + }, + { + "Id": 1707, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-11-08T14:06:17", + "TransactionId": 5553103, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 825, + "CustomerInfo": 44046044, + "PaymentType": "Debit Card" + }, + { + "Id": 1708, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2016-05-31T19:06:49", + "TransactionId": 34842837, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 162, + "CustomerInfo": 68458687, + "PaymentType": "Credit Card" + }, + { + "Id": 1709, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-04-30T11:37:58", + "TransactionId": 63740006, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 38721127, + "PaymentType": "Credit Card" + }, + { + "Id": 1710, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2018-10-05T17:09:10", + "TransactionId": 38242885, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 522, + "CustomerInfo": 72036759, + "PaymentType": "Credit Card" + }, + { + "Id": 1711, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-05-03T11:18:40", + "TransactionId": 44487132, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 209, + "CustomerInfo": 67318687, + "PaymentType": "Debit Card" + }, + { + "Id": 1712, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2016-05-05T19:00:12", + "TransactionId": 67935212, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 713, + "CustomerInfo": 12132509, + "PaymentType": "Credit Card" + }, + { + "Id": 1713, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-07-17T16:49:35", + "TransactionId": 12631530, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 59, + "CustomerInfo": 39102344, + "PaymentType": "Cash" + }, + { + "Id": 1714, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2019-03-25T07:30:09", + "TransactionId": 51904220, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 555, + "CustomerInfo": 3695356, + "PaymentType": "Credit Card" + }, + { + "Id": 1715, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-03-06T15:25:55", + "TransactionId": 41117933, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 369, + "CustomerInfo": 29759454, + "PaymentType": "Cash" + }, + { + "Id": 1716, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2016-12-30T18:17:00", + "TransactionId": 6119522, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 988, + "CustomerInfo": 76108549, + "PaymentType": "Credit Card" + }, + { + "Id": 1717, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-10-26T12:44:30", + "TransactionId": 79451251, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 563, + "CustomerInfo": 66050953, + "PaymentType": "Credit Card" + }, + { + "Id": 1718, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-10-27T17:35:23", + "TransactionId": 6820215, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 843, + "CustomerInfo": 64451500, + "PaymentType": "Credit Card" + }, + { + "Id": 1719, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2017-05-13T15:16:16", + "TransactionId": 83776737, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 210, + "CustomerInfo": 12494825, + "PaymentType": "Credit Card" + }, + { + "Id": 1720, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2018-06-22T16:54:03", + "TransactionId": 13817984, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 162, + "CustomerInfo": 59246849, + "PaymentType": "Debit Card" + }, + { + "Id": 1721, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2019-02-01T09:39:45", + "TransactionId": 14922182, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 269, + "CustomerInfo": 98370829, + "PaymentType": "Credit Card" + }, + { + "Id": 1722, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-09-04T13:57:39", + "TransactionId": 49459964, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 983, + "CustomerInfo": 42127448, + "PaymentType": "Cash" + }, + { + "Id": 1723, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2019-05-25T07:43:41", + "TransactionId": 43415637, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 436, + "CustomerInfo": 439279, + "PaymentType": "Credit Card" + }, + { + "Id": 1724, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-08-13T19:44:59", + "TransactionId": 94819577, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 709, + "CustomerInfo": 2232118, + "PaymentType": "Credit Card" + }, + { + "Id": 1725, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-03-13T11:14:04", + "TransactionId": 56831109, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 178, + "CustomerInfo": 40741885, + "PaymentType": "Cash" + }, + { + "Id": 1726, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2016-02-14T18:44:47", + "TransactionId": 69428028, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 673, + "CustomerInfo": 47972899, + "PaymentType": "Cash" + }, + { + "Id": 1727, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-06-29T17:36:23", + "TransactionId": 28527570, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 604, + "CustomerInfo": 91348004, + "PaymentType": "Cash" + }, + { + "Id": 1728, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-12-05T14:13:29", + "TransactionId": 78616745, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 978, + "CustomerInfo": 84238227, + "PaymentType": "Cash" + }, + { + "Id": 1729, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2018-08-29T10:00:20", + "TransactionId": 15300271, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 637, + "CustomerInfo": 54547758, + "PaymentType": "Cash" + }, + { + "Id": 1730, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-06-25T08:36:58", + "TransactionId": 34199787, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 255, + "CustomerInfo": 23877869, + "PaymentType": "Cash" + }, + { + "Id": 1731, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2018-08-08T14:04:25", + "TransactionId": 71820996, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 538, + "CustomerInfo": 48314761, + "PaymentType": "Debit Card" + }, + { + "Id": 1732, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2017-05-24T09:38:18", + "TransactionId": 36759260, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 449, + "CustomerInfo": 54737523, + "PaymentType": "Cash" + }, + { + "Id": 1733, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2017-07-11T10:25:58", + "TransactionId": 74807441, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 4, + "CustomerInfo": 42181339, + "PaymentType": "Credit Card" + }, + { + "Id": 1734, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2018-08-17T14:10:36", + "TransactionId": 16042830, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 717, + "CustomerInfo": 94138335, + "PaymentType": "Credit Card" + }, + { + "Id": 1735, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2018-01-08T07:22:05", + "TransactionId": 37255246, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 589, + "CustomerInfo": 33800648, + "PaymentType": "Debit Card" + }, + { + "Id": 1736, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2018-02-10T11:30:03", + "TransactionId": 84864281, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 432, + "CustomerInfo": 6412986, + "PaymentType": "Cash" + }, + { + "Id": 1737, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2018-01-28T16:22:22", + "TransactionId": 35453053, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 212, + "CustomerInfo": 50262724, + "PaymentType": "Debit Card" + }, + { + "Id": 1738, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2019-05-19T09:58:45", + "TransactionId": 84770540, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 52, + "CustomerInfo": 71447274, + "PaymentType": "Cash" + }, + { + "Id": 1739, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2019-03-21T14:29:46", + "TransactionId": 30980019, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 546, + "CustomerInfo": 66144788, + "PaymentType": "Credit Card" + }, + { + "Id": 1740, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2016-08-15T18:03:01", + "TransactionId": 52718409, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 632, + "CustomerInfo": 94592295, + "PaymentType": "Credit Card" + }, + { + "Id": 1741, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2017-07-31T14:37:06", + "TransactionId": 73691599, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 620, + "CustomerInfo": 77417303, + "PaymentType": "Credit Card" + }, + { + "Id": 1742, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-11-06T19:13:18", + "TransactionId": 55382935, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 427, + "CustomerInfo": 12279214, + "PaymentType": "Credit Card" + }, + { + "Id": 1743, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2016-02-21T07:23:31", + "TransactionId": 25567376, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 501, + "CustomerInfo": 75091926, + "PaymentType": "Credit Card" + }, + { + "Id": 1744, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-06-25T07:37:12", + "TransactionId": 21605307, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 913, + "CustomerInfo": 46369123, + "PaymentType": "Debit Card" + }, + { + "Id": 1745, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2018-03-11T07:44:59", + "TransactionId": 17001536, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 23, + "CustomerInfo": 54901686, + "PaymentType": "Debit Card" + }, + { + "Id": 1746, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-12-17T12:00:17", + "TransactionId": 52651810, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 288, + "CustomerInfo": 23684511, + "PaymentType": "Credit Card" + }, + { + "Id": 1747, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-08-27T13:28:34", + "TransactionId": 49203354, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 667, + "CustomerInfo": 2449224, + "PaymentType": "Credit Card" + }, + { + "Id": 1748, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2016-03-16T07:08:07", + "TransactionId": 84656867, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 257, + "CustomerInfo": 348184, + "PaymentType": "Cash" + }, + { + "Id": 1749, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2017-06-15T15:11:57", + "TransactionId": 61182836, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 564, + "CustomerInfo": 440850, + "PaymentType": "Credit Card" + }, + { + "Id": 1750, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2016-03-02T12:49:41", + "TransactionId": 44276387, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 685, + "CustomerInfo": 2699821, + "PaymentType": "Debit Card" + }, + { + "Id": 1751, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2016-08-09T16:44:07", + "TransactionId": 16334749, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 892, + "CustomerInfo": 76964742, + "PaymentType": "Credit Card" + }, + { + "Id": 1752, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-11-29T15:17:34", + "TransactionId": 57329781, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 137, + "CustomerInfo": 10322670, + "PaymentType": "Cash" + }, + { + "Id": 1753, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-03-21T17:13:47", + "TransactionId": 10257945, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 591, + "CustomerInfo": 90164286, + "PaymentType": "Credit Card" + }, + { + "Id": 1754, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-06-30T16:31:52", + "TransactionId": 86899562, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 479, + "CustomerInfo": 77198761, + "PaymentType": "Cash" + }, + { + "Id": 1755, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2016-03-20T09:13:32", + "TransactionId": 28004778, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 237, + "CustomerInfo": 32967015, + "PaymentType": "Credit Card" + }, + { + "Id": 1756, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2019-07-22T13:24:14", + "TransactionId": 38224652, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 724, + "CustomerInfo": 11941170, + "PaymentType": "Debit Card" + }, + { + "Id": 1757, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-09-15T07:41:23", + "TransactionId": 69002264, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 442, + "CustomerInfo": 14503627, + "PaymentType": "Debit Card" + }, + { + "Id": 1758, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2017-12-27T13:26:41", + "TransactionId": 13186647, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 857, + "CustomerInfo": 81175262, + "PaymentType": "Debit Card" + }, + { + "Id": 1759, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-09-27T18:39:01", + "TransactionId": 78625113, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 55, + "CustomerInfo": 71432788, + "PaymentType": "Debit Card" + }, + { + "Id": 1760, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-01-17T17:10:11", + "TransactionId": 65411367, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 310, + "CustomerInfo": 19890182, + "PaymentType": "Credit Card" + }, + { + "Id": 1761, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2019-01-28T12:50:41", + "TransactionId": 58189681, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 981, + "CustomerInfo": 79522321, + "PaymentType": "Credit Card" + }, + { + "Id": 1762, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2016-05-04T08:01:49", + "TransactionId": 69851543, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 34, + "CustomerInfo": 40773437, + "PaymentType": "Cash" + }, + { + "Id": 1763, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-07-13T11:11:20", + "TransactionId": 1438408, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 37, + "CustomerInfo": 62555396, + "PaymentType": "Cash" + }, + { + "Id": 1764, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2019-12-22T10:22:22", + "TransactionId": 84907084, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 656, + "CustomerInfo": 80100870, + "PaymentType": "Credit Card" + }, + { + "Id": 1765, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2017-01-21T08:15:56", + "TransactionId": 1642386, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 699, + "CustomerInfo": 34933953, + "PaymentType": "Credit Card" + }, + { + "Id": 1766, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-05-11T07:57:39", + "TransactionId": 26187859, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 209, + "CustomerInfo": 88288056, + "PaymentType": "Debit Card" + }, + { + "Id": 1767, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2019-03-29T16:27:24", + "TransactionId": 50653766, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 957, + "CustomerInfo": 42453045, + "PaymentType": "Credit Card" + }, + { + "Id": 1768, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2017-08-20T18:21:53", + "TransactionId": 19407086, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 571, + "CustomerInfo": 28929263, + "PaymentType": "Cash" + }, + { + "Id": 1769, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-03-12T17:48:20", + "TransactionId": 28022929, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 837, + "CustomerInfo": 88821760, + "PaymentType": "Credit Card" + }, + { + "Id": 1770, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-03-03T16:42:40", + "TransactionId": 30009909, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 798, + "CustomerInfo": 9296763, + "PaymentType": "Debit Card" + }, + { + "Id": 1771, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2017-11-26T07:55:21", + "TransactionId": 17486879, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 33, + "CustomerInfo": 6141218, + "PaymentType": "Cash" + }, + { + "Id": 1772, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2017-10-03T17:01:24", + "TransactionId": 88726531, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 201, + "CustomerInfo": 26107262, + "PaymentType": "Debit Card" + }, + { + "Id": 1773, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-08-05T14:18:23", + "TransactionId": 50816441, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 912, + "CustomerInfo": 75855208, + "PaymentType": "Credit Card" + }, + { + "Id": 1774, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2017-09-24T16:51:53", + "TransactionId": 31217935, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 514, + "CustomerInfo": 55002623, + "PaymentType": "Credit Card" + }, + { + "Id": 1775, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-04-19T11:30:55", + "TransactionId": 38424244, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 13712221, + "PaymentType": "Credit Card" + }, + { + "Id": 1776, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2017-01-26T12:58:28", + "TransactionId": 50008318, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 974, + "CustomerInfo": 68470725, + "PaymentType": "Credit Card" + }, + { + "Id": 1777, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-12-20T11:23:17", + "TransactionId": 62059711, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 108, + "CustomerInfo": 4606975, + "PaymentType": "Credit Card" + }, + { + "Id": 1778, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2019-10-21T17:15:22", + "TransactionId": 25070914, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 557, + "CustomerInfo": 86572484, + "PaymentType": "Debit Card" + }, + { + "Id": 1779, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-09-15T13:39:30", + "TransactionId": 31980202, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 444, + "CustomerInfo": 87762234, + "PaymentType": "Credit Card" + }, + { + "Id": 1780, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2016-08-30T11:19:41", + "TransactionId": 92204215, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 185, + "CustomerInfo": 98863356, + "PaymentType": "Cash" + }, + { + "Id": 1781, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-03-27T07:07:15", + "TransactionId": 30117532, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 584, + "CustomerInfo": 33670130, + "PaymentType": "Cash" + }, + { + "Id": 1782, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-05-22T08:27:27", + "TransactionId": 88616932, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 93, + "CustomerInfo": 3141289, + "PaymentType": "Cash" + }, + { + "Id": 1783, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2018-06-03T07:42:23", + "TransactionId": 97903013, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 403, + "CustomerInfo": 97296880, + "PaymentType": "Debit Card" + }, + { + "Id": 1784, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2016-05-24T19:27:50", + "TransactionId": 93298478, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 113, + "CustomerInfo": 55029015, + "PaymentType": "Credit Card" + }, + { + "Id": 1785, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-03-28T15:24:46", + "TransactionId": 57660541, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 119, + "CustomerInfo": 30433074, + "PaymentType": "Credit Card" + }, + { + "Id": 1786, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-10-17T10:17:37", + "TransactionId": 39130637, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 235, + "CustomerInfo": 69557333, + "PaymentType": "Cash" + }, + { + "Id": 1787, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2019-09-12T10:22:22", + "TransactionId": 61526070, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 185, + "CustomerInfo": 19606373, + "PaymentType": "Debit Card" + }, + { + "Id": 1788, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2019-09-24T14:12:46", + "TransactionId": 64881938, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 767, + "CustomerInfo": 22834761, + "PaymentType": "Credit Card" + }, + { + "Id": 1789, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2016-01-03T11:54:14", + "TransactionId": 11168818, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 416, + "CustomerInfo": 7870775, + "PaymentType": "Cash" + }, + { + "Id": 1790, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2018-09-02T11:27:45", + "TransactionId": 88115630, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 197, + "CustomerInfo": 92527592, + "PaymentType": "Credit Card" + }, + { + "Id": 1791, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2019-09-30T10:11:25", + "TransactionId": 15643610, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 499, + "CustomerInfo": 33513351, + "PaymentType": "Debit Card" + }, + { + "Id": 1792, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2019-03-30T11:26:01", + "TransactionId": 85252374, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 934, + "CustomerInfo": 48391507, + "PaymentType": "Credit Card" + }, + { + "Id": 1793, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-08-17T16:24:40", + "TransactionId": 45647346, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 473, + "CustomerInfo": 98076814, + "PaymentType": "Cash" + }, + { + "Id": 1794, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2016-03-24T15:05:46", + "TransactionId": 49727846, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 317, + "CustomerInfo": 24856400, + "PaymentType": "Debit Card" + }, + { + "Id": 1795, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2019-06-16T11:30:12", + "TransactionId": 28689620, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 417, + "CustomerInfo": 98647943, + "PaymentType": "Credit Card" + }, + { + "Id": 1796, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-12-27T17:04:25", + "TransactionId": 47269958, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 733, + "CustomerInfo": 73629450, + "PaymentType": "Debit Card" + }, + { + "Id": 1797, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-01-05T12:18:17", + "TransactionId": 34470015, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 72, + "CustomerInfo": 77793618, + "PaymentType": "Credit Card" + }, + { + "Id": 1798, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-08-13T17:29:02", + "TransactionId": 69886557, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 940, + "CustomerInfo": 46047819, + "PaymentType": "Credit Card" + }, + { + "Id": 1799, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-09-16T11:29:20", + "TransactionId": 79555884, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 748, + "CustomerInfo": 55914844, + "PaymentType": "Debit Card" + }, + { + "Id": 1800, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2019-11-03T10:30:09", + "TransactionId": 64612583, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 853, + "CustomerInfo": 23426632, + "PaymentType": "Cash" + }, + { + "Id": 1801, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-07-17T16:18:37", + "TransactionId": 54252761, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 58, + "CustomerInfo": 30868457, + "PaymentType": "Credit Card" + }, + { + "Id": 1802, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2018-03-07T17:18:40", + "TransactionId": 90974959, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 50682660, + "PaymentType": "Cash" + }, + { + "Id": 1803, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2019-08-25T15:21:19", + "TransactionId": 46209309, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 959, + "CustomerInfo": 76595549, + "PaymentType": "Cash" + }, + { + "Id": 1804, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2018-03-06T16:37:21", + "TransactionId": 18678474, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 230, + "CustomerInfo": 19964736, + "PaymentType": "Cash" + }, + { + "Id": 1805, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2017-03-27T11:24:09", + "TransactionId": 68852738, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 730, + "CustomerInfo": 49023597, + "PaymentType": "Cash" + }, + { + "Id": 1806, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-01-11T07:44:41", + "TransactionId": 49411086, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 700, + "CustomerInfo": 80357915, + "PaymentType": "Debit Card" + }, + { + "Id": 1807, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2019-12-14T12:01:18", + "TransactionId": 96793542, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 306, + "CustomerInfo": 75917490, + "PaymentType": "Credit Card" + }, + { + "Id": 1808, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2017-08-19T14:17:31", + "TransactionId": 23395110, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 929, + "CustomerInfo": 63372050, + "PaymentType": "Credit Card" + }, + { + "Id": 1809, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-02-19T19:42:23", + "TransactionId": 83896851, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 411, + "CustomerInfo": 71908515, + "PaymentType": "Debit Card" + }, + { + "Id": 1810, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-09-22T14:31:38", + "TransactionId": 41406718, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 7, + "CustomerInfo": 15559617, + "PaymentType": "Credit Card" + }, + { + "Id": 1811, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-11-30T14:19:24", + "TransactionId": 8545316, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 990, + "CustomerInfo": 21454816, + "PaymentType": "Credit Card" + }, + { + "Id": 1812, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-04-24T18:48:06", + "TransactionId": 15008639, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 335, + "CustomerInfo": 97502753, + "PaymentType": "Credit Card" + }, + { + "Id": 1813, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2018-09-20T18:11:05", + "TransactionId": 18175031, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 125, + "CustomerInfo": 27293879, + "PaymentType": "Debit Card" + }, + { + "Id": 1814, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-01-11T08:46:54", + "TransactionId": 73042632, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 305, + "CustomerInfo": 17354090, + "PaymentType": "Cash" + }, + { + "Id": 1815, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-05-23T07:38:21", + "TransactionId": 3328329, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 761, + "CustomerInfo": 22702913, + "PaymentType": "Cash" + }, + { + "Id": 1816, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2018-05-16T11:35:48", + "TransactionId": 73211978, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 300, + "CustomerInfo": 49893186, + "PaymentType": "Debit Card" + }, + { + "Id": 1817, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-12-15T07:49:52", + "TransactionId": 91578644, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 552, + "CustomerInfo": 36866260, + "PaymentType": "Cash" + }, + { + "Id": 1818, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-08-10T11:53:14", + "TransactionId": 73310306, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 197, + "CustomerInfo": 27604566, + "PaymentType": "Debit Card" + }, + { + "Id": 1819, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-11-23T08:42:52", + "TransactionId": 95322424, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 989, + "CustomerInfo": 7472910, + "PaymentType": "Debit Card" + }, + { + "Id": 1820, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-06-21T10:56:04", + "TransactionId": 97508914, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 90, + "CustomerInfo": 71315223, + "PaymentType": "Credit Card" + }, + { + "Id": 1821, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2019-07-15T11:48:55", + "TransactionId": 70942719, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 88, + "CustomerInfo": 83474997, + "PaymentType": "Debit Card" + }, + { + "Id": 1822, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2019-03-04T14:52:22", + "TransactionId": 49427146, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 542, + "CustomerInfo": 33799334, + "PaymentType": "Cash" + }, + { + "Id": 1823, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-04-11T12:10:39", + "TransactionId": 96287435, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 693, + "CustomerInfo": 68376193, + "PaymentType": "Debit Card" + }, + { + "Id": 1824, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2019-04-22T09:14:24", + "TransactionId": 30542548, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 538, + "CustomerInfo": 57622992, + "PaymentType": "Credit Card" + }, + { + "Id": 1825, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2018-05-28T11:38:41", + "TransactionId": 88478011, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 898, + "CustomerInfo": 84677471, + "PaymentType": "Credit Card" + }, + { + "Id": 1826, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2018-10-28T12:09:04", + "TransactionId": 64598379, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 445, + "CustomerInfo": 25417650, + "PaymentType": "Credit Card" + }, + { + "Id": 1827, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-11-15T14:42:00", + "TransactionId": 38286612, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 982, + "CustomerInfo": 28915632, + "PaymentType": "Debit Card" + }, + { + "Id": 1828, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2017-05-09T10:02:21", + "TransactionId": 42992851, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 168, + "CustomerInfo": 83527771, + "PaymentType": "Credit Card" + }, + { + "Id": 1829, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-08-24T17:59:51", + "TransactionId": 65453613, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 450, + "CustomerInfo": 15374917, + "PaymentType": "Debit Card" + }, + { + "Id": 1830, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2019-05-18T18:43:03", + "TransactionId": 80541152, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 82, + "CustomerInfo": 23468695, + "PaymentType": "Cash" + }, + { + "Id": 1831, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2019-08-31T09:42:55", + "TransactionId": 2102702, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 49, + "CustomerInfo": 35645396, + "PaymentType": "Debit Card" + }, + { + "Id": 1832, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-04-14T11:37:58", + "TransactionId": 30103107, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 181, + "CustomerInfo": 85680125, + "PaymentType": "Credit Card" + }, + { + "Id": 1833, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-08-02T16:27:24", + "TransactionId": 21102892, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 832, + "CustomerInfo": 78722447, + "PaymentType": "Credit Card" + }, + { + "Id": 1834, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2019-06-16T12:29:40", + "TransactionId": 40342284, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 42129221, + "PaymentType": "Debit Card" + }, + { + "Id": 1835, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-11-27T12:50:15", + "TransactionId": 40056956, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 85, + "CustomerInfo": 3792860, + "PaymentType": "Debit Card" + }, + { + "Id": 1836, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2016-06-19T17:39:24", + "TransactionId": 95898367, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 168, + "CustomerInfo": 69714529, + "PaymentType": "Credit Card" + }, + { + "Id": 1837, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-10-15T14:42:00", + "TransactionId": 38383533, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 182, + "CustomerInfo": 24163028, + "PaymentType": "Debit Card" + }, + { + "Id": 1838, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2016-09-17T16:05:48", + "TransactionId": 71588721, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 734, + "CustomerInfo": 58554808, + "PaymentType": "Debit Card" + }, + { + "Id": 1839, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-04-10T11:50:21", + "TransactionId": 17407384, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 427, + "CustomerInfo": 2733717, + "PaymentType": "Debit Card" + }, + { + "Id": 1840, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2016-03-26T07:59:40", + "TransactionId": 41426710, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 349, + "CustomerInfo": 81276754, + "PaymentType": "Cash" + }, + { + "Id": 1841, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-11-12T19:26:59", + "TransactionId": 59406308, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 320, + "CustomerInfo": 67237141, + "PaymentType": "Credit Card" + }, + { + "Id": 1842, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2017-12-26T10:00:20", + "TransactionId": 71697947, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 829, + "CustomerInfo": 56808083, + "PaymentType": "Cash" + }, + { + "Id": 1843, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-08-08T12:10:57", + "TransactionId": 88429171, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 54, + "CustomerInfo": 54309003, + "PaymentType": "Credit Card" + }, + { + "Id": 1844, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2019-10-24T17:09:10", + "TransactionId": 99230203, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 395, + "CustomerInfo": 22212785, + "PaymentType": "Debit Card" + }, + { + "Id": 1845, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-11-05T08:05:43", + "TransactionId": 7255784, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 141, + "CustomerInfo": 39281345, + "PaymentType": "Debit Card" + }, + { + "Id": 1846, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2019-12-16T11:36:40", + "TransactionId": 61849737, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 404, + "CustomerInfo": 19378231, + "PaymentType": "Debit Card" + }, + { + "Id": 1847, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-06-13T18:22:02", + "TransactionId": 52762157, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 666, + "CustomerInfo": 75432617, + "PaymentType": "Cash" + }, + { + "Id": 1848, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-08-11T16:35:02", + "TransactionId": 60445659, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 913, + "CustomerInfo": 4212940, + "PaymentType": "Debit Card" + }, + { + "Id": 1849, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-01-16T08:01:06", + "TransactionId": 89891051, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 189, + "CustomerInfo": 83150059, + "PaymentType": "Debit Card" + }, + { + "Id": 1850, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2016-10-22T08:51:56", + "TransactionId": 70042305, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 24, + "CustomerInfo": 75302866, + "PaymentType": "Credit Card" + }, + { + "Id": 1851, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-05-22T16:35:37", + "TransactionId": 87297247, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 21, + "CustomerInfo": 3648404, + "PaymentType": "Debit Card" + }, + { + "Id": 1852, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2016-11-16T07:39:22", + "TransactionId": 36668220, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 852, + "CustomerInfo": 58911797, + "PaymentType": "Credit Card" + }, + { + "Id": 1853, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-10-29T07:25:58", + "TransactionId": 65695164, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 224, + "CustomerInfo": 32513195, + "PaymentType": "Debit Card" + }, + { + "Id": 1854, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-03-09T08:23:51", + "TransactionId": 57450631, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 576, + "CustomerInfo": 89727585, + "PaymentType": "Debit Card" + }, + { + "Id": 1855, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-11-11T12:17:25", + "TransactionId": 62462419, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 358, + "CustomerInfo": 35194021, + "PaymentType": "Credit Card" + }, + { + "Id": 1856, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-08-12T19:56:47", + "TransactionId": 79587050, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 701, + "CustomerInfo": 65159072, + "PaymentType": "Cash" + }, + { + "Id": 1857, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-05-22T12:10:48", + "TransactionId": 86639937, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 95, + "CustomerInfo": 33370248, + "PaymentType": "Credit Card" + }, + { + "Id": 1858, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-10-04T13:30:35", + "TransactionId": 26789169, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 344, + "CustomerInfo": 58491937, + "PaymentType": "Debit Card" + }, + { + "Id": 1859, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2019-11-05T10:16:02", + "TransactionId": 66251520, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 1000, + "CustomerInfo": 42429975, + "PaymentType": "Cash" + }, + { + "Id": 1860, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2018-05-23T19:55:38", + "TransactionId": 92949923, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 738, + "CustomerInfo": 30737812, + "PaymentType": "Credit Card" + }, + { + "Id": 1861, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-04-16T18:03:19", + "TransactionId": 55892654, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 885, + "CustomerInfo": 37934152, + "PaymentType": "Credit Card" + }, + { + "Id": 1862, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2018-10-07T08:35:23", + "TransactionId": 17119441, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 59268455, + "PaymentType": "Cash" + }, + { + "Id": 1863, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-08-21T15:58:54", + "TransactionId": 99282441, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 713, + "CustomerInfo": 50023255, + "PaymentType": "Cash" + }, + { + "Id": 1864, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-06-06T17:56:33", + "TransactionId": 60237971, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 841, + "CustomerInfo": 84024395, + "PaymentType": "Credit Card" + }, + { + "Id": 1865, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-02-28T17:34:57", + "TransactionId": 3195288, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 986, + "CustomerInfo": 68492740, + "PaymentType": "Cash" + }, + { + "Id": 1866, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-03-01T08:22:42", + "TransactionId": 2253279, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 290, + "CustomerInfo": 20244806, + "PaymentType": "Cash" + }, + { + "Id": 1867, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2018-11-27T19:45:24", + "TransactionId": 10724488, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 480, + "CustomerInfo": 68880659, + "PaymentType": "Credit Card" + }, + { + "Id": 1868, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-10-01T14:03:24", + "TransactionId": 88471611, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 13, + "CustomerInfo": 21548499, + "PaymentType": "Cash" + }, + { + "Id": 1869, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2019-06-14T14:05:00", + "TransactionId": 62254383, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 162, + "CustomerInfo": 50069803, + "PaymentType": "Credit Card" + }, + { + "Id": 1870, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2016-07-09T18:22:36", + "TransactionId": 70899482, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 209, + "CustomerInfo": 12505556, + "PaymentType": "Debit Card" + }, + { + "Id": 1871, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-08-09T18:52:51", + "TransactionId": 88004663, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 647, + "CustomerInfo": 11069956, + "PaymentType": "Cash" + }, + { + "Id": 1872, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2019-01-17T12:35:08", + "TransactionId": 79452870, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 495, + "CustomerInfo": 82208043, + "PaymentType": "Debit Card" + }, + { + "Id": 1873, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-09-10T10:32:18", + "TransactionId": 29841198, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 93359844, + "PaymentType": "Credit Card" + }, + { + "Id": 1874, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-07-12T08:30:20", + "TransactionId": 389511, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 517, + "CustomerInfo": 20869040, + "PaymentType": "Cash" + }, + { + "Id": 1875, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2017-08-14T10:11:17", + "TransactionId": 63703480, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 412, + "CustomerInfo": 92968234, + "PaymentType": "Cash" + }, + { + "Id": 1876, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-11-17T19:13:18", + "TransactionId": 38231800, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 549, + "CustomerInfo": 98048532, + "PaymentType": "Credit Card" + }, + { + "Id": 1877, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-02-09T13:02:12", + "TransactionId": 73165332, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 129, + "CustomerInfo": 930026, + "PaymentType": "Cash" + }, + { + "Id": 1878, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-12-06T14:15:13", + "TransactionId": 1871144, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 430, + "CustomerInfo": 21065885, + "PaymentType": "Debit Card" + }, + { + "Id": 1879, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-12-15T17:32:38", + "TransactionId": 91273068, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 105, + "CustomerInfo": 31881090, + "PaymentType": "Cash" + }, + { + "Id": 1880, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-03-18T19:42:14", + "TransactionId": 72673772, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 818, + "CustomerInfo": 20306434, + "PaymentType": "Debit Card" + }, + { + "Id": 1881, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2016-06-21T19:11:08", + "TransactionId": 39114999, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 299, + "CustomerInfo": 89672926, + "PaymentType": "Credit Card" + }, + { + "Id": 1882, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2018-02-25T08:42:09", + "TransactionId": 67513046, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 889, + "CustomerInfo": 80878439, + "PaymentType": "Debit Card" + }, + { + "Id": 1883, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-11-23T19:43:41", + "TransactionId": 4123726, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 290, + "CustomerInfo": 57204310, + "PaymentType": "Cash" + }, + { + "Id": 1884, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2019-03-09T10:00:55", + "TransactionId": 17871647, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 926, + "CustomerInfo": 26994432, + "PaymentType": "Debit Card" + }, + { + "Id": 1885, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-06-07T07:20:21", + "TransactionId": 89361679, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 902, + "CustomerInfo": 90593523, + "PaymentType": "Debit Card" + }, + { + "Id": 1886, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2019-10-02T18:47:48", + "TransactionId": 67143415, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 727, + "CustomerInfo": 67781001, + "PaymentType": "Debit Card" + }, + { + "Id": 1887, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-10-07T11:16:13", + "TransactionId": 67278590, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 607, + "CustomerInfo": 41305128, + "PaymentType": "Debit Card" + }, + { + "Id": 1888, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2016-08-14T15:36:17", + "TransactionId": 58612787, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 120, + "CustomerInfo": 71787168, + "PaymentType": "Cash" + }, + { + "Id": 1889, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2017-03-14T09:06:03", + "TransactionId": 32651381, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 503, + "CustomerInfo": 62297937, + "PaymentType": "Credit Card" + }, + { + "Id": 1890, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2018-10-15T08:15:39", + "TransactionId": 17934236, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 289, + "CustomerInfo": 83124803, + "PaymentType": "Cash" + }, + { + "Id": 1891, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-07-24T15:22:11", + "TransactionId": 66156611, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 23, + "CustomerInfo": 96044928, + "PaymentType": "Debit Card" + }, + { + "Id": 1892, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-07-21T08:13:03", + "TransactionId": 45671622, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 232, + "CustomerInfo": 58968926, + "PaymentType": "Credit Card" + }, + { + "Id": 1893, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-10-25T15:44:21", + "TransactionId": 46482819, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 300, + "CustomerInfo": 72455815, + "PaymentType": "Cash" + }, + { + "Id": 1894, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2019-05-06T11:33:13", + "TransactionId": 51395371, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 513, + "CustomerInfo": 72857173, + "PaymentType": "Cash" + }, + { + "Id": 1895, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-05-22T19:24:58", + "TransactionId": 37426908, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 958, + "CustomerInfo": 5909433, + "PaymentType": "Cash" + }, + { + "Id": 1896, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2017-05-30T12:53:34", + "TransactionId": 40289337, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 138, + "CustomerInfo": 34147458, + "PaymentType": "Debit Card" + }, + { + "Id": 1897, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-10-27T12:51:42", + "TransactionId": 37724843, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 422, + "CustomerInfo": 22763139, + "PaymentType": "Debit Card" + }, + { + "Id": 1898, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2018-02-01T13:20:21", + "TransactionId": 10421070, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 752, + "CustomerInfo": 75539000, + "PaymentType": "Debit Card" + }, + { + "Id": 1899, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2019-01-08T08:57:07", + "TransactionId": 21838022, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 538, + "CustomerInfo": 32983825, + "PaymentType": "Debit Card" + }, + { + "Id": 1900, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-04-05T12:00:09", + "TransactionId": 3012595, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 940, + "CustomerInfo": 602935, + "PaymentType": "Cash" + }, + { + "Id": 1901, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2018-11-05T09:17:17", + "TransactionId": 49503031, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 484, + "CustomerInfo": 24483340, + "PaymentType": "Credit Card" + }, + { + "Id": 1902, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2019-10-23T10:12:00", + "TransactionId": 59182015, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 850, + "CustomerInfo": 15126298, + "PaymentType": "Debit Card" + }, + { + "Id": 1903, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2017-09-16T15:21:53", + "TransactionId": 34239777, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 739, + "CustomerInfo": 37442994, + "PaymentType": "Cash" + }, + { + "Id": 1904, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-04-28T13:31:00", + "TransactionId": 85537171, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 510, + "CustomerInfo": 94230958, + "PaymentType": "Credit Card" + }, + { + "Id": 1905, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-06-14T17:36:14", + "TransactionId": 41719193, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 571, + "CustomerInfo": 4821392, + "PaymentType": "Debit Card" + }, + { + "Id": 1906, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2019-12-17T16:17:54", + "TransactionId": 14745079, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 869, + "CustomerInfo": 95380978, + "PaymentType": "Debit Card" + }, + { + "Id": 1907, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2019-07-23T17:16:39", + "TransactionId": 12711160, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 652, + "CustomerInfo": 31230851, + "PaymentType": "Cash" + }, + { + "Id": 1908, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-10-18T18:57:36", + "TransactionId": 89907400, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 987, + "CustomerInfo": 59764192, + "PaymentType": "Debit Card" + }, + { + "Id": 1909, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-03-13T14:41:00", + "TransactionId": 44648992, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 820, + "CustomerInfo": 94967104, + "PaymentType": "Debit Card" + }, + { + "Id": 1910, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-04-01T11:28:28", + "TransactionId": 15509324, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 647, + "CustomerInfo": 36619923, + "PaymentType": "Cash" + }, + { + "Id": 1911, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-03-22T16:08:15", + "TransactionId": 13507735, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 686, + "CustomerInfo": 6346037, + "PaymentType": "Cash" + }, + { + "Id": 1912, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2017-11-18T10:56:47", + "TransactionId": 6919637, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 401, + "CustomerInfo": 34439504, + "PaymentType": "Credit Card" + }, + { + "Id": 1913, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2016-06-15T18:30:14", + "TransactionId": 76165353, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 100, + "CustomerInfo": 74458422, + "PaymentType": "Debit Card" + }, + { + "Id": 1914, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-12-19T09:06:29", + "TransactionId": 3535207, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 166, + "CustomerInfo": 22889399, + "PaymentType": "Credit Card" + }, + { + "Id": 1915, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2017-05-25T15:15:24", + "TransactionId": 76282662, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 936, + "CustomerInfo": 49831875, + "PaymentType": "Cash" + }, + { + "Id": 1916, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2017-04-01T07:16:11", + "TransactionId": 76939724, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 453, + "CustomerInfo": 63997768, + "PaymentType": "Debit Card" + }, + { + "Id": 1917, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-12-28T12:38:36", + "TransactionId": 49962066, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 242, + "CustomerInfo": 98671167, + "PaymentType": "Cash" + }, + { + "Id": 1918, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-07-05T13:29:34", + "TransactionId": 8329201, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 93, + "CustomerInfo": 59225787, + "PaymentType": "Credit Card" + }, + { + "Id": 1919, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2019-05-09T15:05:02", + "TransactionId": 55703203, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 322, + "CustomerInfo": 43944219, + "PaymentType": "Debit Card" + }, + { + "Id": 1920, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2018-02-05T19:57:22", + "TransactionId": 69147317, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 98, + "CustomerInfo": 35665443, + "PaymentType": "Cash" + }, + { + "Id": 1921, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-07-17T15:52:51", + "TransactionId": 17011394, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 432, + "CustomerInfo": 91412910, + "PaymentType": "Cash" + }, + { + "Id": 1922, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-01-31T18:38:10", + "TransactionId": 73521288, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 38, + "CustomerInfo": 9462630, + "PaymentType": "Credit Card" + }, + { + "Id": 1923, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-09-01T11:48:46", + "TransactionId": 21462244, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 417, + "CustomerInfo": 30155504, + "PaymentType": "Credit Card" + }, + { + "Id": 1924, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2018-02-07T11:14:04", + "TransactionId": 19824988, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 318, + "CustomerInfo": 21698791, + "PaymentType": "Debit Card" + }, + { + "Id": 1925, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-08-24T11:57:59", + "TransactionId": 32302717, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 396, + "CustomerInfo": 34736474, + "PaymentType": "Cash" + }, + { + "Id": 1926, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-12-31T17:32:21", + "TransactionId": 86155162, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 445, + "CustomerInfo": 6659551, + "PaymentType": "Cash" + }, + { + "Id": 1927, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-06-27T10:44:07", + "TransactionId": 2248691, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 282, + "CustomerInfo": 96234277, + "PaymentType": "Credit Card" + }, + { + "Id": 1928, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2016-04-25T14:40:08", + "TransactionId": 27099903, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 682, + "CustomerInfo": 25674066, + "PaymentType": "Debit Card" + }, + { + "Id": 1929, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2018-06-26T07:53:02", + "TransactionId": 76829090, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 487, + "CustomerInfo": 64462680, + "PaymentType": "Debit Card" + }, + { + "Id": 1930, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2018-06-18T18:28:13", + "TransactionId": 44339749, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 485, + "CustomerInfo": 61477771, + "PaymentType": "Credit Card" + }, + { + "Id": 1931, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-01-08T15:21:45", + "TransactionId": 2454838, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 769, + "CustomerInfo": 90249957, + "PaymentType": "Debit Card" + }, + { + "Id": 1932, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2017-11-18T19:07:06", + "TransactionId": 85976211, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 799, + "CustomerInfo": 25307935, + "PaymentType": "Debit Card" + }, + { + "Id": 1933, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2017-05-22T09:40:11", + "TransactionId": 11839010, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 268, + "CustomerInfo": 51911868, + "PaymentType": "Debit Card" + }, + { + "Id": 1934, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2018-04-28T13:36:46", + "TransactionId": 56821887, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 925, + "CustomerInfo": 78394348, + "PaymentType": "Debit Card" + }, + { + "Id": 1935, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2017-09-16T07:17:11", + "TransactionId": 24308360, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 825, + "CustomerInfo": 52531470, + "PaymentType": "Debit Card" + }, + { + "Id": 1936, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2017-09-22T08:03:16", + "TransactionId": 72033102, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 445, + "CustomerInfo": 99797302, + "PaymentType": "Cash" + }, + { + "Id": 1937, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2019-01-21T09:47:40", + "TransactionId": 62710263, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 777, + "CustomerInfo": 72898544, + "PaymentType": "Debit Card" + }, + { + "Id": 1938, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-12-03T18:04:36", + "TransactionId": 41251713, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 958, + "CustomerInfo": 69335659, + "PaymentType": "Credit Card" + }, + { + "Id": 1939, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2018-12-08T09:29:48", + "TransactionId": 24392546, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 75, + "CustomerInfo": 12917974, + "PaymentType": "Debit Card" + }, + { + "Id": 1940, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2016-11-12T19:11:51", + "TransactionId": 76879617, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 43, + "CustomerInfo": 26574670, + "PaymentType": "Credit Card" + }, + { + "Id": 1941, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-01-05T18:45:04", + "TransactionId": 12355082, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 806, + "CustomerInfo": 1238976, + "PaymentType": "Credit Card" + }, + { + "Id": 1942, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2016-05-28T07:30:17", + "TransactionId": 56473550, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 45425980, + "PaymentType": "Cash" + }, + { + "Id": 1943, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2017-08-02T14:54:23", + "TransactionId": 2686017, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 50, + "CustomerInfo": 92033403, + "PaymentType": "Credit Card" + }, + { + "Id": 1944, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2019-05-14T19:27:59", + "TransactionId": 79871716, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 931, + "CustomerInfo": 54221352, + "PaymentType": "Cash" + }, + { + "Id": 1945, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-01-21T18:24:03", + "TransactionId": 2231444, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 52154472, + "PaymentType": "Cash" + }, + { + "Id": 1946, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-06-13T12:25:29", + "TransactionId": 17281826, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 874, + "CustomerInfo": 35387183, + "PaymentType": "Cash" + }, + { + "Id": 1947, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2016-07-29T09:08:04", + "TransactionId": 46107634, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 591, + "CustomerInfo": 21792823, + "PaymentType": "Credit Card" + }, + { + "Id": 1948, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-06-23T18:08:04", + "TransactionId": 86041000, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 655, + "CustomerInfo": 33948317, + "PaymentType": "Credit Card" + }, + { + "Id": 1949, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2018-06-07T07:17:20", + "TransactionId": 51705235, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 84, + "CustomerInfo": 947449, + "PaymentType": "Debit Card" + }, + { + "Id": 1950, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2017-04-13T19:32:27", + "TransactionId": 50777867, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 738, + "CustomerInfo": 94195918, + "PaymentType": "Cash" + }, + { + "Id": 1951, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-09-29T14:17:48", + "TransactionId": 6529019, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 896, + "CustomerInfo": 22205148, + "PaymentType": "Debit Card" + }, + { + "Id": 1952, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-01-14T12:12:32", + "TransactionId": 73361919, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 112, + "CustomerInfo": 22147014, + "PaymentType": "Credit Card" + }, + { + "Id": 1953, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-04-24T16:51:27", + "TransactionId": 84002210, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 133, + "CustomerInfo": 95413830, + "PaymentType": "Cash" + }, + { + "Id": 1954, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-01-17T16:52:02", + "TransactionId": 66502190, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 197, + "CustomerInfo": 98990012, + "PaymentType": "Credit Card" + }, + { + "Id": 1955, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-04-27T14:34:31", + "TransactionId": 59833280, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 108, + "CustomerInfo": 84142615, + "PaymentType": "Debit Card" + }, + { + "Id": 1956, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-04-02T08:45:10", + "TransactionId": 88383934, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 837, + "CustomerInfo": 4101044, + "PaymentType": "Debit Card" + }, + { + "Id": 1957, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2017-10-21T10:17:37", + "TransactionId": 24229621, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 575, + "CustomerInfo": 16750822, + "PaymentType": "Debit Card" + }, + { + "Id": 1958, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-04-21T19:13:00", + "TransactionId": 60838553, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 522, + "CustomerInfo": 4537726, + "PaymentType": "Debit Card" + }, + { + "Id": 1959, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-09-22T13:43:49", + "TransactionId": 89926811, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 969, + "CustomerInfo": 52186243, + "PaymentType": "Debit Card" + }, + { + "Id": 1960, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2017-11-08T19:11:51", + "TransactionId": 97892535, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 235, + "CustomerInfo": 28381731, + "PaymentType": "Credit Card" + }, + { + "Id": 1961, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2018-09-22T15:42:55", + "TransactionId": 65415817, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 21, + "CustomerInfo": 96419378, + "PaymentType": "Debit Card" + }, + { + "Id": 1962, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2018-07-16T07:04:39", + "TransactionId": 80880930, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 87164206, + "PaymentType": "Debit Card" + }, + { + "Id": 1963, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-12-20T19:04:22", + "TransactionId": 24766025, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 457, + "CustomerInfo": 31465669, + "PaymentType": "Credit Card" + }, + { + "Id": 1964, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-10-14T08:53:48", + "TransactionId": 57391636, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 984, + "CustomerInfo": 14585709, + "PaymentType": "Debit Card" + }, + { + "Id": 1965, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2019-03-03T13:33:53", + "TransactionId": 29622556, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 71, + "CustomerInfo": 49465338, + "PaymentType": "Debit Card" + }, + { + "Id": 1966, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2017-11-01T17:06:43", + "TransactionId": 62447585, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 458, + "CustomerInfo": 17215627, + "PaymentType": "Cash" + }, + { + "Id": 1967, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-10-27T08:18:32", + "TransactionId": 3911627, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 49, + "CustomerInfo": 52566159, + "PaymentType": "Cash" + }, + { + "Id": 1968, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-05-01T11:59:08", + "TransactionId": 40983836, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 182, + "CustomerInfo": 74641394, + "PaymentType": "Debit Card" + }, + { + "Id": 1969, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-10-02T14:07:52", + "TransactionId": 2249611, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 27, + "CustomerInfo": 8229946, + "PaymentType": "Cash" + }, + { + "Id": 1970, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-11-22T15:10:05", + "TransactionId": 98850867, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 39, + "CustomerInfo": 5310076, + "PaymentType": "Credit Card" + }, + { + "Id": 1971, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-07-23T08:16:22", + "TransactionId": 69675975, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 604, + "CustomerInfo": 92975077, + "PaymentType": "Credit Card" + }, + { + "Id": 1972, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-05-14T10:44:50", + "TransactionId": 30415998, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 742, + "CustomerInfo": 70573801, + "PaymentType": "Cash" + }, + { + "Id": 1973, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2017-03-12T15:41:28", + "TransactionId": 9470454, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 913, + "CustomerInfo": 54736688, + "PaymentType": "Cash" + }, + { + "Id": 1974, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2017-01-13T07:08:59", + "TransactionId": 46830058, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 566, + "CustomerInfo": 94103455, + "PaymentType": "Credit Card" + }, + { + "Id": 1975, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2016-07-27T11:40:34", + "TransactionId": 43865190, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 53, + "CustomerInfo": 77059847, + "PaymentType": "Credit Card" + }, + { + "Id": 1976, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-08-13T16:11:34", + "TransactionId": 76929856, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 237, + "CustomerInfo": 29807585, + "PaymentType": "Debit Card" + }, + { + "Id": 1977, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2016-04-13T10:47:34", + "TransactionId": 68763719, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 712, + "CustomerInfo": 16243823, + "PaymentType": "Credit Card" + }, + { + "Id": 1978, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-01-09T15:43:55", + "TransactionId": 32441594, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 428, + "CustomerInfo": 31696281, + "PaymentType": "Cash" + }, + { + "Id": 1979, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2016-05-27T19:48:09", + "TransactionId": 94269502, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 989, + "CustomerInfo": 63815763, + "PaymentType": "Credit Card" + }, + { + "Id": 1980, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2018-11-27T11:16:57", + "TransactionId": 12997362, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 285, + "CustomerInfo": 8007813, + "PaymentType": "Cash" + }, + { + "Id": 1981, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2018-05-26T12:03:10", + "TransactionId": 48337302, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 106, + "CustomerInfo": 89854393, + "PaymentType": "Credit Card" + }, + { + "Id": 1982, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2019-07-09T18:40:45", + "TransactionId": 32055575, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 337, + "CustomerInfo": 48236176, + "PaymentType": "Cash" + }, + { + "Id": 1983, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2019-01-10T07:22:22", + "TransactionId": 66763388, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 608, + "CustomerInfo": 1470494, + "PaymentType": "Cash" + }, + { + "Id": 1984, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-09-21T13:08:59", + "TransactionId": 87597329, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 249, + "CustomerInfo": 5644912, + "PaymentType": "Debit Card" + }, + { + "Id": 1985, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2018-07-23T17:31:29", + "TransactionId": 56278344, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 319, + "CustomerInfo": 11073347, + "PaymentType": "Debit Card" + }, + { + "Id": 1986, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2017-06-29T15:28:13", + "TransactionId": 74773285, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 377, + "CustomerInfo": 21533916, + "PaymentType": "Credit Card" + }, + { + "Id": 1987, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2016-01-29T17:15:13", + "TransactionId": 22250369, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 96730905, + "PaymentType": "Cash" + }, + { + "Id": 1988, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-09-15T09:37:44", + "TransactionId": 64162825, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 949, + "CustomerInfo": 85811199, + "PaymentType": "Debit Card" + }, + { + "Id": 1989, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2017-10-10T16:10:51", + "TransactionId": 81234364, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 653, + "CustomerInfo": 99055073, + "PaymentType": "Cash" + }, + { + "Id": 1990, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-06-08T07:06:32", + "TransactionId": 12999214, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 146, + "CustomerInfo": 59019200, + "PaymentType": "Credit Card" + }, + { + "Id": 1991, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2019-12-28T07:04:22", + "TransactionId": 80578897, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 134, + "CustomerInfo": 4304003, + "PaymentType": "Debit Card" + }, + { + "Id": 1992, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2018-02-09T07:36:37", + "TransactionId": 4092503, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 523, + "CustomerInfo": 43244785, + "PaymentType": "Cash" + }, + { + "Id": 1993, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-06-10T09:33:07", + "TransactionId": 74595329, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 324, + "CustomerInfo": 81600629, + "PaymentType": "Credit Card" + }, + { + "Id": 1994, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-07-23T07:35:11", + "TransactionId": 20756017, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 248, + "CustomerInfo": 37115639, + "PaymentType": "Cash" + }, + { + "Id": 1995, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2019-12-15T15:57:19", + "TransactionId": 70161227, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 636, + "CustomerInfo": 47960520, + "PaymentType": "Debit Card" + }, + { + "Id": 1996, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-07-14T11:09:01", + "TransactionId": 59241127, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 819, + "CustomerInfo": 42308307, + "PaymentType": "Cash" + }, + { + "Id": 1997, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2017-05-10T19:23:05", + "TransactionId": 38049056, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 483, + "CustomerInfo": 6179920, + "PaymentType": "Debit Card" + }, + { + "Id": 1998, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2019-11-20T12:17:25", + "TransactionId": 36763161, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 71, + "CustomerInfo": 66930082, + "PaymentType": "Credit Card" + }, + { + "Id": 1999, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-04-25T13:33:19", + "TransactionId": 63004528, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 572, + "CustomerInfo": 84999296, + "PaymentType": "Cash" + }, + { + "Id": 2000, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-04-17T19:14:36", + "TransactionId": 67125949, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 177, + "CustomerInfo": 45915562, + "PaymentType": "Debit Card" + }, + { + "Id": 2001, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-11-20T08:11:46", + "TransactionId": 62602804, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 44, + "CustomerInfo": 31418097, + "PaymentType": "Debit Card" + }, + { + "Id": 2002, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2016-10-14T18:21:45", + "TransactionId": 72789540, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 675, + "CustomerInfo": 33909773, + "PaymentType": "Credit Card" + }, + { + "Id": 2003, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2019-05-04T12:17:08", + "TransactionId": 23898845, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 682, + "CustomerInfo": 91150865, + "PaymentType": "Cash" + }, + { + "Id": 2004, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2019-05-01T19:27:59", + "TransactionId": 31784563, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 461, + "CustomerInfo": 63273101, + "PaymentType": "Credit Card" + }, + { + "Id": 2005, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2019-01-01T16:15:01", + "TransactionId": 77308043, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 715, + "CustomerInfo": 58721773, + "PaymentType": "Debit Card" + }, + { + "Id": 2006, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-08-03T13:25:41", + "TransactionId": 927635, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 11286602, + "PaymentType": "Cash" + }, + { + "Id": 2007, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2018-08-07T14:05:08", + "TransactionId": 97750062, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 484, + "CustomerInfo": 28338338, + "PaymentType": "Credit Card" + }, + { + "Id": 2008, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-01-17T14:49:21", + "TransactionId": 13310990, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 133, + "CustomerInfo": 72088649, + "PaymentType": "Debit Card" + }, + { + "Id": 2009, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2018-09-11T08:12:55", + "TransactionId": 20115885, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 261, + "CustomerInfo": 17355886, + "PaymentType": "Credit Card" + }, + { + "Id": 2010, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2016-05-15T17:32:38", + "TransactionId": 9347867, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 592, + "CustomerInfo": 48962451, + "PaymentType": "Cash" + }, + { + "Id": 2011, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-09-14T19:12:35", + "TransactionId": 10280009, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 545, + "CustomerInfo": 87521490, + "PaymentType": "Debit Card" + }, + { + "Id": 2012, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-02-03T14:45:36", + "TransactionId": 90565413, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 200, + "CustomerInfo": 62645174, + "PaymentType": "Cash" + }, + { + "Id": 2013, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-12-20T15:27:13", + "TransactionId": 80240236, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 522, + "CustomerInfo": 27777518, + "PaymentType": "Credit Card" + }, + { + "Id": 2014, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2016-06-23T19:14:53", + "TransactionId": 33141996, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 609, + "CustomerInfo": 65296606, + "PaymentType": "Cash" + }, + { + "Id": 2015, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-03-06T14:27:01", + "TransactionId": 82156505, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 573, + "CustomerInfo": 86474040, + "PaymentType": "Credit Card" + }, + { + "Id": 2016, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2018-12-18T19:30:43", + "TransactionId": 96144811, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 248, + "CustomerInfo": 84735522, + "PaymentType": "Cash" + }, + { + "Id": 2017, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2019-04-19T17:19:32", + "TransactionId": 36051292, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 411, + "CustomerInfo": 97822527, + "PaymentType": "Debit Card" + }, + { + "Id": 2018, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-11-27T15:55:35", + "TransactionId": 95975288, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 25, + "CustomerInfo": 45833336, + "PaymentType": "Credit Card" + }, + { + "Id": 2019, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2016-10-22T15:38:36", + "TransactionId": 94032777, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 157, + "CustomerInfo": 75901151, + "PaymentType": "Debit Card" + }, + { + "Id": 2020, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2016-11-18T07:58:39", + "TransactionId": 92655890, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 15924055, + "PaymentType": "Cash" + }, + { + "Id": 2021, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-11-25T07:11:00", + "TransactionId": 15838191, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 755, + "CustomerInfo": 78551629, + "PaymentType": "Cash" + }, + { + "Id": 2022, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2016-04-15T09:08:12", + "TransactionId": 6899112, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 862, + "CustomerInfo": 71449654, + "PaymentType": "Credit Card" + }, + { + "Id": 2023, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-04-13T14:30:03", + "TransactionId": 96883597, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 979, + "CustomerInfo": 33493850, + "PaymentType": "Credit Card" + }, + { + "Id": 2024, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2016-05-07T10:23:05", + "TransactionId": 77839115, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 300, + "CustomerInfo": 71138523, + "PaymentType": "Cash" + }, + { + "Id": 2025, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2019-11-28T13:06:23", + "TransactionId": 54244743, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 776, + "CustomerInfo": 19209009, + "PaymentType": "Cash" + }, + { + "Id": 2026, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2016-03-11T08:40:16", + "TransactionId": 88992238, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 517, + "CustomerInfo": 11343909, + "PaymentType": "Cash" + }, + { + "Id": 2027, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-04-15T08:26:36", + "TransactionId": 22345757, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 940, + "CustomerInfo": 61772761, + "PaymentType": "Credit Card" + }, + { + "Id": 2028, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-06-26T19:46:16", + "TransactionId": 88161533, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 904, + "CustomerInfo": 32956094, + "PaymentType": "Credit Card" + }, + { + "Id": 2029, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-10-29T12:33:24", + "TransactionId": 37962498, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 904, + "CustomerInfo": 97650491, + "PaymentType": "Cash" + }, + { + "Id": 2030, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-08-11T16:12:43", + "TransactionId": 23353545, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 678, + "CustomerInfo": 45750430, + "PaymentType": "Cash" + }, + { + "Id": 2031, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-05-13T18:45:22", + "TransactionId": 2402138, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 772, + "CustomerInfo": 25404953, + "PaymentType": "Debit Card" + }, + { + "Id": 2032, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-05-10T08:18:14", + "TransactionId": 27197625, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 333, + "CustomerInfo": 17685167, + "PaymentType": "Credit Card" + }, + { + "Id": 2033, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-06-21T07:12:00", + "TransactionId": 99622657, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 1139067, + "PaymentType": "Credit Card" + }, + { + "Id": 2034, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2018-01-15T10:19:21", + "TransactionId": 59828899, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 904, + "CustomerInfo": 52183302, + "PaymentType": "Cash" + }, + { + "Id": 2035, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2019-07-07T14:20:33", + "TransactionId": 73548792, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 11338864, + "PaymentType": "Credit Card" + }, + { + "Id": 2036, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2016-02-20T19:25:32", + "TransactionId": 7115037, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 441, + "CustomerInfo": 9399495, + "PaymentType": "Cash" + }, + { + "Id": 2037, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-04-01T08:42:26", + "TransactionId": 96415640, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 18, + "CustomerInfo": 88817657, + "PaymentType": "Debit Card" + }, + { + "Id": 2038, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2018-10-02T11:27:10", + "TransactionId": 8504350, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 270, + "CustomerInfo": 7505702, + "PaymentType": "Debit Card" + }, + { + "Id": 2039, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-09-14T11:05:00", + "TransactionId": 51034041, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 775, + "CustomerInfo": 50740617, + "PaymentType": "Cash" + }, + { + "Id": 2040, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2016-06-04T07:50:10", + "TransactionId": 90884177, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 799, + "CustomerInfo": 84653814, + "PaymentType": "Credit Card" + }, + { + "Id": 2041, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2016-07-30T07:34:02", + "TransactionId": 86797015, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 207, + "CustomerInfo": 64390867, + "PaymentType": "Credit Card" + }, + { + "Id": 2042, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2019-05-22T07:49:00", + "TransactionId": 38672250, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 773, + "CustomerInfo": 75553888, + "PaymentType": "Credit Card" + }, + { + "Id": 2043, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-06-12T12:59:11", + "TransactionId": 99199928, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 531, + "CustomerInfo": 71659256, + "PaymentType": "Cash" + }, + { + "Id": 2044, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-10-02T17:29:20", + "TransactionId": 72266947, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 450, + "CustomerInfo": 77467682, + "PaymentType": "Cash" + }, + { + "Id": 2045, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-11-19T15:52:16", + "TransactionId": 86010346, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 118, + "CustomerInfo": 78917456, + "PaymentType": "Cash" + }, + { + "Id": 2046, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2018-01-19T09:07:47", + "TransactionId": 37565318, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 394, + "CustomerInfo": 59146218, + "PaymentType": "Cash" + }, + { + "Id": 2047, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-09-29T11:22:08", + "TransactionId": 44150812, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 493, + "CustomerInfo": 52635910, + "PaymentType": "Cash" + }, + { + "Id": 2048, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-09-21T15:27:39", + "TransactionId": 61419297, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 637, + "CustomerInfo": 20516885, + "PaymentType": "Cash" + }, + { + "Id": 2049, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-06-17T08:05:51", + "TransactionId": 96682284, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 337, + "CustomerInfo": 17360300, + "PaymentType": "Cash" + }, + { + "Id": 2050, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2017-04-16T10:21:04", + "TransactionId": 22637974, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 240, + "CustomerInfo": 99531164, + "PaymentType": "Debit Card" + }, + { + "Id": 2051, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2017-07-07T16:45:50", + "TransactionId": 11451870, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 71, + "CustomerInfo": 4807395, + "PaymentType": "Debit Card" + }, + { + "Id": 2052, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-08-09T17:42:43", + "TransactionId": 35120107, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 718, + "CustomerInfo": 83366821, + "PaymentType": "Cash" + }, + { + "Id": 2053, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-08-09T08:39:59", + "TransactionId": 6615055, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 502, + "CustomerInfo": 99799357, + "PaymentType": "Credit Card" + }, + { + "Id": 2054, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2016-06-27T14:53:05", + "TransactionId": 98557970, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 968, + "CustomerInfo": 12409093, + "PaymentType": "Cash" + }, + { + "Id": 2055, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2016-01-16T16:16:11", + "TransactionId": 83623440, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 875, + "CustomerInfo": 48593602, + "PaymentType": "Cash" + }, + { + "Id": 2056, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-07-08T18:26:04", + "TransactionId": 28320743, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 595, + "CustomerInfo": 91127612, + "PaymentType": "Credit Card" + }, + { + "Id": 2057, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2018-12-10T16:39:22", + "TransactionId": 31316669, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 322, + "CustomerInfo": 94609203, + "PaymentType": "Cash" + }, + { + "Id": 2058, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2017-03-22T16:37:21", + "TransactionId": 75759887, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 909, + "CustomerInfo": 84792535, + "PaymentType": "Credit Card" + }, + { + "Id": 2059, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2017-08-27T09:24:12", + "TransactionId": 29512472, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 278, + "CustomerInfo": 87493780, + "PaymentType": "Debit Card" + }, + { + "Id": 2060, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-12-07T08:23:25", + "TransactionId": 39737945, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 705, + "CustomerInfo": 68049606, + "PaymentType": "Debit Card" + }, + { + "Id": 2061, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-06-06T13:40:13", + "TransactionId": 59188208, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 445, + "CustomerInfo": 45069820, + "PaymentType": "Credit Card" + }, + { + "Id": 2062, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2019-09-25T08:35:14", + "TransactionId": 4355625, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 648, + "CustomerInfo": 2051612, + "PaymentType": "Cash" + }, + { + "Id": 2063, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2019-03-15T10:53:46", + "TransactionId": 65138906, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 607, + "CustomerInfo": 49450324, + "PaymentType": "Debit Card" + }, + { + "Id": 2064, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-04-11T18:29:31", + "TransactionId": 40354986, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 23, + "CustomerInfo": 9210113, + "PaymentType": "Credit Card" + }, + { + "Id": 2065, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2017-02-09T15:17:00", + "TransactionId": 67358467, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 859, + "CustomerInfo": 59364440, + "PaymentType": "Cash" + }, + { + "Id": 2066, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2018-07-04T08:49:55", + "TransactionId": 88650598, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 28936349, + "PaymentType": "Cash" + }, + { + "Id": 2067, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-06-29T09:48:32", + "TransactionId": 32691440, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 360, + "CustomerInfo": 18983134, + "PaymentType": "Debit Card" + }, + { + "Id": 2068, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2019-07-04T16:35:28", + "TransactionId": 29717601, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 476, + "CustomerInfo": 47048268, + "PaymentType": "Debit Card" + }, + { + "Id": 2069, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2016-09-22T10:34:45", + "TransactionId": 30475055, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 360, + "CustomerInfo": 38720176, + "PaymentType": "Debit Card" + }, + { + "Id": 2070, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-05-11T07:27:50", + "TransactionId": 98637183, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 881, + "CustomerInfo": 5588444, + "PaymentType": "Credit Card" + }, + { + "Id": 2071, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2018-01-02T18:33:16", + "TransactionId": 1745750, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 792, + "CustomerInfo": 43302443, + "PaymentType": "Cash" + }, + { + "Id": 2072, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-07-02T12:14:15", + "TransactionId": 15502662, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 376, + "CustomerInfo": 22799042, + "PaymentType": "Cash" + }, + { + "Id": 2073, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-06-10T15:25:12", + "TransactionId": 37513353, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 423, + "CustomerInfo": 19737157, + "PaymentType": "Credit Card" + }, + { + "Id": 2074, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-08-22T08:13:29", + "TransactionId": 3778176, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 702, + "CustomerInfo": 69991002, + "PaymentType": "Debit Card" + }, + { + "Id": 2075, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-12-10T13:20:47", + "TransactionId": 27858471, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 175, + "CustomerInfo": 12303056, + "PaymentType": "Cash" + }, + { + "Id": 2076, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2016-08-25T18:32:15", + "TransactionId": 9453929, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 768, + "CustomerInfo": 60921716, + "PaymentType": "Credit Card" + }, + { + "Id": 2077, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-09-15T14:30:55", + "TransactionId": 68447758, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 99083455, + "PaymentType": "Debit Card" + }, + { + "Id": 2078, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-08-03T10:30:09", + "TransactionId": 74171342, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 466, + "CustomerInfo": 12652000, + "PaymentType": "Cash" + }, + { + "Id": 2079, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-11-22T10:13:52", + "TransactionId": 89375769, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 934, + "CustomerInfo": 1340826, + "PaymentType": "Cash" + }, + { + "Id": 2080, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2016-06-17T07:09:42", + "TransactionId": 23402366, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 604, + "CustomerInfo": 33897392, + "PaymentType": "Cash" + }, + { + "Id": 2081, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2019-11-27T15:14:07", + "TransactionId": 75422339, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 774, + "CustomerInfo": 64677397, + "PaymentType": "Cash" + }, + { + "Id": 2082, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2019-01-29T14:09:27", + "TransactionId": 47247163, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 272, + "CustomerInfo": 42275819, + "PaymentType": "Credit Card" + }, + { + "Id": 2083, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2018-08-26T17:23:08", + "TransactionId": 67188393, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 610, + "CustomerInfo": 40563158, + "PaymentType": "Cash" + }, + { + "Id": 2084, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-10-21T08:21:50", + "TransactionId": 25159080, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 362, + "CustomerInfo": 14576942, + "PaymentType": "Credit Card" + }, + { + "Id": 2085, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2018-06-18T08:26:36", + "TransactionId": 81254535, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 499, + "CustomerInfo": 62683499, + "PaymentType": "Credit Card" + }, + { + "Id": 2086, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-02-05T10:06:49", + "TransactionId": 70817292, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 261, + "CustomerInfo": 9772538, + "PaymentType": "Debit Card" + }, + { + "Id": 2087, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2018-12-19T17:26:27", + "TransactionId": 6978101, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 611, + "CustomerInfo": 61815338, + "PaymentType": "Cash" + }, + { + "Id": 2088, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-02-25T11:17:05", + "TransactionId": 30250163, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 973, + "CustomerInfo": 66557668, + "PaymentType": "Debit Card" + }, + { + "Id": 2089, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2017-05-13T10:53:46", + "TransactionId": 52591904, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 158, + "CustomerInfo": 33544395, + "PaymentType": "Credit Card" + }, + { + "Id": 2090, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-03-28T18:52:16", + "TransactionId": 39933206, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 181, + "CustomerInfo": 86419291, + "PaymentType": "Cash" + }, + { + "Id": 2091, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2018-05-12T15:54:43", + "TransactionId": 88737698, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 781, + "CustomerInfo": 26439968, + "PaymentType": "Credit Card" + }, + { + "Id": 2092, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2019-07-27T14:15:48", + "TransactionId": 14470208, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 9, + "CustomerInfo": 69679754, + "PaymentType": "Debit Card" + }, + { + "Id": 2093, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2016-01-08T15:46:57", + "TransactionId": 77672563, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 68056882, + "PaymentType": "Cash" + }, + { + "Id": 2094, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-07-01T11:57:07", + "TransactionId": 432030, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 848, + "CustomerInfo": 80064672, + "PaymentType": "Credit Card" + }, + { + "Id": 2095, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-10-20T18:43:03", + "TransactionId": 84807112, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 624, + "CustomerInfo": 18189136, + "PaymentType": "Debit Card" + }, + { + "Id": 2096, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2019-02-15T12:04:19", + "TransactionId": 90324100, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 126, + "CustomerInfo": 8536996, + "PaymentType": "Debit Card" + }, + { + "Id": 2097, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2019-05-13T17:20:33", + "TransactionId": 22163097, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 70, + "CustomerInfo": 86752421, + "PaymentType": "Cash" + }, + { + "Id": 2098, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-08-09T07:42:32", + "TransactionId": 77038593, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 519, + "CustomerInfo": 18387213, + "PaymentType": "Credit Card" + }, + { + "Id": 2099, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-07-21T16:57:48", + "TransactionId": 39336592, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 990, + "CustomerInfo": 46499364, + "PaymentType": "Cash" + }, + { + "Id": 2100, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-10-03T15:37:35", + "TransactionId": 6100904, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 937, + "CustomerInfo": 29544154, + "PaymentType": "Cash" + }, + { + "Id": 2101, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-12-10T12:21:10", + "TransactionId": 53524294, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 477, + "CustomerInfo": 93706906, + "PaymentType": "Credit Card" + }, + { + "Id": 2102, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2017-10-07T07:56:21", + "TransactionId": 22211000, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 714, + "CustomerInfo": 1436131, + "PaymentType": "Cash" + }, + { + "Id": 2103, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2019-01-12T14:54:32", + "TransactionId": 91984903, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 414, + "CustomerInfo": 93506999, + "PaymentType": "Credit Card" + }, + { + "Id": 2104, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2018-03-04T19:14:36", + "TransactionId": 79779950, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 437, + "CustomerInfo": 48268989, + "PaymentType": "Debit Card" + }, + { + "Id": 2105, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-08-11T13:06:06", + "TransactionId": 33731255, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 76553981, + "PaymentType": "Cash" + }, + { + "Id": 2106, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-09-09T19:59:57", + "TransactionId": 71378579, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 550, + "CustomerInfo": 68237607, + "PaymentType": "Debit Card" + }, + { + "Id": 2107, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2019-03-17T11:52:05", + "TransactionId": 22918501, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 772, + "CustomerInfo": 60330124, + "PaymentType": "Debit Card" + }, + { + "Id": 2108, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2016-06-26T13:33:53", + "TransactionId": 13249160, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 992, + "CustomerInfo": 66113367, + "PaymentType": "Cash" + }, + { + "Id": 2109, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-05-02T19:17:54", + "TransactionId": 34314136, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 62, + "CustomerInfo": 35548890, + "PaymentType": "Credit Card" + }, + { + "Id": 2110, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-03-03T12:23:02", + "TransactionId": 74802460, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 687, + "CustomerInfo": 39695496, + "PaymentType": "Debit Card" + }, + { + "Id": 2111, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2017-07-16T07:22:05", + "TransactionId": 60429242, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 511, + "CustomerInfo": 13202869, + "PaymentType": "Cash" + }, + { + "Id": 2112, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-02-19T18:46:31", + "TransactionId": 98914062, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 862, + "CustomerInfo": 29059953, + "PaymentType": "Cash" + }, + { + "Id": 2113, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2018-02-01T13:08:07", + "TransactionId": 79589622, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 996, + "CustomerInfo": 47076995, + "PaymentType": "Cash" + }, + { + "Id": 2114, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-08-24T14:41:25", + "TransactionId": 47207178, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 737, + "CustomerInfo": 29443824, + "PaymentType": "Credit Card" + }, + { + "Id": 2115, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-06-23T17:50:21", + "TransactionId": 44370100, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 996, + "CustomerInfo": 27887782, + "PaymentType": "Debit Card" + }, + { + "Id": 2116, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2019-03-03T16:49:52", + "TransactionId": 68973107, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 799, + "CustomerInfo": 49838182, + "PaymentType": "Credit Card" + }, + { + "Id": 2117, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2018-03-20T11:43:00", + "TransactionId": 80466992, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 717, + "CustomerInfo": 14708286, + "PaymentType": "Debit Card" + }, + { + "Id": 2118, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2016-01-07T09:02:36", + "TransactionId": 55136086, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 343, + "CustomerInfo": 2955082, + "PaymentType": "Debit Card" + }, + { + "Id": 2119, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2019-10-12T18:53:00", + "TransactionId": 85734353, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 211, + "CustomerInfo": 44906833, + "PaymentType": "Cash" + }, + { + "Id": 2120, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-06-28T15:45:30", + "TransactionId": 23603188, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 523, + "CustomerInfo": 18455505, + "PaymentType": "Cash" + }, + { + "Id": 2121, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-06-22T13:00:29", + "TransactionId": 28128093, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 160, + "CustomerInfo": 17625722, + "PaymentType": "Credit Card" + }, + { + "Id": 2122, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-03-02T14:36:14", + "TransactionId": 58076145, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 552, + "CustomerInfo": 41768928, + "PaymentType": "Credit Card" + }, + { + "Id": 2123, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2017-07-29T18:50:15", + "TransactionId": 6799708, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 645, + "CustomerInfo": 84148555, + "PaymentType": "Cash" + }, + { + "Id": 2124, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-05-23T10:00:55", + "TransactionId": 66068991, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 604, + "CustomerInfo": 49611087, + "PaymentType": "Cash" + }, + { + "Id": 2125, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-03-28T17:38:41", + "TransactionId": 18118207, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 471, + "CustomerInfo": 31069215, + "PaymentType": "Debit Card" + }, + { + "Id": 2126, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2018-07-22T13:47:17", + "TransactionId": 11683342, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 448, + "CustomerInfo": 77485512, + "PaymentType": "Cash" + }, + { + "Id": 2127, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2016-02-19T10:02:21", + "TransactionId": 77445198, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 595, + "CustomerInfo": 40080674, + "PaymentType": "Cash" + }, + { + "Id": 2128, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2017-06-26T13:30:35", + "TransactionId": 50740184, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 770, + "CustomerInfo": 74305455, + "PaymentType": "Cash" + }, + { + "Id": 2129, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-03-23T16:16:28", + "TransactionId": 15057552, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 824, + "CustomerInfo": 48698935, + "PaymentType": "Credit Card" + }, + { + "Id": 2130, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2018-11-24T11:22:34", + "TransactionId": 57743577, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 415, + "CustomerInfo": 27010717, + "PaymentType": "Credit Card" + }, + { + "Id": 2131, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2016-04-02T14:37:15", + "TransactionId": 76922494, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 670, + "CustomerInfo": 51190940, + "PaymentType": "Cash" + }, + { + "Id": 2132, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2016-04-09T12:38:01", + "TransactionId": 54638965, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 610, + "CustomerInfo": 35700251, + "PaymentType": "Credit Card" + }, + { + "Id": 2133, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2017-07-01T19:03:04", + "TransactionId": 14312702, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 684, + "CustomerInfo": 94961222, + "PaymentType": "Cash" + }, + { + "Id": 2134, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-11-02T14:55:49", + "TransactionId": 40491421, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 266, + "CustomerInfo": 32256064, + "PaymentType": "Debit Card" + }, + { + "Id": 2135, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2019-03-23T08:30:55", + "TransactionId": 28748423, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 31, + "CustomerInfo": 55898576, + "PaymentType": "Credit Card" + }, + { + "Id": 2136, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2017-10-06T14:25:26", + "TransactionId": 36247467, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 591, + "CustomerInfo": 9652265, + "PaymentType": "Credit Card" + }, + { + "Id": 2137, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-09-04T10:55:29", + "TransactionId": 16228037, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 349, + "CustomerInfo": 44840353, + "PaymentType": "Cash" + }, + { + "Id": 2138, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-05-22T15:48:06", + "TransactionId": 46406678, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 715, + "CustomerInfo": 83445266, + "PaymentType": "Debit Card" + }, + { + "Id": 2139, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-01-24T17:46:45", + "TransactionId": 5331184, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 719, + "CustomerInfo": 45570314, + "PaymentType": "Cash" + }, + { + "Id": 2140, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2016-02-12T07:39:56", + "TransactionId": 87791867, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 585, + "CustomerInfo": 30749310, + "PaymentType": "Credit Card" + }, + { + "Id": 2141, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2018-05-12T14:08:10", + "TransactionId": 11894036, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 635, + "CustomerInfo": 67371960, + "PaymentType": "Cash" + }, + { + "Id": 2142, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2017-06-06T08:31:29", + "TransactionId": 76186573, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 129, + "CustomerInfo": 69696208, + "PaymentType": "Debit Card" + }, + { + "Id": 2143, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2019-12-15T19:21:04", + "TransactionId": 41829150, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 115, + "CustomerInfo": 1063191, + "PaymentType": "Cash" + }, + { + "Id": 2144, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2019-06-24T11:25:00", + "TransactionId": 3716587, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 262, + "CustomerInfo": 54290832, + "PaymentType": "Cash" + }, + { + "Id": 2145, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2018-09-01T15:01:00", + "TransactionId": 51395959, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 625, + "CustomerInfo": 39651895, + "PaymentType": "Cash" + }, + { + "Id": 2146, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2019-08-06T08:33:22", + "TransactionId": 76721099, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 726, + "CustomerInfo": 83216439, + "PaymentType": "Credit Card" + }, + { + "Id": 2147, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-10-01T09:41:46", + "TransactionId": 58578937, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 291, + "CustomerInfo": 35919973, + "PaymentType": "Credit Card" + }, + { + "Id": 2148, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2018-02-10T15:30:32", + "TransactionId": 97189998, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 156, + "CustomerInfo": 37222090, + "PaymentType": "Cash" + }, + { + "Id": 2149, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2017-10-02T15:14:59", + "TransactionId": 69056626, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 125, + "CustomerInfo": 57695880, + "PaymentType": "Cash" + }, + { + "Id": 2150, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2018-02-02T19:12:43", + "TransactionId": 45339457, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 894, + "CustomerInfo": 50268510, + "PaymentType": "Cash" + }, + { + "Id": 2151, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-11-02T10:01:55", + "TransactionId": 54083638, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 985, + "CustomerInfo": 8293301, + "PaymentType": "Debit Card" + }, + { + "Id": 2152, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2018-02-17T15:09:13", + "TransactionId": 34205897, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 598, + "CustomerInfo": 48272404, + "PaymentType": "Debit Card" + }, + { + "Id": 2153, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2016-07-18T12:02:44", + "TransactionId": 66517901, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 536, + "CustomerInfo": 64492857, + "PaymentType": "Credit Card" + }, + { + "Id": 2154, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2018-07-21T12:29:40", + "TransactionId": 79578745, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 563, + "CustomerInfo": 7492891, + "PaymentType": "Debit Card" + }, + { + "Id": 2155, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2016-09-11T16:50:10", + "TransactionId": 32188902, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 547, + "CustomerInfo": 84358628, + "PaymentType": "Cash" + }, + { + "Id": 2156, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-03-14T09:15:24", + "TransactionId": 98433633, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 728, + "CustomerInfo": 70122432, + "PaymentType": "Credit Card" + }, + { + "Id": 2157, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-11-09T17:03:24", + "TransactionId": 33646438, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 789, + "CustomerInfo": 46448949, + "PaymentType": "Credit Card" + }, + { + "Id": 2158, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2019-08-25T16:16:54", + "TransactionId": 15800879, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 627, + "CustomerInfo": 98036870, + "PaymentType": "Debit Card" + }, + { + "Id": 2159, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2017-04-12T11:55:15", + "TransactionId": 34818477, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 8416927, + "PaymentType": "Credit Card" + }, + { + "Id": 2160, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2019-09-25T17:56:33", + "TransactionId": 56958832, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 38678111, + "PaymentType": "Cash" + }, + { + "Id": 2161, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2018-11-14T08:11:46", + "TransactionId": 6888798, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 939, + "CustomerInfo": 20301008, + "PaymentType": "Credit Card" + }, + { + "Id": 2162, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-12-09T18:30:14", + "TransactionId": 11343208, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 62, + "CustomerInfo": 37385586, + "PaymentType": "Cash" + }, + { + "Id": 2163, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-05-14T15:31:41", + "TransactionId": 43748869, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 416, + "CustomerInfo": 48881923, + "PaymentType": "Debit Card" + }, + { + "Id": 2164, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-02-10T18:22:28", + "TransactionId": 70933146, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 479, + "CustomerInfo": 31358346, + "PaymentType": "Credit Card" + }, + { + "Id": 2165, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-12-01T15:42:46", + "TransactionId": 87311315, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 757, + "CustomerInfo": 91032140, + "PaymentType": "Credit Card" + }, + { + "Id": 2166, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-07-18T14:54:32", + "TransactionId": 70654021, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 616, + "CustomerInfo": 80999020, + "PaymentType": "Debit Card" + }, + { + "Id": 2167, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2019-01-10T10:59:05", + "TransactionId": 5122747, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 747, + "CustomerInfo": 66860316, + "PaymentType": "Credit Card" + }, + { + "Id": 2168, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2016-12-31T17:30:37", + "TransactionId": 86873595, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 459, + "CustomerInfo": 78828482, + "PaymentType": "Cash" + }, + { + "Id": 2169, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2018-10-15T07:51:36", + "TransactionId": 63908357, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 705, + "CustomerInfo": 73194680, + "PaymentType": "Cash" + }, + { + "Id": 2170, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-04-21T17:40:42", + "TransactionId": 8339746, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 975, + "CustomerInfo": 63142330, + "PaymentType": "Credit Card" + }, + { + "Id": 2171, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-12-27T09:26:30", + "TransactionId": 11895533, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 403, + "CustomerInfo": 93944272, + "PaymentType": "Cash" + }, + { + "Id": 2172, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2018-01-26T10:22:13", + "TransactionId": 11058279, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 700, + "CustomerInfo": 9777632, + "PaymentType": "Debit Card" + }, + { + "Id": 2173, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2016-12-23T18:00:17", + "TransactionId": 53513278, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 37, + "CustomerInfo": 65644555, + "PaymentType": "Cash" + }, + { + "Id": 2174, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-05-03T09:32:24", + "TransactionId": 56682649, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 739, + "CustomerInfo": 96193837, + "PaymentType": "Cash" + }, + { + "Id": 2175, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-12-31T09:52:25", + "TransactionId": 19891128, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 750, + "CustomerInfo": 45327619, + "PaymentType": "Debit Card" + }, + { + "Id": 2176, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2018-11-12T19:00:55", + "TransactionId": 65355749, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 251, + "CustomerInfo": 20912698, + "PaymentType": "Credit Card" + }, + { + "Id": 2177, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-10-30T10:03:56", + "TransactionId": 83558515, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 17, + "CustomerInfo": 35952467, + "PaymentType": "Cash" + }, + { + "Id": 2178, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2018-10-07T09:40:11", + "TransactionId": 84188530, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 166, + "CustomerInfo": 87306830, + "PaymentType": "Cash" + }, + { + "Id": 2179, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-08-07T08:35:23", + "TransactionId": 25798163, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 719, + "CustomerInfo": 3702259, + "PaymentType": "Debit Card" + }, + { + "Id": 2180, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-09-07T09:06:55", + "TransactionId": 78389879, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 47, + "CustomerInfo": 10721701, + "PaymentType": "Cash" + }, + { + "Id": 2181, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2016-04-17T07:59:23", + "TransactionId": 19185054, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 256, + "CustomerInfo": 46097193, + "PaymentType": "Debit Card" + }, + { + "Id": 2182, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2019-10-09T19:54:03", + "TransactionId": 88532290, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 999, + "CustomerInfo": 40579449, + "PaymentType": "Credit Card" + }, + { + "Id": 2183, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-04-17T16:00:55", + "TransactionId": 36919496, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 640, + "CustomerInfo": 4279134, + "PaymentType": "Credit Card" + }, + { + "Id": 2184, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-03-17T14:51:30", + "TransactionId": 31331479, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 788, + "CustomerInfo": 37654851, + "PaymentType": "Cash" + }, + { + "Id": 2185, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2018-06-28T09:17:08", + "TransactionId": 11349062, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 938, + "CustomerInfo": 68802932, + "PaymentType": "Cash" + }, + { + "Id": 2186, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2016-02-11T13:01:38", + "TransactionId": 17479880, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 974, + "CustomerInfo": 59844119, + "PaymentType": "Credit Card" + }, + { + "Id": 2187, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2019-08-17T17:35:05", + "TransactionId": 12316257, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 773, + "CustomerInfo": 57020207, + "PaymentType": "Credit Card" + }, + { + "Id": 2188, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-04-01T10:15:27", + "TransactionId": 66322515, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 981, + "CustomerInfo": 32952030, + "PaymentType": "Cash" + }, + { + "Id": 2189, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-01-31T13:02:47", + "TransactionId": 70038767, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 375, + "CustomerInfo": 2208916, + "PaymentType": "Debit Card" + }, + { + "Id": 2190, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-04-07T16:55:29", + "TransactionId": 20114358, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 500, + "CustomerInfo": 65109937, + "PaymentType": "Credit Card" + }, + { + "Id": 2191, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2016-09-14T10:52:28", + "TransactionId": 23362573, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 913, + "CustomerInfo": 51810091, + "PaymentType": "Debit Card" + }, + { + "Id": 2192, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-12-05T18:28:13", + "TransactionId": 57829936, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 676, + "CustomerInfo": 4468731, + "PaymentType": "Debit Card" + }, + { + "Id": 2193, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-09-08T16:05:48", + "TransactionId": 59507358, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 951, + "CustomerInfo": 66681688, + "PaymentType": "Debit Card" + }, + { + "Id": 2194, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-12-26T15:42:37", + "TransactionId": 78404316, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 771, + "CustomerInfo": 82587346, + "PaymentType": "Debit Card" + }, + { + "Id": 2195, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2018-05-05T09:57:27", + "TransactionId": 65415252, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 902, + "CustomerInfo": 3431087, + "PaymentType": "Debit Card" + }, + { + "Id": 2196, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-01-12T08:18:23", + "TransactionId": 67656929, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 142, + "CustomerInfo": 66495289, + "PaymentType": "Credit Card" + }, + { + "Id": 2197, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-08-24T19:04:48", + "TransactionId": 82507523, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 91069779, + "PaymentType": "Credit Card" + }, + { + "Id": 2198, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-12-16T09:33:33", + "TransactionId": 4936252, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 787, + "CustomerInfo": 42967790, + "PaymentType": "Credit Card" + }, + { + "Id": 2199, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2018-02-24T15:05:02", + "TransactionId": 36344526, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 510, + "CustomerInfo": 42061827, + "PaymentType": "Debit Card" + }, + { + "Id": 2200, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-01-06T17:45:10", + "TransactionId": 67240243, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 952, + "CustomerInfo": 98814942, + "PaymentType": "Cash" + }, + { + "Id": 2201, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2016-10-25T12:17:17", + "TransactionId": 8030268, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 823, + "CustomerInfo": 57871642, + "PaymentType": "Cash" + }, + { + "Id": 2202, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-07-03T11:48:55", + "TransactionId": 96862133, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 752, + "CustomerInfo": 10204462, + "PaymentType": "Cash" + }, + { + "Id": 2203, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2019-09-11T14:10:28", + "TransactionId": 76541814, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 426, + "CustomerInfo": 8357787, + "PaymentType": "Debit Card" + }, + { + "Id": 2204, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-10-30T16:55:47", + "TransactionId": 14108653, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 70563616, + "PaymentType": "Credit Card" + }, + { + "Id": 2205, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-01-19T11:00:40", + "TransactionId": 11620411, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 75, + "CustomerInfo": 97936845, + "PaymentType": "Credit Card" + }, + { + "Id": 2206, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-04-18T14:19:58", + "TransactionId": 73054999, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 175, + "CustomerInfo": 67085185, + "PaymentType": "Debit Card" + }, + { + "Id": 2207, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2019-05-02T12:33:07", + "TransactionId": 3457692, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 648, + "CustomerInfo": 62396644, + "PaymentType": "Debit Card" + }, + { + "Id": 2208, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-06-02T10:07:24", + "TransactionId": 35380818, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 930, + "CustomerInfo": 26073803, + "PaymentType": "Cash" + }, + { + "Id": 2209, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2017-10-07T17:30:12", + "TransactionId": 61605414, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 77, + "CustomerInfo": 25455, + "PaymentType": "Credit Card" + }, + { + "Id": 2210, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-04-04T08:23:43", + "TransactionId": 65247149, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 56, + "CustomerInfo": 84806150, + "PaymentType": "Debit Card" + }, + { + "Id": 2211, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-04-29T16:08:07", + "TransactionId": 82165804, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 608, + "CustomerInfo": 69832729, + "PaymentType": "Debit Card" + }, + { + "Id": 2212, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2018-07-30T10:53:46", + "TransactionId": 92127165, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 373, + "CustomerInfo": 64779540, + "PaymentType": "Credit Card" + }, + { + "Id": 2213, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2019-09-17T12:50:41", + "TransactionId": 84698688, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 52756826, + "PaymentType": "Cash" + }, + { + "Id": 2214, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2018-11-07T07:42:40", + "TransactionId": 84551001, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 957, + "CustomerInfo": 36252752, + "PaymentType": "Cash" + }, + { + "Id": 2215, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2019-10-20T07:34:11", + "TransactionId": 41215102, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 174, + "CustomerInfo": 46148286, + "PaymentType": "Debit Card" + }, + { + "Id": 2216, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2017-05-10T11:32:30", + "TransactionId": 28860465, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 34437074, + "PaymentType": "Cash" + }, + { + "Id": 2217, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2016-08-11T14:40:08", + "TransactionId": 21186051, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 332, + "CustomerInfo": 66656396, + "PaymentType": "Credit Card" + }, + { + "Id": 2218, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-11-05T16:16:19", + "TransactionId": 59203995, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 949, + "CustomerInfo": 7861070, + "PaymentType": "Debit Card" + }, + { + "Id": 2219, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-08-17T18:47:40", + "TransactionId": 55337716, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 54, + "CustomerInfo": 79395151, + "PaymentType": "Cash" + }, + { + "Id": 2220, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2019-10-13T11:29:54", + "TransactionId": 86195722, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 13, + "CustomerInfo": 19053664, + "PaymentType": "Cash" + }, + { + "Id": 2221, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2017-03-30T14:06:26", + "TransactionId": 84039167, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 753, + "CustomerInfo": 66528219, + "PaymentType": "Credit Card" + }, + { + "Id": 2222, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-03-30T14:23:17", + "TransactionId": 1557189, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 60, + "CustomerInfo": 64200755, + "PaymentType": "Credit Card" + }, + { + "Id": 2223, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-08-04T09:27:56", + "TransactionId": 58986880, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 333, + "CustomerInfo": 75559627, + "PaymentType": "Cash" + }, + { + "Id": 2224, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-10-16T08:11:11", + "TransactionId": 85519789, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 367, + "CustomerInfo": 834413, + "PaymentType": "Cash" + }, + { + "Id": 2225, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-04-25T11:32:30", + "TransactionId": 88750101, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 966, + "CustomerInfo": 84322005, + "PaymentType": "Debit Card" + }, + { + "Id": 2226, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2016-09-07T12:24:29", + "TransactionId": 20247940, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 608, + "CustomerInfo": 40212069, + "PaymentType": "Cash" + }, + { + "Id": 2227, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2018-11-10T18:33:24", + "TransactionId": 31380179, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 548, + "CustomerInfo": 80300139, + "PaymentType": "Cash" + }, + { + "Id": 2228, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2018-10-17T16:47:34", + "TransactionId": 70444979, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 964, + "CustomerInfo": 61986507, + "PaymentType": "Credit Card" + }, + { + "Id": 2229, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2019-08-09T12:56:53", + "TransactionId": 55882935, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 266, + "CustomerInfo": 92204694, + "PaymentType": "Credit Card" + }, + { + "Id": 2230, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2016-01-10T08:17:14", + "TransactionId": 48671525, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 909, + "CustomerInfo": 20953523, + "PaymentType": "Debit Card" + }, + { + "Id": 2231, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2017-03-10T09:03:01", + "TransactionId": 32886431, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 833, + "CustomerInfo": 81531069, + "PaymentType": "Credit Card" + }, + { + "Id": 2232, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-08-03T13:16:36", + "TransactionId": 83324514, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 846, + "CustomerInfo": 19514674, + "PaymentType": "Credit Card" + }, + { + "Id": 2233, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2016-02-08T10:57:30", + "TransactionId": 59475383, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 17568992, + "PaymentType": "Credit Card" + }, + { + "Id": 2234, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-08-28T14:55:49", + "TransactionId": 52225752, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 405, + "CustomerInfo": 87022419, + "PaymentType": "Cash" + }, + { + "Id": 2235, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-08-09T10:16:19", + "TransactionId": 10157688, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 780, + "CustomerInfo": 44475241, + "PaymentType": "Debit Card" + }, + { + "Id": 2236, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2018-12-12T08:07:09", + "TransactionId": 18528519, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 371, + "CustomerInfo": 27259686, + "PaymentType": "Debit Card" + }, + { + "Id": 2237, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2017-01-05T13:42:32", + "TransactionId": 75391760, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 380, + "CustomerInfo": 92179508, + "PaymentType": "Debit Card" + }, + { + "Id": 2238, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-06-21T14:28:11", + "TransactionId": 25623643, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 501, + "CustomerInfo": 37235626, + "PaymentType": "Cash" + }, + { + "Id": 2239, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2017-03-23T08:40:34", + "TransactionId": 96560405, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 495, + "CustomerInfo": 90926333, + "PaymentType": "Debit Card" + }, + { + "Id": 2240, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-04-21T18:37:00", + "TransactionId": 78011683, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 407, + "CustomerInfo": 33356793, + "PaymentType": "Debit Card" + }, + { + "Id": 2241, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-06-19T16:47:25", + "TransactionId": 51681800, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 17803078, + "PaymentType": "Credit Card" + }, + { + "Id": 2242, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-12-15T19:58:48", + "TransactionId": 47875697, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 77, + "CustomerInfo": 49210059, + "PaymentType": "Credit Card" + }, + { + "Id": 2243, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2017-09-08T08:44:36", + "TransactionId": 33565440, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 424, + "CustomerInfo": 22390486, + "PaymentType": "Cash" + }, + { + "Id": 2244, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2016-08-03T09:46:39", + "TransactionId": 30211540, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 304, + "CustomerInfo": 58704766, + "PaymentType": "Cash" + }, + { + "Id": 2245, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2019-12-03T18:42:37", + "TransactionId": 83086319, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 764, + "CustomerInfo": 73790039, + "PaymentType": "Cash" + }, + { + "Id": 2246, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-01-01T18:48:23", + "TransactionId": 76079944, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 58925562, + "PaymentType": "Debit Card" + }, + { + "Id": 2247, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-01-26T09:09:30", + "TransactionId": 23163348, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 437, + "CustomerInfo": 17470139, + "PaymentType": "Debit Card" + }, + { + "Id": 2248, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-02-14T17:53:48", + "TransactionId": 25057043, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 101, + "CustomerInfo": 73076574, + "PaymentType": "Credit Card" + }, + { + "Id": 2249, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2016-11-26T19:55:03", + "TransactionId": 1541981, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 784, + "CustomerInfo": 60853663, + "PaymentType": "Cash" + }, + { + "Id": 2250, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2018-01-01T17:55:15", + "TransactionId": 36383923, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 824, + "CustomerInfo": 31567452, + "PaymentType": "Cash" + }, + { + "Id": 2251, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-12-14T15:06:03", + "TransactionId": 8129514, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 169, + "CustomerInfo": 25349567, + "PaymentType": "Cash" + }, + { + "Id": 2252, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2016-12-25T08:47:11", + "TransactionId": 78294453, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 453, + "CustomerInfo": 51679047, + "PaymentType": "Credit Card" + }, + { + "Id": 2253, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2017-11-03T15:16:08", + "TransactionId": 80485799, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 487, + "CustomerInfo": 99110005, + "PaymentType": "Credit Card" + }, + { + "Id": 2254, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-06-05T17:20:15", + "TransactionId": 98190566, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 118, + "CustomerInfo": 66535267, + "PaymentType": "Cash" + }, + { + "Id": 2255, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2017-01-06T11:11:28", + "TransactionId": 49850327, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 184, + "CustomerInfo": 1301279, + "PaymentType": "Cash" + }, + { + "Id": 2256, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-11-20T07:12:26", + "TransactionId": 37579736, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 590, + "CustomerInfo": 90576663, + "PaymentType": "Debit Card" + }, + { + "Id": 2257, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2016-07-03T07:42:49", + "TransactionId": 24902613, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 669, + "CustomerInfo": 9478796, + "PaymentType": "Cash" + }, + { + "Id": 2258, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-01-24T08:00:49", + "TransactionId": 30859735, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 272, + "CustomerInfo": 34931022, + "PaymentType": "Cash" + }, + { + "Id": 2259, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-04-10T17:55:32", + "TransactionId": 6526442, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 662, + "CustomerInfo": 64858018, + "PaymentType": "Credit Card" + }, + { + "Id": 2260, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2018-06-27T09:40:02", + "TransactionId": 3488501, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 327, + "CustomerInfo": 79547556, + "PaymentType": "Cash" + }, + { + "Id": 2261, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-03-17T10:26:50", + "TransactionId": 7466423, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 752, + "CustomerInfo": 39649418, + "PaymentType": "Debit Card" + }, + { + "Id": 2262, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2017-01-10T07:48:09", + "TransactionId": 13431845, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 122, + "CustomerInfo": 53766576, + "PaymentType": "Credit Card" + }, + { + "Id": 2263, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2019-06-03T16:29:43", + "TransactionId": 6652693, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 760, + "CustomerInfo": 77819929, + "PaymentType": "Cash" + }, + { + "Id": 2264, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-05-16T14:45:19", + "TransactionId": 6387702, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 369, + "CustomerInfo": 8690110, + "PaymentType": "Credit Card" + }, + { + "Id": 2265, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2017-09-13T18:30:06", + "TransactionId": 53981442, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 135, + "CustomerInfo": 68182491, + "PaymentType": "Debit Card" + }, + { + "Id": 2266, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-11-13T12:30:23", + "TransactionId": 97555501, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 995, + "CustomerInfo": 37379183, + "PaymentType": "Cash" + }, + { + "Id": 2267, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2018-05-16T07:14:01", + "TransactionId": 86035586, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 306, + "CustomerInfo": 20800690, + "PaymentType": "Debit Card" + }, + { + "Id": 2268, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-06-15T18:50:59", + "TransactionId": 86249767, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 622, + "CustomerInfo": 85960575, + "PaymentType": "Credit Card" + }, + { + "Id": 2269, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-03-02T07:43:15", + "TransactionId": 36649894, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 182, + "CustomerInfo": 29859049, + "PaymentType": "Cash" + }, + { + "Id": 2270, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2018-02-19T12:32:24", + "TransactionId": 69086937, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 631, + "CustomerInfo": 11011145, + "PaymentType": "Credit Card" + }, + { + "Id": 2271, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2017-05-17T11:43:52", + "TransactionId": 3377557, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 386, + "CustomerInfo": 27187071, + "PaymentType": "Credit Card" + }, + { + "Id": 2272, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2017-08-06T09:24:29", + "TransactionId": 14851425, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 667, + "CustomerInfo": 41556949, + "PaymentType": "Cash" + }, + { + "Id": 2273, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2018-12-29T18:54:17", + "TransactionId": 25540029, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 914, + "CustomerInfo": 53727736, + "PaymentType": "Debit Card" + }, + { + "Id": 2274, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-02-02T08:00:32", + "TransactionId": 1187741, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 863, + "CustomerInfo": 80645090, + "PaymentType": "Debit Card" + }, + { + "Id": 2275, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2017-08-08T16:58:13", + "TransactionId": 75200144, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 517, + "CustomerInfo": 46012903, + "PaymentType": "Cash" + }, + { + "Id": 2276, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2018-01-31T16:05:05", + "TransactionId": 14628242, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 973, + "CustomerInfo": 24877432, + "PaymentType": "Cash" + }, + { + "Id": 2277, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2017-03-24T17:39:24", + "TransactionId": 1975887, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 889, + "CustomerInfo": 17525209, + "PaymentType": "Cash" + }, + { + "Id": 2278, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2016-11-12T18:38:36", + "TransactionId": 56936519, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 122, + "CustomerInfo": 79000622, + "PaymentType": "Cash" + }, + { + "Id": 2279, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-11-20T12:23:20", + "TransactionId": 85756707, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 193, + "CustomerInfo": 3819401, + "PaymentType": "Cash" + }, + { + "Id": 2280, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-10-12T10:11:25", + "TransactionId": 58694223, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 718, + "CustomerInfo": 66149684, + "PaymentType": "Credit Card" + }, + { + "Id": 2281, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-07-28T13:17:46", + "TransactionId": 32491964, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 58, + "CustomerInfo": 64802997, + "PaymentType": "Credit Card" + }, + { + "Id": 2282, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-04-25T18:27:39", + "TransactionId": 56977861, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 143, + "CustomerInfo": 18941028, + "PaymentType": "Cash" + }, + { + "Id": 2283, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2017-07-12T15:10:05", + "TransactionId": 99453528, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 523, + "CustomerInfo": 81752916, + "PaymentType": "Debit Card" + }, + { + "Id": 2284, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-08-19T09:01:18", + "TransactionId": 26163761, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 648, + "CustomerInfo": 42982357, + "PaymentType": "Debit Card" + }, + { + "Id": 2285, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2016-12-14T17:40:34", + "TransactionId": 52831369, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 118, + "CustomerInfo": 70071110, + "PaymentType": "Credit Card" + }, + { + "Id": 2286, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-06-08T18:39:01", + "TransactionId": 83323975, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 827, + "CustomerInfo": 87882939, + "PaymentType": "Debit Card" + }, + { + "Id": 2287, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-03-25T13:29:00", + "TransactionId": 76663599, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 611, + "CustomerInfo": 64828093, + "PaymentType": "Credit Card" + }, + { + "Id": 2288, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-02-22T13:46:42", + "TransactionId": 38944626, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 5, + "CustomerInfo": 11315292, + "PaymentType": "Debit Card" + }, + { + "Id": 2289, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-09-26T12:59:37", + "TransactionId": 41842947, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 209, + "CustomerInfo": 59903704, + "PaymentType": "Cash" + }, + { + "Id": 2290, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-10-16T11:04:16", + "TransactionId": 87744056, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 854, + "CustomerInfo": 1680164, + "PaymentType": "Debit Card" + }, + { + "Id": 2291, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2019-11-02T10:14:44", + "TransactionId": 28007630, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 28, + "CustomerInfo": 29581432, + "PaymentType": "Credit Card" + }, + { + "Id": 2292, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-11-21T12:16:34", + "TransactionId": 92939632, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 841, + "CustomerInfo": 26829386, + "PaymentType": "Credit Card" + }, + { + "Id": 2293, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2019-03-29T16:52:36", + "TransactionId": 67706309, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 66, + "CustomerInfo": 9944161, + "PaymentType": "Debit Card" + }, + { + "Id": 2294, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2018-02-09T10:06:23", + "TransactionId": 81917927, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 974, + "CustomerInfo": 40382431, + "PaymentType": "Credit Card" + }, + { + "Id": 2295, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2019-02-06T13:36:55", + "TransactionId": 77177564, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 420, + "CustomerInfo": 11433926, + "PaymentType": "Credit Card" + }, + { + "Id": 2296, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2018-08-25T07:06:32", + "TransactionId": 28166293, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 827, + "CustomerInfo": 47692449, + "PaymentType": "Debit Card" + }, + { + "Id": 2297, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-06-02T14:19:58", + "TransactionId": 28691938, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 843, + "CustomerInfo": 21955461, + "PaymentType": "Credit Card" + }, + { + "Id": 2298, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-01-18T17:33:30", + "TransactionId": 39130185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 72, + "CustomerInfo": 41000393, + "PaymentType": "Cash" + }, + { + "Id": 2299, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2017-12-20T16:32:01", + "TransactionId": 78606626, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 924, + "CustomerInfo": 69660417, + "PaymentType": "Credit Card" + }, + { + "Id": 2300, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-01-07T13:12:35", + "TransactionId": 68454055, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 822, + "CustomerInfo": 57498937, + "PaymentType": "Cash" + }, + { + "Id": 2301, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-12-10T15:07:21", + "TransactionId": 54658273, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 601, + "CustomerInfo": 1669016, + "PaymentType": "Credit Card" + }, + { + "Id": 2302, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-06-05T12:28:05", + "TransactionId": 13226159, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 297, + "CustomerInfo": 1524940, + "PaymentType": "Credit Card" + }, + { + "Id": 2303, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2019-10-26T07:07:49", + "TransactionId": 27161976, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 645, + "CustomerInfo": 41772687, + "PaymentType": "Debit Card" + }, + { + "Id": 2304, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-03-08T10:13:26", + "TransactionId": 81677472, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 958, + "CustomerInfo": 97320280, + "PaymentType": "Debit Card" + }, + { + "Id": 2305, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-11-27T18:09:39", + "TransactionId": 2502025, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 435, + "CustomerInfo": 99451598, + "PaymentType": "Debit Card" + }, + { + "Id": 2306, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-05-09T07:15:27", + "TransactionId": 85409422, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 871, + "CustomerInfo": 62803456, + "PaymentType": "Credit Card" + }, + { + "Id": 2307, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-05-31T07:35:20", + "TransactionId": 48169433, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 777, + "CustomerInfo": 43769234, + "PaymentType": "Cash" + }, + { + "Id": 2308, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2016-05-27T12:26:38", + "TransactionId": 56262866, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 769, + "CustomerInfo": 7481502, + "PaymentType": "Debit Card" + }, + { + "Id": 2309, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2017-10-08T19:15:27", + "TransactionId": 14412563, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 81, + "CustomerInfo": 17278354, + "PaymentType": "Credit Card" + }, + { + "Id": 2310, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-01-29T17:02:33", + "TransactionId": 59911507, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 839, + "CustomerInfo": 67164457, + "PaymentType": "Cash" + }, + { + "Id": 2311, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2016-07-31T15:30:49", + "TransactionId": 61896716, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 713, + "CustomerInfo": 52554567, + "PaymentType": "Debit Card" + }, + { + "Id": 2312, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-10-03T11:47:28", + "TransactionId": 73944978, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 523, + "CustomerInfo": 71613866, + "PaymentType": "Cash" + }, + { + "Id": 2313, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-10-23T12:23:11", + "TransactionId": 42380893, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 391, + "CustomerInfo": 40054352, + "PaymentType": "Cash" + }, + { + "Id": 2314, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2017-12-18T11:31:55", + "TransactionId": 76834485, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 841, + "CustomerInfo": 63048829, + "PaymentType": "Credit Card" + }, + { + "Id": 2315, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-03-28T16:26:15", + "TransactionId": 11340845, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 37, + "CustomerInfo": 22929099, + "PaymentType": "Cash" + }, + { + "Id": 2316, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-05-16T10:41:23", + "TransactionId": 73064080, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 584, + "CustomerInfo": 8957675, + "PaymentType": "Cash" + }, + { + "Id": 2317, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-04-10T07:13:44", + "TransactionId": 5916451, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 958, + "CustomerInfo": 34356955, + "PaymentType": "Debit Card" + }, + { + "Id": 2318, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-08-23T19:02:12", + "TransactionId": 84950339, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 898, + "CustomerInfo": 93166524, + "PaymentType": "Debit Card" + }, + { + "Id": 2319, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2016-06-08T13:32:27", + "TransactionId": 15811265, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 983, + "CustomerInfo": 32184085, + "PaymentType": "Cash" + }, + { + "Id": 2320, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2019-05-09T11:28:28", + "TransactionId": 14696647, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 414, + "CustomerInfo": 30772, + "PaymentType": "Cash" + }, + { + "Id": 2321, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2016-06-03T18:47:05", + "TransactionId": 9963330, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 501, + "CustomerInfo": 54808322, + "PaymentType": "Debit Card" + }, + { + "Id": 2322, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2019-01-09T18:24:37", + "TransactionId": 15965010, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 491, + "CustomerInfo": 34437073, + "PaymentType": "Cash" + }, + { + "Id": 2323, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-02-27T15:24:46", + "TransactionId": 87086306, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 440, + "CustomerInfo": 15558972, + "PaymentType": "Debit Card" + }, + { + "Id": 2324, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-02-20T17:14:21", + "TransactionId": 9170595, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 634, + "CustomerInfo": 522453, + "PaymentType": "Credit Card" + }, + { + "Id": 2325, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-05-15T13:23:40", + "TransactionId": 57357491, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 589, + "CustomerInfo": 95596760, + "PaymentType": "Debit Card" + }, + { + "Id": 2326, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2016-03-06T12:37:26", + "TransactionId": 60147167, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 454, + "CustomerInfo": 23119153, + "PaymentType": "Credit Card" + }, + { + "Id": 2327, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-03-14T17:24:52", + "TransactionId": 96378823, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 499, + "CustomerInfo": 93677365, + "PaymentType": "Cash" + }, + { + "Id": 2328, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2017-04-10T10:48:52", + "TransactionId": 42498978, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 407, + "CustomerInfo": 46819031, + "PaymentType": "Debit Card" + }, + { + "Id": 2329, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2018-10-17T11:57:07", + "TransactionId": 50098041, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 471, + "CustomerInfo": 63836375, + "PaymentType": "Credit Card" + }, + { + "Id": 2330, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2019-09-26T13:08:24", + "TransactionId": 50884024, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 333, + "CustomerInfo": 35793406, + "PaymentType": "Cash" + }, + { + "Id": 2331, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-02-14T07:51:27", + "TransactionId": 37995239, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 384, + "CustomerInfo": 48618596, + "PaymentType": "Cash" + }, + { + "Id": 2332, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-04-04T18:24:37", + "TransactionId": 78669070, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 963, + "CustomerInfo": 53030132, + "PaymentType": "Credit Card" + }, + { + "Id": 2333, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-03-08T09:06:03", + "TransactionId": 49254178, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 657, + "CustomerInfo": 24067961, + "PaymentType": "Cash" + }, + { + "Id": 2334, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-05-17T14:51:04", + "TransactionId": 39533537, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 852, + "CustomerInfo": 88040497, + "PaymentType": "Cash" + }, + { + "Id": 2335, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2017-07-27T18:51:59", + "TransactionId": 36850719, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 142, + "CustomerInfo": 43627198, + "PaymentType": "Credit Card" + }, + { + "Id": 2336, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-01-09T10:35:02", + "TransactionId": 84700777, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 485, + "CustomerInfo": 47826125, + "PaymentType": "Cash" + }, + { + "Id": 2337, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-05-14T12:39:45", + "TransactionId": 59685585, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 587, + "CustomerInfo": 4161810, + "PaymentType": "Debit Card" + }, + { + "Id": 2338, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2017-06-02T17:35:48", + "TransactionId": 80073384, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 62982955, + "PaymentType": "Credit Card" + }, + { + "Id": 2339, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-07-06T14:43:35", + "TransactionId": 71318171, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 728, + "CustomerInfo": 10499485, + "PaymentType": "Credit Card" + }, + { + "Id": 2340, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-05-03T14:11:37", + "TransactionId": 11201526, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 229, + "CustomerInfo": 53190661, + "PaymentType": "Debit Card" + }, + { + "Id": 2341, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2018-12-25T16:33:01", + "TransactionId": 85380500, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 771, + "CustomerInfo": 1963424, + "PaymentType": "Debit Card" + }, + { + "Id": 2342, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2016-10-14T14:22:34", + "TransactionId": 95871501, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 668, + "CustomerInfo": 6482618, + "PaymentType": "Credit Card" + }, + { + "Id": 2343, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-08-02T12:02:18", + "TransactionId": 53155177, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 339, + "CustomerInfo": 17262745, + "PaymentType": "Credit Card" + }, + { + "Id": 2344, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-01-08T07:11:43", + "TransactionId": 260487, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 79, + "CustomerInfo": 60713331, + "PaymentType": "Debit Card" + }, + { + "Id": 2345, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2018-10-30T10:13:52", + "TransactionId": 89225026, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 653, + "CustomerInfo": 48712765, + "PaymentType": "Credit Card" + }, + { + "Id": 2346, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-06-16T07:56:12", + "TransactionId": 54371452, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 890, + "CustomerInfo": 4721817, + "PaymentType": "Cash" + }, + { + "Id": 2347, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2018-08-09T10:13:44", + "TransactionId": 18333792, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 254, + "CustomerInfo": 85274301, + "PaymentType": "Cash" + }, + { + "Id": 2348, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2016-10-11T11:27:01", + "TransactionId": 93607697, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 76508604, + "PaymentType": "Cash" + }, + { + "Id": 2349, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2016-07-27T09:45:30", + "TransactionId": 71548846, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 427, + "CustomerInfo": 72343251, + "PaymentType": "Credit Card" + }, + { + "Id": 2350, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-11-21T08:19:24", + "TransactionId": 28865777, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 422, + "CustomerInfo": 46210948, + "PaymentType": "Credit Card" + }, + { + "Id": 2351, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-12-24T09:40:11", + "TransactionId": 67852847, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 627, + "CustomerInfo": 2579955, + "PaymentType": "Cash" + }, + { + "Id": 2352, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-03-09T12:12:23", + "TransactionId": 76847265, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 68, + "CustomerInfo": 60822112, + "PaymentType": "Cash" + }, + { + "Id": 2353, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2019-10-24T07:46:51", + "TransactionId": 66184135, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 576, + "CustomerInfo": 46529596, + "PaymentType": "Cash" + }, + { + "Id": 2354, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2019-11-15T11:15:22", + "TransactionId": 52687597, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 460, + "CustomerInfo": 34402658, + "PaymentType": "Debit Card" + }, + { + "Id": 2355, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-06-21T15:28:13", + "TransactionId": 85170391, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 551, + "CustomerInfo": 14604664, + "PaymentType": "Cash" + }, + { + "Id": 2356, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2018-09-08T08:26:18", + "TransactionId": 71037121, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 914, + "CustomerInfo": 46936716, + "PaymentType": "Debit Card" + }, + { + "Id": 2357, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2017-11-22T07:04:05", + "TransactionId": 81219249, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 252, + "CustomerInfo": 18877777, + "PaymentType": "Cash" + }, + { + "Id": 2358, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2017-06-14T13:58:57", + "TransactionId": 75220151, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 265, + "CustomerInfo": 48831549, + "PaymentType": "Debit Card" + }, + { + "Id": 2359, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2019-01-12T18:56:36", + "TransactionId": 39694666, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 44009059, + "PaymentType": "Debit Card" + }, + { + "Id": 2360, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-03-16T10:22:22", + "TransactionId": 60837671, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 255, + "CustomerInfo": 95736320, + "PaymentType": "Credit Card" + }, + { + "Id": 2361, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2018-06-13T09:33:07", + "TransactionId": 19875296, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 103, + "CustomerInfo": 27256274, + "PaymentType": "Debit Card" + }, + { + "Id": 2362, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2017-04-10T17:37:49", + "TransactionId": 51244360, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 451, + "CustomerInfo": 94986946, + "PaymentType": "Credit Card" + }, + { + "Id": 2363, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2018-03-16T19:15:27", + "TransactionId": 8366923, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 338, + "CustomerInfo": 43148449, + "PaymentType": "Debit Card" + }, + { + "Id": 2364, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-07-03T16:34:36", + "TransactionId": 49509572, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 879, + "CustomerInfo": 87027352, + "PaymentType": "Debit Card" + }, + { + "Id": 2365, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2017-03-01T13:48:26", + "TransactionId": 33503058, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 557, + "CustomerInfo": 32704356, + "PaymentType": "Cash" + }, + { + "Id": 2366, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-05-30T19:23:48", + "TransactionId": 31121746, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 137, + "CustomerInfo": 52369722, + "PaymentType": "Debit Card" + }, + { + "Id": 2367, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-07-26T15:54:43", + "TransactionId": 80580357, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 724, + "CustomerInfo": 57544755, + "PaymentType": "Cash" + }, + { + "Id": 2368, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-08-03T15:34:42", + "TransactionId": 63850467, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 44667545, + "PaymentType": "Credit Card" + }, + { + "Id": 2369, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2019-06-21T14:46:36", + "TransactionId": 43872149, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 555, + "CustomerInfo": 78762577, + "PaymentType": "Cash" + }, + { + "Id": 2370, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2016-08-23T14:37:24", + "TransactionId": 85350761, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 94, + "CustomerInfo": 588809, + "PaymentType": "Credit Card" + }, + { + "Id": 2371, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2019-12-11T12:24:46", + "TransactionId": 68527019, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 734, + "CustomerInfo": 85003711, + "PaymentType": "Cash" + }, + { + "Id": 2372, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-10-24T07:56:47", + "TransactionId": 30897234, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 31, + "CustomerInfo": 52117997, + "PaymentType": "Debit Card" + }, + { + "Id": 2373, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-03-30T09:22:02", + "TransactionId": 92611080, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 90, + "CustomerInfo": 49844816, + "PaymentType": "Debit Card" + }, + { + "Id": 2374, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-04-27T11:45:10", + "TransactionId": 59910247, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 476, + "CustomerInfo": 8181129, + "PaymentType": "Cash" + }, + { + "Id": 2375, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2017-10-14T10:29:34", + "TransactionId": 11411352, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 519, + "CustomerInfo": 31742272, + "PaymentType": "Cash" + }, + { + "Id": 2376, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2016-04-23T07:06:06", + "TransactionId": 1672185, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 525, + "CustomerInfo": 90970912, + "PaymentType": "Credit Card" + }, + { + "Id": 2377, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2018-06-30T07:50:44", + "TransactionId": 73799412, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 270, + "CustomerInfo": 9659377, + "PaymentType": "Cash" + }, + { + "Id": 2378, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2018-09-27T08:27:27", + "TransactionId": 85146651, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 236, + "CustomerInfo": 23282079, + "PaymentType": "Cash" + }, + { + "Id": 2379, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-06-10T09:18:35", + "TransactionId": 99663098, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 955, + "CustomerInfo": 67982053, + "PaymentType": "Cash" + }, + { + "Id": 2380, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-02-27T09:37:09", + "TransactionId": 17652974, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 741, + "CustomerInfo": 56499790, + "PaymentType": "Credit Card" + }, + { + "Id": 2381, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2017-09-14T08:39:07", + "TransactionId": 64193589, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 890, + "CustomerInfo": 75384728, + "PaymentType": "Cash" + }, + { + "Id": 2382, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-02-02T10:20:38", + "TransactionId": 9737792, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 510, + "CustomerInfo": 71756350, + "PaymentType": "Debit Card" + }, + { + "Id": 2383, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-12-19T08:04:25", + "TransactionId": 46883968, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 107, + "CustomerInfo": 79907793, + "PaymentType": "Cash" + }, + { + "Id": 2384, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-02-25T08:14:47", + "TransactionId": 1244946, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 878, + "CustomerInfo": 98332718, + "PaymentType": "Cash" + }, + { + "Id": 2385, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2017-03-08T12:23:20", + "TransactionId": 89361173, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 942, + "CustomerInfo": 2977806, + "PaymentType": "Cash" + }, + { + "Id": 2386, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2019-03-08T12:56:27", + "TransactionId": 9367859, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 326, + "CustomerInfo": 28649571, + "PaymentType": "Cash" + }, + { + "Id": 2387, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2017-08-06T14:21:50", + "TransactionId": 20834403, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 909, + "CustomerInfo": 33605482, + "PaymentType": "Cash" + }, + { + "Id": 2388, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-05-22T18:43:47", + "TransactionId": 65894178, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 933, + "CustomerInfo": 75941669, + "PaymentType": "Credit Card" + }, + { + "Id": 2389, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2016-02-14T14:38:50", + "TransactionId": 75690975, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 502, + "CustomerInfo": 86503634, + "PaymentType": "Cash" + }, + { + "Id": 2390, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2018-07-15T17:49:47", + "TransactionId": 81489147, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 222, + "CustomerInfo": 18305394, + "PaymentType": "Credit Card" + }, + { + "Id": 2391, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2016-03-04T10:08:24", + "TransactionId": 22540292, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 259, + "CustomerInfo": 81508929, + "PaymentType": "Cash" + }, + { + "Id": 2392, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-10-17T16:02:56", + "TransactionId": 69630906, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 28, + "CustomerInfo": 59349785, + "PaymentType": "Credit Card" + }, + { + "Id": 2393, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2016-05-28T07:11:34", + "TransactionId": 17089640, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 297, + "CustomerInfo": 68580078, + "PaymentType": "Debit Card" + }, + { + "Id": 2394, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-01-30T17:50:38", + "TransactionId": 47762184, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 94292719, + "PaymentType": "Cash" + }, + { + "Id": 2395, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-11-26T09:00:52", + "TransactionId": 80370196, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 286, + "CustomerInfo": 95514684, + "PaymentType": "Debit Card" + }, + { + "Id": 2396, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-02-16T19:19:29", + "TransactionId": 1182109, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 975, + "CustomerInfo": 28220314, + "PaymentType": "Debit Card" + }, + { + "Id": 2397, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-01-25T12:53:51", + "TransactionId": 19004157, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 219, + "CustomerInfo": 51533860, + "PaymentType": "Credit Card" + }, + { + "Id": 2398, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2016-12-14T08:11:46", + "TransactionId": 7189524, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 108, + "CustomerInfo": 9715335, + "PaymentType": "Debit Card" + }, + { + "Id": 2399, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-11-22T13:10:25", + "TransactionId": 88554130, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 889, + "CustomerInfo": 3838616, + "PaymentType": "Debit Card" + }, + { + "Id": 2400, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-10-05T19:21:04", + "TransactionId": 39645135, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 997, + "CustomerInfo": 60156107, + "PaymentType": "Debit Card" + }, + { + "Id": 2401, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2016-11-02T19:12:35", + "TransactionId": 23107888, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 996, + "CustomerInfo": 61993530, + "PaymentType": "Cash" + }, + { + "Id": 2402, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-03-09T13:21:56", + "TransactionId": 75827181, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 676, + "CustomerInfo": 3484938, + "PaymentType": "Credit Card" + }, + { + "Id": 2403, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-11-04T15:47:31", + "TransactionId": 37847987, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 944, + "CustomerInfo": 25165731, + "PaymentType": "Credit Card" + }, + { + "Id": 2404, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2016-11-25T14:53:40", + "TransactionId": 37990569, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 374, + "CustomerInfo": 69075938, + "PaymentType": "Debit Card" + }, + { + "Id": 2405, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2017-12-17T15:56:44", + "TransactionId": 12105710, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 472, + "CustomerInfo": 16401319, + "PaymentType": "Cash" + }, + { + "Id": 2406, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-01-06T13:41:57", + "TransactionId": 89092716, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 14275164, + "PaymentType": "Cash" + }, + { + "Id": 2407, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2018-09-21T07:17:02", + "TransactionId": 76866522, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 594, + "CustomerInfo": 12660148, + "PaymentType": "Credit Card" + }, + { + "Id": 2408, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2016-03-10T16:49:26", + "TransactionId": 34312227, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 959, + "CustomerInfo": 6082931, + "PaymentType": "Cash" + }, + { + "Id": 2409, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2016-09-05T16:31:18", + "TransactionId": 96416277, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 845, + "CustomerInfo": 31281373, + "PaymentType": "Credit Card" + }, + { + "Id": 2410, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2017-06-29T17:25:35", + "TransactionId": 67704958, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 323, + "CustomerInfo": 3326373, + "PaymentType": "Credit Card" + }, + { + "Id": 2411, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2018-08-02T13:53:11", + "TransactionId": 80680976, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 953, + "CustomerInfo": 11576005, + "PaymentType": "Cash" + }, + { + "Id": 2412, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2016-11-21T15:13:06", + "TransactionId": 31173307, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 444, + "CustomerInfo": 54443479, + "PaymentType": "Credit Card" + }, + { + "Id": 2413, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-03-19T10:13:18", + "TransactionId": 2105607, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 919, + "CustomerInfo": 19778242, + "PaymentType": "Cash" + }, + { + "Id": 2414, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-01-13T17:14:21", + "TransactionId": 5731919, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 612, + "CustomerInfo": 33097803, + "PaymentType": "Debit Card" + }, + { + "Id": 2415, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-11-14T14:47:46", + "TransactionId": 22764662, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 882, + "CustomerInfo": 69439892, + "PaymentType": "Cash" + }, + { + "Id": 2416, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2018-02-09T13:32:53", + "TransactionId": 66703972, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 363, + "CustomerInfo": 22695905, + "PaymentType": "Debit Card" + }, + { + "Id": 2417, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2018-06-30T18:06:29", + "TransactionId": 6972587, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 704, + "CustomerInfo": 92639688, + "PaymentType": "Cash" + }, + { + "Id": 2418, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2016-03-27T10:57:48", + "TransactionId": 61462254, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 107, + "CustomerInfo": 20646084, + "PaymentType": "Credit Card" + }, + { + "Id": 2419, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2019-05-19T10:31:18", + "TransactionId": 27394430, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 494, + "CustomerInfo": 57037796, + "PaymentType": "Credit Card" + }, + { + "Id": 2420, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-03-12T12:20:53", + "TransactionId": 79654318, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 18, + "CustomerInfo": 41897425, + "PaymentType": "Credit Card" + }, + { + "Id": 2421, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2017-02-12T18:02:10", + "TransactionId": 68343161, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 936, + "CustomerInfo": 18662936, + "PaymentType": "Credit Card" + }, + { + "Id": 2422, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2019-11-17T07:03:13", + "TransactionId": 78934368, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 307, + "CustomerInfo": 87252041, + "PaymentType": "Cash" + }, + { + "Id": 2423, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-05-25T12:12:32", + "TransactionId": 16297979, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 517, + "CustomerInfo": 6977108, + "PaymentType": "Credit Card" + }, + { + "Id": 2424, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-07-21T07:36:29", + "TransactionId": 89713639, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 406, + "CustomerInfo": 76396411, + "PaymentType": "Credit Card" + }, + { + "Id": 2425, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2019-12-17T19:55:03", + "TransactionId": 38579839, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 837, + "CustomerInfo": 17456262, + "PaymentType": "Credit Card" + }, + { + "Id": 2426, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2018-01-24T19:22:39", + "TransactionId": 68157985, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 319, + "CustomerInfo": 12259924, + "PaymentType": "Cash" + }, + { + "Id": 2427, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-06-20T08:35:31", + "TransactionId": 91844971, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 154, + "CustomerInfo": 88595220, + "PaymentType": "Credit Card" + }, + { + "Id": 2428, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-02-16T16:06:32", + "TransactionId": 1048384, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 232, + "CustomerInfo": 55109695, + "PaymentType": "Cash" + }, + { + "Id": 2429, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2016-09-01T16:21:30", + "TransactionId": 94579413, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 755, + "CustomerInfo": 97059857, + "PaymentType": "Cash" + }, + { + "Id": 2430, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2018-02-02T08:46:54", + "TransactionId": 81732821, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 60, + "CustomerInfo": 31971516, + "PaymentType": "Cash" + }, + { + "Id": 2431, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2017-04-28T16:45:59", + "TransactionId": 68082189, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 55993206, + "PaymentType": "Debit Card" + }, + { + "Id": 2432, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-05-19T09:17:25", + "TransactionId": 61250507, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 327, + "CustomerInfo": 28625157, + "PaymentType": "Credit Card" + }, + { + "Id": 2433, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2017-04-04T18:21:36", + "TransactionId": 91721050, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 851, + "CustomerInfo": 17420736, + "PaymentType": "Cash" + }, + { + "Id": 2434, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-03-05T14:13:12", + "TransactionId": 9843485, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 743, + "CustomerInfo": 4712201, + "PaymentType": "Debit Card" + }, + { + "Id": 2435, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-03-26T19:24:32", + "TransactionId": 67942663, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 795, + "CustomerInfo": 80117075, + "PaymentType": "Credit Card" + }, + { + "Id": 2436, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2017-02-08T14:53:23", + "TransactionId": 70943363, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 570, + "CustomerInfo": 59859334, + "PaymentType": "Credit Card" + }, + { + "Id": 2437, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-02-06T15:03:53", + "TransactionId": 17631862, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 104, + "CustomerInfo": 66728084, + "PaymentType": "Credit Card" + }, + { + "Id": 2438, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2018-02-21T08:56:59", + "TransactionId": 10500338, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 954, + "CustomerInfo": 19248911, + "PaymentType": "Credit Card" + }, + { + "Id": 2439, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2019-02-23T18:31:41", + "TransactionId": 18797, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 413, + "CustomerInfo": 61927327, + "PaymentType": "Credit Card" + }, + { + "Id": 2440, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-08-19T11:30:03", + "TransactionId": 75019902, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 417, + "CustomerInfo": 94293519, + "PaymentType": "Credit Card" + }, + { + "Id": 2441, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2017-08-28T09:24:20", + "TransactionId": 97198806, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 913, + "CustomerInfo": 74726253, + "PaymentType": "Debit Card" + }, + { + "Id": 2442, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-08-13T07:47:51", + "TransactionId": 13196421, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 342, + "CustomerInfo": 23931723, + "PaymentType": "Cash" + }, + { + "Id": 2443, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2016-11-01T13:08:59", + "TransactionId": 89621865, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 307, + "CustomerInfo": 86337832, + "PaymentType": "Credit Card" + }, + { + "Id": 2444, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2019-03-03T19:44:15", + "TransactionId": 24931761, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 752, + "CustomerInfo": 17235730, + "PaymentType": "Credit Card" + }, + { + "Id": 2445, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-12-08T07:29:51", + "TransactionId": 42754327, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 724, + "CustomerInfo": 93911863, + "PaymentType": "Cash" + }, + { + "Id": 2446, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2019-10-31T08:00:23", + "TransactionId": 90124348, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 859, + "CustomerInfo": 61249809, + "PaymentType": "Debit Card" + }, + { + "Id": 2447, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2018-03-14T13:26:41", + "TransactionId": 32376907, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 368, + "CustomerInfo": 39603857, + "PaymentType": "Debit Card" + }, + { + "Id": 2448, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-05-15T09:13:24", + "TransactionId": 42734721, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 787, + "CustomerInfo": 54445317, + "PaymentType": "Cash" + }, + { + "Id": 2449, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-01-19T19:18:46", + "TransactionId": 63423928, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 986, + "CustomerInfo": 15825745, + "PaymentType": "Credit Card" + }, + { + "Id": 2450, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-04-23T14:19:32", + "TransactionId": 84903574, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 162, + "CustomerInfo": 71487005, + "PaymentType": "Credit Card" + }, + { + "Id": 2451, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-11-01T13:36:12", + "TransactionId": 93383942, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 15, + "CustomerInfo": 65447950, + "PaymentType": "Credit Card" + }, + { + "Id": 2452, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-11-20T16:08:59", + "TransactionId": 15664157, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 795, + "CustomerInfo": 85469620, + "PaymentType": "Credit Card" + }, + { + "Id": 2453, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-06-30T09:50:24", + "TransactionId": 81348349, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 41, + "CustomerInfo": 75650329, + "PaymentType": "Cash" + }, + { + "Id": 2454, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-08-13T10:02:04", + "TransactionId": 2055175, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 345, + "CustomerInfo": 81457732, + "PaymentType": "Credit Card" + }, + { + "Id": 2455, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2016-09-19T07:52:19", + "TransactionId": 56109912, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 301, + "CustomerInfo": 70825332, + "PaymentType": "Debit Card" + }, + { + "Id": 2456, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2017-10-06T12:23:54", + "TransactionId": 32678193, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 255, + "CustomerInfo": 90254657, + "PaymentType": "Credit Card" + }, + { + "Id": 2457, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-11-10T10:30:09", + "TransactionId": 8361144, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 989, + "CustomerInfo": 95467719, + "PaymentType": "Debit Card" + }, + { + "Id": 2458, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-07-16T14:20:59", + "TransactionId": 32885140, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 421, + "CustomerInfo": 27834889, + "PaymentType": "Debit Card" + }, + { + "Id": 2459, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2018-11-12T07:16:19", + "TransactionId": 6703923, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 893, + "CustomerInfo": 37623060, + "PaymentType": "Credit Card" + }, + { + "Id": 2460, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2018-07-18T14:33:22", + "TransactionId": 6420781, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 159, + "CustomerInfo": 6951663, + "PaymentType": "Debit Card" + }, + { + "Id": 2461, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-05-26T07:59:48", + "TransactionId": 21566105, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 922, + "CustomerInfo": 95696306, + "PaymentType": "Cash" + }, + { + "Id": 2462, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2018-09-21T09:31:58", + "TransactionId": 62499546, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 325, + "CustomerInfo": 17524221, + "PaymentType": "Cash" + }, + { + "Id": 2463, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2019-11-23T18:37:44", + "TransactionId": 49868528, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 814, + "CustomerInfo": 90226867, + "PaymentType": "Credit Card" + }, + { + "Id": 2464, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2018-07-29T18:01:18", + "TransactionId": 37667469, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 201, + "CustomerInfo": 18654818, + "PaymentType": "Debit Card" + }, + { + "Id": 2465, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-03-26T13:33:53", + "TransactionId": 51331376, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 262, + "CustomerInfo": 78036662, + "PaymentType": "Debit Card" + }, + { + "Id": 2466, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2018-05-18T18:43:47", + "TransactionId": 93894240, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 66977703, + "PaymentType": "Credit Card" + }, + { + "Id": 2467, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-11-30T10:13:26", + "TransactionId": 6458654, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 828, + "CustomerInfo": 76981926, + "PaymentType": "Cash" + }, + { + "Id": 2468, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-12-10T17:51:56", + "TransactionId": 41810709, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 693, + "CustomerInfo": 71539543, + "PaymentType": "Credit Card" + }, + { + "Id": 2469, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2017-03-06T17:41:00", + "TransactionId": 83483031, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 324, + "CustomerInfo": 9546301, + "PaymentType": "Credit Card" + }, + { + "Id": 2470, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2018-05-20T09:02:27", + "TransactionId": 16436898, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 247, + "CustomerInfo": 4956304, + "PaymentType": "Credit Card" + }, + { + "Id": 2471, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2016-05-06T12:31:32", + "TransactionId": 35484780, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 394, + "CustomerInfo": 53768058, + "PaymentType": "Cash" + }, + { + "Id": 2472, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2016-06-18T13:04:22", + "TransactionId": 18909784, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 66, + "CustomerInfo": 63772829, + "PaymentType": "Credit Card" + }, + { + "Id": 2473, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-02-16T10:27:33", + "TransactionId": 2736392, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 537, + "CustomerInfo": 54038752, + "PaymentType": "Credit Card" + }, + { + "Id": 2474, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2019-02-09T19:03:48", + "TransactionId": 59409749, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 520, + "CustomerInfo": 40742537, + "PaymentType": "Cash" + }, + { + "Id": 2475, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-02-17T15:08:47", + "TransactionId": 54095555, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 836, + "CustomerInfo": 72767659, + "PaymentType": "Cash" + }, + { + "Id": 2476, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2017-12-27T16:40:31", + "TransactionId": 30048606, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 152, + "CustomerInfo": 55415726, + "PaymentType": "Cash" + }, + { + "Id": 2477, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-10-30T08:53:23", + "TransactionId": 84685167, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 906, + "CustomerInfo": 92457226, + "PaymentType": "Cash" + }, + { + "Id": 2478, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-02-22T14:16:31", + "TransactionId": 78222806, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 162, + "CustomerInfo": 39030572, + "PaymentType": "Debit Card" + }, + { + "Id": 2479, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2016-11-25T12:09:48", + "TransactionId": 32621867, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 204, + "CustomerInfo": 83348431, + "PaymentType": "Credit Card" + }, + { + "Id": 2480, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-08-28T15:02:36", + "TransactionId": 54066561, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 291, + "CustomerInfo": 84697040, + "PaymentType": "Cash" + }, + { + "Id": 2481, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2019-07-19T11:09:10", + "TransactionId": 3011581, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 571, + "CustomerInfo": 63343115, + "PaymentType": "Debit Card" + }, + { + "Id": 2482, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-08-20T15:44:21", + "TransactionId": 88317738, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 269, + "CustomerInfo": 91911750, + "PaymentType": "Cash" + }, + { + "Id": 2483, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-01-28T16:28:08", + "TransactionId": 83126346, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 583, + "CustomerInfo": 65156762, + "PaymentType": "Cash" + }, + { + "Id": 2484, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-07-10T14:41:17", + "TransactionId": 11674689, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 569, + "CustomerInfo": 66921238, + "PaymentType": "Cash" + }, + { + "Id": 2485, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-02-28T19:09:33", + "TransactionId": 57686504, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 327, + "CustomerInfo": 79012722, + "PaymentType": "Cash" + }, + { + "Id": 2486, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2018-04-14T07:14:27", + "TransactionId": 88936951, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 279, + "CustomerInfo": 73208945, + "PaymentType": "Credit Card" + }, + { + "Id": 2487, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-06-20T13:15:36", + "TransactionId": 36544703, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 699, + "CustomerInfo": 74497876, + "PaymentType": "Cash" + }, + { + "Id": 2488, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2018-08-29T17:37:58", + "TransactionId": 95558360, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 790, + "CustomerInfo": 54806742, + "PaymentType": "Debit Card" + }, + { + "Id": 2489, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2018-02-01T16:47:34", + "TransactionId": 50423224, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 833, + "CustomerInfo": 20492722, + "PaymentType": "Credit Card" + }, + { + "Id": 2490, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2019-11-14T16:35:28", + "TransactionId": 73061132, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 783, + "CustomerInfo": 17107464, + "PaymentType": "Credit Card" + }, + { + "Id": 2491, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2017-04-16T16:06:58", + "TransactionId": 50412588, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 65, + "CustomerInfo": 74280959, + "PaymentType": "Cash" + }, + { + "Id": 2492, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2017-08-31T13:52:36", + "TransactionId": 6679190, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 436, + "CustomerInfo": 15585083, + "PaymentType": "Debit Card" + }, + { + "Id": 2493, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2017-03-11T15:09:30", + "TransactionId": 99145314, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 442, + "CustomerInfo": 27900323, + "PaymentType": "Debit Card" + }, + { + "Id": 2494, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2018-01-30T08:35:48", + "TransactionId": 24046392, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 56, + "CustomerInfo": 38058283, + "PaymentType": "Debit Card" + }, + { + "Id": 2495, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2017-10-03T08:03:16", + "TransactionId": 88776938, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 262, + "CustomerInfo": 53320655, + "PaymentType": "Debit Card" + }, + { + "Id": 2496, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-05-26T14:01:41", + "TransactionId": 77560458, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 450, + "CustomerInfo": 51915228, + "PaymentType": "Cash" + }, + { + "Id": 2497, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-05-23T16:51:01", + "TransactionId": 21516992, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 355, + "CustomerInfo": 20925559, + "PaymentType": "Cash" + }, + { + "Id": 2498, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-11-24T08:45:10", + "TransactionId": 42981108, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 492, + "CustomerInfo": 17173514, + "PaymentType": "Credit Card" + }, + { + "Id": 2499, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-05-28T07:54:46", + "TransactionId": 11414075, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 872, + "CustomerInfo": 85215625, + "PaymentType": "Debit Card" + }, + { + "Id": 2500, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-01-06T10:53:20", + "TransactionId": 96375954, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 466, + "CustomerInfo": 20512643, + "PaymentType": "Cash" + }, + { + "Id": 2501, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2017-10-05T12:37:44", + "TransactionId": 88386267, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 335, + "CustomerInfo": 17504576, + "PaymentType": "Debit Card" + }, + { + "Id": 2502, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2019-08-27T16:26:07", + "TransactionId": 10211110, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 916, + "CustomerInfo": 3359258, + "PaymentType": "Credit Card" + }, + { + "Id": 2503, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2018-10-11T17:28:45", + "TransactionId": 58774385, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 240, + "CustomerInfo": 99422386, + "PaymentType": "Credit Card" + }, + { + "Id": 2504, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-11-05T17:34:31", + "TransactionId": 42365537, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 791, + "CustomerInfo": 77918822, + "PaymentType": "Credit Card" + }, + { + "Id": 2505, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-02-16T14:12:55", + "TransactionId": 41792350, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 176, + "CustomerInfo": 43135978, + "PaymentType": "Credit Card" + }, + { + "Id": 2506, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-02-03T10:31:26", + "TransactionId": 87191601, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 706, + "CustomerInfo": 76975330, + "PaymentType": "Credit Card" + }, + { + "Id": 2507, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-10-07T12:23:54", + "TransactionId": 24396286, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 108, + "CustomerInfo": 58266059, + "PaymentType": "Debit Card" + }, + { + "Id": 2508, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2019-10-02T09:04:19", + "TransactionId": 39941840, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 583, + "CustomerInfo": 309584, + "PaymentType": "Debit Card" + }, + { + "Id": 2509, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2018-05-15T13:35:11", + "TransactionId": 9982514, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 653, + "CustomerInfo": 91675180, + "PaymentType": "Cash" + }, + { + "Id": 2510, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2016-12-06T15:49:32", + "TransactionId": 63122136, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 600, + "CustomerInfo": 60994213, + "PaymentType": "Debit Card" + }, + { + "Id": 2511, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2016-11-12T10:33:19", + "TransactionId": 4225755, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 733, + "CustomerInfo": 52872625, + "PaymentType": "Cash" + }, + { + "Id": 2512, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2018-03-19T11:21:33", + "TransactionId": 18915411, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 888, + "CustomerInfo": 20539742, + "PaymentType": "Debit Card" + }, + { + "Id": 2513, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-11-04T18:51:07", + "TransactionId": 99560771, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 799, + "CustomerInfo": 17317718, + "PaymentType": "Cash" + }, + { + "Id": 2514, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-12-29T10:16:02", + "TransactionId": 76503392, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 987, + "CustomerInfo": 54157049, + "PaymentType": "Credit Card" + }, + { + "Id": 2515, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2017-02-06T09:25:47", + "TransactionId": 20253297, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 688, + "CustomerInfo": 7783518, + "PaymentType": "Debit Card" + }, + { + "Id": 2516, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-08-16T07:41:14", + "TransactionId": 72785860, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 144, + "CustomerInfo": 63161572, + "PaymentType": "Debit Card" + }, + { + "Id": 2517, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-04-01T14:39:07", + "TransactionId": 77860977, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 3, + "CustomerInfo": 89651947, + "PaymentType": "Credit Card" + }, + { + "Id": 2518, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-09-19T09:33:33", + "TransactionId": 86600541, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 73369223, + "PaymentType": "Credit Card" + }, + { + "Id": 2519, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-05-06T12:27:56", + "TransactionId": 57270263, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 66, + "CustomerInfo": 72289500, + "PaymentType": "Cash" + }, + { + "Id": 2520, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2017-07-09T19:11:08", + "TransactionId": 82895691, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 367, + "CustomerInfo": 28617030, + "PaymentType": "Cash" + }, + { + "Id": 2521, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2017-08-26T13:46:51", + "TransactionId": 92047738, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 816, + "CustomerInfo": 15372383, + "PaymentType": "Credit Card" + }, + { + "Id": 2522, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-07-02T09:01:35", + "TransactionId": 76262757, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 560, + "CustomerInfo": 4511183, + "PaymentType": "Cash" + }, + { + "Id": 2523, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2018-05-19T15:19:52", + "TransactionId": 97132738, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 59, + "CustomerInfo": 79089848, + "PaymentType": "Cash" + }, + { + "Id": 2524, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-08-17T10:19:12", + "TransactionId": 90627060, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 670, + "CustomerInfo": 5637661, + "PaymentType": "Credit Card" + }, + { + "Id": 2525, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2016-12-01T12:37:35", + "TransactionId": 67819954, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 450, + "CustomerInfo": 74348170, + "PaymentType": "Credit Card" + }, + { + "Id": 2526, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2018-03-06T08:22:16", + "TransactionId": 59142622, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 297, + "CustomerInfo": 34872523, + "PaymentType": "Cash" + }, + { + "Id": 2527, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-12-21T19:02:38", + "TransactionId": 19617934, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 294, + "CustomerInfo": 45308623, + "PaymentType": "Debit Card" + }, + { + "Id": 2528, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2019-01-29T14:23:17", + "TransactionId": 34504976, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 394, + "CustomerInfo": 42918642, + "PaymentType": "Credit Card" + }, + { + "Id": 2529, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-11-07T14:46:28", + "TransactionId": 27349072, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 119, + "CustomerInfo": 19665116, + "PaymentType": "Credit Card" + }, + { + "Id": 2530, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2016-07-25T14:34:48", + "TransactionId": 14426345, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 123, + "CustomerInfo": 58606343, + "PaymentType": "Credit Card" + }, + { + "Id": 2531, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-06-08T09:31:32", + "TransactionId": 28169588, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 663, + "CustomerInfo": 9931713, + "PaymentType": "Cash" + }, + { + "Id": 2532, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-12-09T12:21:27", + "TransactionId": 78292392, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 735, + "CustomerInfo": 53523235, + "PaymentType": "Credit Card" + }, + { + "Id": 2533, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-02-02T08:45:19", + "TransactionId": 96732412, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 473, + "CustomerInfo": 39821111, + "PaymentType": "Cash" + }, + { + "Id": 2534, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-10-22T11:48:03", + "TransactionId": 21849253, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 978, + "CustomerInfo": 91046594, + "PaymentType": "Cash" + }, + { + "Id": 2535, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-08-05T10:23:14", + "TransactionId": 53794667, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 792, + "CustomerInfo": 41726338, + "PaymentType": "Credit Card" + }, + { + "Id": 2536, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2018-07-25T08:13:55", + "TransactionId": 92669070, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 145, + "CustomerInfo": 41101725, + "PaymentType": "Debit Card" + }, + { + "Id": 2537, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-02-02T18:19:09", + "TransactionId": 71789895, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 962, + "CustomerInfo": 18304943, + "PaymentType": "Debit Card" + }, + { + "Id": 2538, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-10-13T17:34:57", + "TransactionId": 28069511, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 322, + "CustomerInfo": 84515890, + "PaymentType": "Cash" + }, + { + "Id": 2539, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2016-02-26T11:46:36", + "TransactionId": 26987737, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 957, + "CustomerInfo": 79523903, + "PaymentType": "Cash" + }, + { + "Id": 2540, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2016-03-25T17:24:35", + "TransactionId": 45281351, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 484, + "CustomerInfo": 49555591, + "PaymentType": "Debit Card" + }, + { + "Id": 2541, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-05-18T13:58:57", + "TransactionId": 87378034, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 929, + "CustomerInfo": 4124102, + "PaymentType": "Cash" + }, + { + "Id": 2542, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-07-02T19:52:02", + "TransactionId": 39246438, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 386, + "CustomerInfo": 90714107, + "PaymentType": "Cash" + }, + { + "Id": 2543, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-08-27T07:02:47", + "TransactionId": 80138066, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 846, + "CustomerInfo": 62044523, + "PaymentType": "Credit Card" + }, + { + "Id": 2544, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2016-03-10T15:30:23", + "TransactionId": 23387583, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 999, + "CustomerInfo": 20346476, + "PaymentType": "Cash" + }, + { + "Id": 2545, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2016-10-14T15:56:44", + "TransactionId": 11393746, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 637, + "CustomerInfo": 68164641, + "PaymentType": "Credit Card" + }, + { + "Id": 2546, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2019-10-04T13:01:29", + "TransactionId": 88665400, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 309, + "CustomerInfo": 44261326, + "PaymentType": "Debit Card" + }, + { + "Id": 2547, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-11-19T12:42:46", + "TransactionId": 77557743, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 390, + "CustomerInfo": 4075045, + "PaymentType": "Cash" + }, + { + "Id": 2548, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-05-29T09:40:54", + "TransactionId": 68689161, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 840, + "CustomerInfo": 79450401, + "PaymentType": "Cash" + }, + { + "Id": 2549, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-02-19T13:28:51", + "TransactionId": 4487114, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 555, + "CustomerInfo": 79116763, + "PaymentType": "Debit Card" + }, + { + "Id": 2550, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2016-08-28T10:20:30", + "TransactionId": 24568820, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 1, + "CustomerInfo": 3743039, + "PaymentType": "Credit Card" + }, + { + "Id": 2551, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-10-27T12:47:14", + "TransactionId": 55048267, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 845, + "CustomerInfo": 81956283, + "PaymentType": "Credit Card" + }, + { + "Id": 2552, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2018-04-03T08:57:24", + "TransactionId": 67434732, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 41, + "CustomerInfo": 84545301, + "PaymentType": "Debit Card" + }, + { + "Id": 2553, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-07-02T16:03:13", + "TransactionId": 52216241, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 68, + "CustomerInfo": 82730185, + "PaymentType": "Cash" + }, + { + "Id": 2554, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2018-03-16T13:45:16", + "TransactionId": 61631109, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 545, + "CustomerInfo": 91316853, + "PaymentType": "Debit Card" + }, + { + "Id": 2555, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-06-26T17:05:51", + "TransactionId": 10384108, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 850, + "CustomerInfo": 34852018, + "PaymentType": "Debit Card" + }, + { + "Id": 2556, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-08-30T15:50:41", + "TransactionId": 44373343, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 580, + "CustomerInfo": 90187188, + "PaymentType": "Debit Card" + }, + { + "Id": 2557, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2017-08-08T18:49:58", + "TransactionId": 20188633, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 122, + "CustomerInfo": 40498289, + "PaymentType": "Cash" + }, + { + "Id": 2558, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2019-03-13T09:58:02", + "TransactionId": 33275458, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 194, + "CustomerInfo": 81578316, + "PaymentType": "Debit Card" + }, + { + "Id": 2559, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-11-24T17:48:37", + "TransactionId": 10264068, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 983, + "CustomerInfo": 98247402, + "PaymentType": "Debit Card" + }, + { + "Id": 2560, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2016-05-02T12:27:30", + "TransactionId": 15763193, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 47, + "CustomerInfo": 5994701, + "PaymentType": "Credit Card" + }, + { + "Id": 2561, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2019-07-05T08:39:50", + "TransactionId": 53183223, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 103, + "CustomerInfo": 85616117, + "PaymentType": "Cash" + }, + { + "Id": 2562, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-02-23T15:05:37", + "TransactionId": 85408192, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 611, + "CustomerInfo": 5976327, + "PaymentType": "Debit Card" + }, + { + "Id": 2563, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2016-12-11T19:43:41", + "TransactionId": 6045413, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 396, + "CustomerInfo": 90652032, + "PaymentType": "Cash" + }, + { + "Id": 2564, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2019-08-07T13:16:54", + "TransactionId": 56772836, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 340, + "CustomerInfo": 82412792, + "PaymentType": "Credit Card" + }, + { + "Id": 2565, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2018-04-06T17:38:41", + "TransactionId": 56598390, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 650, + "CustomerInfo": 16803142, + "PaymentType": "Cash" + }, + { + "Id": 2566, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2019-04-22T13:52:19", + "TransactionId": 86544678, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 315, + "CustomerInfo": 96965220, + "PaymentType": "Debit Card" + }, + { + "Id": 2567, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-04-29T07:07:24", + "TransactionId": 34023062, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 38, + "CustomerInfo": 46261185, + "PaymentType": "Credit Card" + }, + { + "Id": 2568, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-05-01T12:42:55", + "TransactionId": 88274016, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 936, + "CustomerInfo": 51765878, + "PaymentType": "Cash" + }, + { + "Id": 2569, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2016-04-27T19:28:16", + "TransactionId": 76369160, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 629, + "CustomerInfo": 12536127, + "PaymentType": "Cash" + }, + { + "Id": 2570, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-07-18T07:35:20", + "TransactionId": 5671387, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 543, + "CustomerInfo": 94605331, + "PaymentType": "Cash" + }, + { + "Id": 2571, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-06-05T16:15:36", + "TransactionId": 46111568, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 535, + "CustomerInfo": 72749409, + "PaymentType": "Credit Card" + }, + { + "Id": 2572, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2018-03-02T19:01:55", + "TransactionId": 23051342, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 440, + "CustomerInfo": 6575420, + "PaymentType": "Debit Card" + }, + { + "Id": 2573, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2017-10-26T08:16:31", + "TransactionId": 90676992, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 432, + "CustomerInfo": 78742098, + "PaymentType": "Cash" + }, + { + "Id": 2574, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-02-23T15:13:41", + "TransactionId": 74610380, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 368, + "CustomerInfo": 25641509, + "PaymentType": "Credit Card" + }, + { + "Id": 2575, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2017-12-06T15:07:38", + "TransactionId": 79634753, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 737, + "CustomerInfo": 45997015, + "PaymentType": "Cash" + }, + { + "Id": 2576, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-01-10T17:59:25", + "TransactionId": 66951287, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 93, + "CustomerInfo": 12479269, + "PaymentType": "Debit Card" + }, + { + "Id": 2577, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2016-10-13T12:01:00", + "TransactionId": 95903987, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 392, + "CustomerInfo": 2416737, + "PaymentType": "Cash" + }, + { + "Id": 2578, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2018-12-28T18:11:23", + "TransactionId": 94649565, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 362, + "CustomerInfo": 37108711, + "PaymentType": "Credit Card" + }, + { + "Id": 2579, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-09-10T19:40:57", + "TransactionId": 53147059, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 869, + "CustomerInfo": 99038021, + "PaymentType": "Debit Card" + }, + { + "Id": 2580, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-02-26T16:25:06", + "TransactionId": 15306209, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 436, + "CustomerInfo": 28413589, + "PaymentType": "Credit Card" + }, + { + "Id": 2581, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-10-11T09:39:53", + "TransactionId": 47030521, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 275, + "CustomerInfo": 63477850, + "PaymentType": "Credit Card" + }, + { + "Id": 2582, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2018-01-12T12:32:24", + "TransactionId": 2995381, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 921, + "CustomerInfo": 93766155, + "PaymentType": "Credit Card" + }, + { + "Id": 2583, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2019-01-07T13:51:10", + "TransactionId": 37296844, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 430, + "CustomerInfo": 63360923, + "PaymentType": "Credit Card" + }, + { + "Id": 2584, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2016-11-17T17:37:24", + "TransactionId": 5872401, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 76, + "CustomerInfo": 57833802, + "PaymentType": "Cash" + }, + { + "Id": 2585, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-02-09T16:04:39", + "TransactionId": 52219541, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 593, + "CustomerInfo": 24267106, + "PaymentType": "Credit Card" + }, + { + "Id": 2586, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2019-09-08T15:57:27", + "TransactionId": 95139210, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 871, + "CustomerInfo": 44134957, + "PaymentType": "Cash" + }, + { + "Id": 2587, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-02-27T19:58:39", + "TransactionId": 68125862, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 813, + "CustomerInfo": 23022495, + "PaymentType": "Cash" + }, + { + "Id": 2588, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2019-08-27T14:14:12", + "TransactionId": 32574412, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 151, + "CustomerInfo": 76036037, + "PaymentType": "Credit Card" + }, + { + "Id": 2589, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-03-14T19:16:54", + "TransactionId": 20977736, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 918, + "CustomerInfo": 85344171, + "PaymentType": "Credit Card" + }, + { + "Id": 2590, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-02-27T08:40:51", + "TransactionId": 75299869, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 898, + "CustomerInfo": 59994432, + "PaymentType": "Cash" + }, + { + "Id": 2591, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2018-07-08T10:06:58", + "TransactionId": 40790114, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 371, + "CustomerInfo": 35495302, + "PaymentType": "Debit Card" + }, + { + "Id": 2592, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2018-10-10T07:50:18", + "TransactionId": 2005797, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 104, + "CustomerInfo": 44725520, + "PaymentType": "Credit Card" + }, + { + "Id": 2593, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2019-08-08T16:22:22", + "TransactionId": 75988485, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 347, + "CustomerInfo": 88460016, + "PaymentType": "Cash" + }, + { + "Id": 2594, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-05-19T18:08:21", + "TransactionId": 83704548, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 305, + "CustomerInfo": 79168995, + "PaymentType": "Credit Card" + }, + { + "Id": 2595, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-01-05T08:06:26", + "TransactionId": 43872546, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 872, + "CustomerInfo": 50610372, + "PaymentType": "Cash" + }, + { + "Id": 2596, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-09-18T15:08:47", + "TransactionId": 59133612, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 51, + "CustomerInfo": 77276294, + "PaymentType": "Cash" + }, + { + "Id": 2597, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-04-04T09:42:55", + "TransactionId": 21393924, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 410, + "CustomerInfo": 20698974, + "PaymentType": "Credit Card" + }, + { + "Id": 2598, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2019-10-16T13:06:14", + "TransactionId": 31660055, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 295, + "CustomerInfo": 89627764, + "PaymentType": "Cash" + }, + { + "Id": 2599, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2016-03-08T08:36:49", + "TransactionId": 25941225, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 883, + "CustomerInfo": 71437707, + "PaymentType": "Cash" + }, + { + "Id": 2600, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-10-06T19:13:26", + "TransactionId": 93008908, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 430, + "CustomerInfo": 97649815, + "PaymentType": "Debit Card" + }, + { + "Id": 2601, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2017-09-18T15:58:19", + "TransactionId": 63218360, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 417, + "CustomerInfo": 58381795, + "PaymentType": "Credit Card" + }, + { + "Id": 2602, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-08-06T17:38:24", + "TransactionId": 76398175, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 792, + "CustomerInfo": 26766568, + "PaymentType": "Debit Card" + }, + { + "Id": 2603, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-12-21T18:29:05", + "TransactionId": 95086907, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 872, + "CustomerInfo": 63787258, + "PaymentType": "Cash" + }, + { + "Id": 2604, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2016-08-18T07:33:01", + "TransactionId": 99843180, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 608, + "CustomerInfo": 25592883, + "PaymentType": "Cash" + }, + { + "Id": 2605, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-08-06T10:26:24", + "TransactionId": 53690343, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 394, + "CustomerInfo": 35831392, + "PaymentType": "Debit Card" + }, + { + "Id": 2606, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2016-09-22T09:20:53", + "TransactionId": 86192240, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 33, + "CustomerInfo": 12749708, + "PaymentType": "Debit Card" + }, + { + "Id": 2607, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2018-11-16T13:36:37", + "TransactionId": 23646662, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 750, + "CustomerInfo": 88142331, + "PaymentType": "Cash" + }, + { + "Id": 2608, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2019-12-28T13:25:32", + "TransactionId": 97787975, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 557, + "CustomerInfo": 19694352, + "PaymentType": "Debit Card" + }, + { + "Id": 2609, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-08-12T11:58:08", + "TransactionId": 51639281, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 796, + "CustomerInfo": 90645701, + "PaymentType": "Debit Card" + }, + { + "Id": 2610, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2018-04-08T10:38:47", + "TransactionId": 4619045, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 38, + "CustomerInfo": 91918935, + "PaymentType": "Debit Card" + }, + { + "Id": 2611, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-10-28T10:01:38", + "TransactionId": 37531577, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 657, + "CustomerInfo": 64230749, + "PaymentType": "Debit Card" + }, + { + "Id": 2612, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2017-03-11T09:54:43", + "TransactionId": 1339184, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 570, + "CustomerInfo": 46123463, + "PaymentType": "Debit Card" + }, + { + "Id": 2613, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-03-14T17:07:18", + "TransactionId": 6191261, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 336, + "CustomerInfo": 24462123, + "PaymentType": "Credit Card" + }, + { + "Id": 2614, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-05-03T15:10:31", + "TransactionId": 84399094, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 821, + "CustomerInfo": 49938960, + "PaymentType": "Credit Card" + }, + { + "Id": 2615, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-08-26T18:54:52", + "TransactionId": 74706238, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 454, + "CustomerInfo": 83261914, + "PaymentType": "Credit Card" + }, + { + "Id": 2616, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2016-06-14T08:40:08", + "TransactionId": 35666169, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 231, + "CustomerInfo": 56612599, + "PaymentType": "Credit Card" + }, + { + "Id": 2617, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-06-26T18:41:54", + "TransactionId": 7030852, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 245, + "CustomerInfo": 10479726, + "PaymentType": "Cash" + }, + { + "Id": 2618, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-11-30T10:49:09", + "TransactionId": 25907393, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 395, + "CustomerInfo": 94591778, + "PaymentType": "Credit Card" + }, + { + "Id": 2619, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-09-15T17:41:08", + "TransactionId": 66593503, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 778, + "CustomerInfo": 70565038, + "PaymentType": "Credit Card" + }, + { + "Id": 2620, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2017-05-10T19:31:44", + "TransactionId": 44982979, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 805, + "CustomerInfo": 63793756, + "PaymentType": "Debit Card" + }, + { + "Id": 2621, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-03-15T07:31:26", + "TransactionId": 5927903, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 3, + "CustomerInfo": 16840614, + "PaymentType": "Credit Card" + }, + { + "Id": 2622, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-09-24T09:46:31", + "TransactionId": 63376753, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 73, + "CustomerInfo": 34652439, + "PaymentType": "Cash" + }, + { + "Id": 2623, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-08-17T07:45:50", + "TransactionId": 17463249, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 398, + "CustomerInfo": 47085347, + "PaymentType": "Cash" + }, + { + "Id": 2624, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-12-18T14:36:40", + "TransactionId": 97892612, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 675, + "CustomerInfo": 35952691, + "PaymentType": "Cash" + }, + { + "Id": 2625, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2016-02-02T19:56:30", + "TransactionId": 25006359, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 374, + "CustomerInfo": 25333123, + "PaymentType": "Cash" + }, + { + "Id": 2626, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2019-09-11T08:10:45", + "TransactionId": 12656078, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 226, + "CustomerInfo": 33665590, + "PaymentType": "Cash" + }, + { + "Id": 2627, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2017-05-28T07:09:24", + "TransactionId": 7787819, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 699, + "CustomerInfo": 52583560, + "PaymentType": "Debit Card" + }, + { + "Id": 2628, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2019-12-02T16:13:00", + "TransactionId": 237216, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 82, + "CustomerInfo": 57563079, + "PaymentType": "Cash" + }, + { + "Id": 2629, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2019-07-29T12:29:40", + "TransactionId": 65912148, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 50, + "CustomerInfo": 23544946, + "PaymentType": "Debit Card" + }, + { + "Id": 2630, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-08-10T12:04:11", + "TransactionId": 15190006, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 232, + "CustomerInfo": 97478715, + "PaymentType": "Cash" + }, + { + "Id": 2631, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2016-03-27T13:44:24", + "TransactionId": 61689278, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 173, + "CustomerInfo": 19075366, + "PaymentType": "Debit Card" + }, + { + "Id": 2632, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2016-05-11T19:45:07", + "TransactionId": 61834103, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 954, + "CustomerInfo": 53958366, + "PaymentType": "Cash" + }, + { + "Id": 2633, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-11-11T17:47:20", + "TransactionId": 84936495, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 724, + "CustomerInfo": 48279970, + "PaymentType": "Credit Card" + }, + { + "Id": 2634, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-02-05T15:27:04", + "TransactionId": 47499100, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 752, + "CustomerInfo": 62427836, + "PaymentType": "Debit Card" + }, + { + "Id": 2635, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-08-24T08:20:15", + "TransactionId": 77426057, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 587, + "CustomerInfo": 45307147, + "PaymentType": "Debit Card" + }, + { + "Id": 2636, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2016-07-18T13:50:01", + "TransactionId": 52783934, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 468, + "CustomerInfo": 88611069, + "PaymentType": "Credit Card" + }, + { + "Id": 2637, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2018-10-09T18:48:23", + "TransactionId": 52255016, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 190, + "CustomerInfo": 38733651, + "PaymentType": "Credit Card" + }, + { + "Id": 2638, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2016-02-21T18:58:45", + "TransactionId": 3205476, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 400, + "CustomerInfo": 13617986, + "PaymentType": "Cash" + }, + { + "Id": 2639, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2019-08-06T13:35:20", + "TransactionId": 98343252, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 835, + "CustomerInfo": 96296907, + "PaymentType": "Credit Card" + }, + { + "Id": 2640, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-07-01T07:52:45", + "TransactionId": 20557727, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 848, + "CustomerInfo": 92144895, + "PaymentType": "Debit Card" + }, + { + "Id": 2641, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-10-22T11:36:58", + "TransactionId": 60580300, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 166, + "CustomerInfo": 73648034, + "PaymentType": "Credit Card" + }, + { + "Id": 2642, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-09-29T19:11:00", + "TransactionId": 83112652, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 151, + "CustomerInfo": 58359627, + "PaymentType": "Cash" + }, + { + "Id": 2643, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2018-04-28T07:31:52", + "TransactionId": 15649120, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 895, + "CustomerInfo": 93657790, + "PaymentType": "Credit Card" + }, + { + "Id": 2644, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2019-01-25T17:38:07", + "TransactionId": 33158674, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 39, + "CustomerInfo": 77762329, + "PaymentType": "Cash" + }, + { + "Id": 2645, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-12-27T16:57:39", + "TransactionId": 16922086, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 654, + "CustomerInfo": 41797783, + "PaymentType": "Credit Card" + }, + { + "Id": 2646, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-02-14T09:43:38", + "TransactionId": 55217166, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 542, + "CustomerInfo": 80077421, + "PaymentType": "Credit Card" + }, + { + "Id": 2647, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-04-29T17:57:24", + "TransactionId": 17225241, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 116, + "CustomerInfo": 30265283, + "PaymentType": "Credit Card" + }, + { + "Id": 2648, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2018-09-02T16:14:36", + "TransactionId": 46392461, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 706, + "CustomerInfo": 79739295, + "PaymentType": "Debit Card" + }, + { + "Id": 2649, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2018-10-26T18:33:33", + "TransactionId": 85998375, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 254, + "CustomerInfo": 92854008, + "PaymentType": "Debit Card" + }, + { + "Id": 2650, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2016-01-18T10:10:25", + "TransactionId": 59068495, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 324, + "CustomerInfo": 21074406, + "PaymentType": "Credit Card" + }, + { + "Id": 2651, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2017-06-23T07:49:26", + "TransactionId": 31577971, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 716, + "CustomerInfo": 9280364, + "PaymentType": "Credit Card" + }, + { + "Id": 2652, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-11-10T12:15:24", + "TransactionId": 52029500, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 676, + "CustomerInfo": 95945428, + "PaymentType": "Debit Card" + }, + { + "Id": 2653, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-04-07T16:29:51", + "TransactionId": 46653609, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 69, + "CustomerInfo": 20635379, + "PaymentType": "Cash" + }, + { + "Id": 2654, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-07-05T08:44:36", + "TransactionId": 90068957, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 597, + "CustomerInfo": 73764430, + "PaymentType": "Cash" + }, + { + "Id": 2655, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2018-09-03T11:22:42", + "TransactionId": 33366691, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 36, + "CustomerInfo": 59905550, + "PaymentType": "Cash" + }, + { + "Id": 2656, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-08-12T10:51:53", + "TransactionId": 16446471, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 537, + "CustomerInfo": 61222481, + "PaymentType": "Cash" + }, + { + "Id": 2657, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2018-07-21T19:03:22", + "TransactionId": 53741496, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 123, + "CustomerInfo": 42347721, + "PaymentType": "Credit Card" + }, + { + "Id": 2658, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2018-03-21T18:36:00", + "TransactionId": 30586336, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 249, + "CustomerInfo": 9745050, + "PaymentType": "Credit Card" + }, + { + "Id": 2659, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2018-06-15T12:21:19", + "TransactionId": 31393319, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 802, + "CustomerInfo": 55993460, + "PaymentType": "Cash" + }, + { + "Id": 2660, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2017-08-15T12:32:59", + "TransactionId": 25986008, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 873, + "CustomerInfo": 60298346, + "PaymentType": "Cash" + }, + { + "Id": 2661, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2017-01-28T10:44:41", + "TransactionId": 31778964, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 745, + "CustomerInfo": 79859857, + "PaymentType": "Cash" + }, + { + "Id": 2662, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-12-07T07:51:45", + "TransactionId": 6543064, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 209, + "CustomerInfo": 60772672, + "PaymentType": "Credit Card" + }, + { + "Id": 2663, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-07-11T14:23:17", + "TransactionId": 19265291, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 964, + "CustomerInfo": 75982540, + "PaymentType": "Debit Card" + }, + { + "Id": 2664, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-07-14T11:09:10", + "TransactionId": 1988574, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 787, + "CustomerInfo": 48735564, + "PaymentType": "Cash" + }, + { + "Id": 2665, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2016-09-28T10:00:12", + "TransactionId": 97481284, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 437, + "CustomerInfo": 41136398, + "PaymentType": "Credit Card" + }, + { + "Id": 2666, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-02-27T15:07:55", + "TransactionId": 73578916, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 305, + "CustomerInfo": 55669641, + "PaymentType": "Credit Card" + }, + { + "Id": 2667, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2019-12-18T10:30:52", + "TransactionId": 43943599, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 709, + "CustomerInfo": 91517926, + "PaymentType": "Debit Card" + }, + { + "Id": 2668, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2017-07-21T09:52:42", + "TransactionId": 91393643, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 475, + "CustomerInfo": 16570097, + "PaymentType": "Debit Card" + }, + { + "Id": 2669, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-10-28T10:26:41", + "TransactionId": 82818302, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 7, + "CustomerInfo": 69073064, + "PaymentType": "Cash" + }, + { + "Id": 2670, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2017-03-11T13:50:10", + "TransactionId": 88694522, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 90, + "CustomerInfo": 97034005, + "PaymentType": "Debit Card" + }, + { + "Id": 2671, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-11-25T11:55:24", + "TransactionId": 62983869, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 781, + "CustomerInfo": 86359306, + "PaymentType": "Credit Card" + }, + { + "Id": 2672, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-09-07T08:54:23", + "TransactionId": 47516024, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 721, + "CustomerInfo": 4147650, + "PaymentType": "Cash" + }, + { + "Id": 2673, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2017-11-24T16:12:26", + "TransactionId": 66888557, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 47, + "CustomerInfo": 3181196, + "PaymentType": "Debit Card" + }, + { + "Id": 2674, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2016-11-10T13:50:10", + "TransactionId": 73790512, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 199, + "CustomerInfo": 41650621, + "PaymentType": "Debit Card" + }, + { + "Id": 2675, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-01-18T19:47:43", + "TransactionId": 41242175, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 686, + "CustomerInfo": 33814816, + "PaymentType": "Cash" + }, + { + "Id": 2676, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2016-11-12T11:55:49", + "TransactionId": 44579108, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 842, + "CustomerInfo": 74357373, + "PaymentType": "Debit Card" + }, + { + "Id": 2677, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2019-12-02T10:37:12", + "TransactionId": 52251849, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 65, + "CustomerInfo": 53096293, + "PaymentType": "Credit Card" + }, + { + "Id": 2678, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2019-03-03T18:28:39", + "TransactionId": 55439031, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 544, + "CustomerInfo": 64887376, + "PaymentType": "Credit Card" + }, + { + "Id": 2679, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-12-08T18:04:45", + "TransactionId": 51434195, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 625, + "CustomerInfo": 16657954, + "PaymentType": "Debit Card" + }, + { + "Id": 2680, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-03-27T18:49:24", + "TransactionId": 368924, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 8341096, + "PaymentType": "Cash" + }, + { + "Id": 2681, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2016-04-21T08:34:22", + "TransactionId": 13878901, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 325, + "CustomerInfo": 46458757, + "PaymentType": "Credit Card" + }, + { + "Id": 2682, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2018-05-21T14:29:54", + "TransactionId": 26504862, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 985, + "CustomerInfo": 98276044, + "PaymentType": "Debit Card" + }, + { + "Id": 2683, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2016-12-17T17:40:25", + "TransactionId": 49275913, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 360, + "CustomerInfo": 80159109, + "PaymentType": "Cash" + }, + { + "Id": 2684, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2018-01-22T16:48:43", + "TransactionId": 74780651, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 466, + "CustomerInfo": 18342659, + "PaymentType": "Debit Card" + }, + { + "Id": 2685, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2017-02-03T07:53:54", + "TransactionId": 18964220, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 227, + "CustomerInfo": 53414532, + "PaymentType": "Debit Card" + }, + { + "Id": 2686, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2016-08-07T18:51:07", + "TransactionId": 11708442, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 54, + "CustomerInfo": 15385408, + "PaymentType": "Credit Card" + }, + { + "Id": 2687, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2017-01-15T10:57:22", + "TransactionId": 25700708, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 651, + "CustomerInfo": 11912091, + "PaymentType": "Debit Card" + }, + { + "Id": 2688, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-07-09T13:24:32", + "TransactionId": 99211769, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 23837140, + "PaymentType": "Debit Card" + }, + { + "Id": 2689, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2016-10-11T15:16:51", + "TransactionId": 87463202, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 623, + "CustomerInfo": 68981163, + "PaymentType": "Debit Card" + }, + { + "Id": 2690, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2019-02-02T16:10:16", + "TransactionId": 53566544, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 405, + "CustomerInfo": 82066709, + "PaymentType": "Debit Card" + }, + { + "Id": 2691, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-08-08T15:24:55", + "TransactionId": 24103927, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 851, + "CustomerInfo": 21402066, + "PaymentType": "Cash" + }, + { + "Id": 2692, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-03-15T17:31:03", + "TransactionId": 94112617, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 702, + "CustomerInfo": 46177620, + "PaymentType": "Debit Card" + }, + { + "Id": 2693, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2017-12-13T17:01:32", + "TransactionId": 89456173, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 548, + "CustomerInfo": 28066477, + "PaymentType": "Credit Card" + }, + { + "Id": 2694, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2017-01-06T15:28:48", + "TransactionId": 42406978, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 360, + "CustomerInfo": 52438956, + "PaymentType": "Cash" + }, + { + "Id": 2695, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2016-12-11T09:27:39", + "TransactionId": 87650497, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 330, + "CustomerInfo": 71234362, + "PaymentType": "Debit Card" + }, + { + "Id": 2696, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2018-11-20T08:19:32", + "TransactionId": 80621735, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 21, + "CustomerInfo": 4026171, + "PaymentType": "Debit Card" + }, + { + "Id": 2697, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2018-03-07T16:11:08", + "TransactionId": 25413760, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 598, + "CustomerInfo": 6200757, + "PaymentType": "Credit Card" + }, + { + "Id": 2698, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-04-02T09:31:32", + "TransactionId": 52717088, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 200, + "CustomerInfo": 1008505, + "PaymentType": "Debit Card" + }, + { + "Id": 2699, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-03-08T07:55:21", + "TransactionId": 69809045, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 493, + "CustomerInfo": 75452837, + "PaymentType": "Cash" + }, + { + "Id": 2700, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2019-09-13T10:37:38", + "TransactionId": 2253959, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 950, + "CustomerInfo": 94788549, + "PaymentType": "Credit Card" + }, + { + "Id": 2701, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-10-28T07:40:13", + "TransactionId": 81414732, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 431, + "CustomerInfo": 40156390, + "PaymentType": "Debit Card" + }, + { + "Id": 2702, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2019-10-13T07:56:38", + "TransactionId": 48751994, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 45, + "CustomerInfo": 10909646, + "PaymentType": "Credit Card" + }, + { + "Id": 2703, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-01-02T12:17:08", + "TransactionId": 67499236, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 73, + "CustomerInfo": 62843344, + "PaymentType": "Debit Card" + }, + { + "Id": 2704, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-02-24T07:07:15", + "TransactionId": 843575, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 918, + "CustomerInfo": 13733773, + "PaymentType": "Credit Card" + }, + { + "Id": 2705, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-12-11T16:52:45", + "TransactionId": 25919834, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 634, + "CustomerInfo": 68307703, + "PaymentType": "Debit Card" + }, + { + "Id": 2706, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2019-09-13T13:52:54", + "TransactionId": 36303691, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 500, + "CustomerInfo": 67366092, + "PaymentType": "Credit Card" + }, + { + "Id": 2707, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2018-11-13T15:40:54", + "TransactionId": 49359150, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 410, + "CustomerInfo": 26772128, + "PaymentType": "Cash" + }, + { + "Id": 2708, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2017-01-09T15:41:02", + "TransactionId": 64736240, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 187, + "CustomerInfo": 68438915, + "PaymentType": "Credit Card" + }, + { + "Id": 2709, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-12-24T11:01:41", + "TransactionId": 80210842, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 226, + "CustomerInfo": 58746655, + "PaymentType": "Credit Card" + }, + { + "Id": 2710, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-04-12T10:24:32", + "TransactionId": 83302742, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 967, + "CustomerInfo": 52377877, + "PaymentType": "Cash" + }, + { + "Id": 2711, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-08-11T14:48:29", + "TransactionId": 68343434, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 816, + "CustomerInfo": 87866914, + "PaymentType": "Debit Card" + }, + { + "Id": 2712, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2016-05-21T07:21:56", + "TransactionId": 48723883, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 482, + "CustomerInfo": 6236055, + "PaymentType": "Cash" + }, + { + "Id": 2713, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2016-05-09T19:14:53", + "TransactionId": 42123285, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 19, + "CustomerInfo": 70832676, + "PaymentType": "Credit Card" + }, + { + "Id": 2714, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-04-10T08:34:31", + "TransactionId": 94586883, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 211, + "CustomerInfo": 98408448, + "PaymentType": "Debit Card" + }, + { + "Id": 2715, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-01-21T09:30:23", + "TransactionId": 97796551, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 971, + "CustomerInfo": 49952282, + "PaymentType": "Debit Card" + }, + { + "Id": 2716, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-12-03T18:14:50", + "TransactionId": 28929665, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 441, + "CustomerInfo": 25450832, + "PaymentType": "Credit Card" + }, + { + "Id": 2717, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-09-22T18:39:10", + "TransactionId": 65716510, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 381, + "CustomerInfo": 44661528, + "PaymentType": "Debit Card" + }, + { + "Id": 2718, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-04-04T09:05:02", + "TransactionId": 72423699, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 760, + "CustomerInfo": 99464235, + "PaymentType": "Cash" + }, + { + "Id": 2719, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2019-11-18T09:17:17", + "TransactionId": 65373946, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 633, + "CustomerInfo": 98767144, + "PaymentType": "Credit Card" + }, + { + "Id": 2720, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2017-04-14T17:37:15", + "TransactionId": 89527401, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 945, + "CustomerInfo": 44089176, + "PaymentType": "Credit Card" + }, + { + "Id": 2721, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2016-12-21T17:37:58", + "TransactionId": 52373016, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 412, + "CustomerInfo": 75806896, + "PaymentType": "Debit Card" + }, + { + "Id": 2722, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2019-02-10T19:59:40", + "TransactionId": 45230425, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 615, + "CustomerInfo": 10435343, + "PaymentType": "Cash" + }, + { + "Id": 2723, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2019-10-30T11:26:36", + "TransactionId": 94335703, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 211, + "CustomerInfo": 45373825, + "PaymentType": "Cash" + }, + { + "Id": 2724, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2018-01-15T19:14:36", + "TransactionId": 64323460, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 600, + "CustomerInfo": 14238601, + "PaymentType": "Credit Card" + }, + { + "Id": 2725, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2016-12-28T09:31:32", + "TransactionId": 79308119, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 471, + "CustomerInfo": 38274851, + "PaymentType": "Debit Card" + }, + { + "Id": 2726, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2016-06-22T10:47:17", + "TransactionId": 74309903, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 780, + "CustomerInfo": 41511982, + "PaymentType": "Cash" + }, + { + "Id": 2727, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2019-10-04T09:50:07", + "TransactionId": 27210041, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 874, + "CustomerInfo": 61436572, + "PaymentType": "Credit Card" + }, + { + "Id": 2728, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-09-29T07:56:04", + "TransactionId": 75177613, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 696, + "CustomerInfo": 70964722, + "PaymentType": "Cash" + }, + { + "Id": 2729, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-05-13T16:06:49", + "TransactionId": 43394527, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 19, + "CustomerInfo": 63502298, + "PaymentType": "Debit Card" + }, + { + "Id": 2730, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2019-05-27T12:07:55", + "TransactionId": 61551350, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 49840813, + "PaymentType": "Debit Card" + }, + { + "Id": 2731, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-03-01T12:37:26", + "TransactionId": 56082034, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 292, + "CustomerInfo": 22559831, + "PaymentType": "Debit Card" + }, + { + "Id": 2732, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2016-10-23T13:13:44", + "TransactionId": 88363739, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 14, + "CustomerInfo": 29886149, + "PaymentType": "Debit Card" + }, + { + "Id": 2733, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-10-29T09:34:08", + "TransactionId": 30333942, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 170, + "CustomerInfo": 25484739, + "PaymentType": "Credit Card" + }, + { + "Id": 2734, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2017-06-09T10:48:26", + "TransactionId": 38784345, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 459, + "CustomerInfo": 90180843, + "PaymentType": "Cash" + }, + { + "Id": 2735, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-02-22T11:44:27", + "TransactionId": 16755868, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 95224544, + "PaymentType": "Cash" + }, + { + "Id": 2736, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-12-18T13:00:29", + "TransactionId": 50706992, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 256, + "CustomerInfo": 93781853, + "PaymentType": "Credit Card" + }, + { + "Id": 2737, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2017-10-17T13:23:48", + "TransactionId": 90497989, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 349, + "CustomerInfo": 68503017, + "PaymentType": "Debit Card" + }, + { + "Id": 2738, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2019-01-25T15:54:00", + "TransactionId": 35909728, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 47439545, + "PaymentType": "Credit Card" + }, + { + "Id": 2739, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-07-17T12:54:43", + "TransactionId": 76429749, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 827, + "CustomerInfo": 97518999, + "PaymentType": "Cash" + }, + { + "Id": 2740, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-07-11T09:49:41", + "TransactionId": 52447073, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 885, + "CustomerInfo": 72506732, + "PaymentType": "Cash" + }, + { + "Id": 2741, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2017-09-07T11:28:28", + "TransactionId": 12869705, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 194, + "CustomerInfo": 89092972, + "PaymentType": "Cash" + }, + { + "Id": 2742, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2016-11-09T09:31:06", + "TransactionId": 44537101, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 77361696, + "PaymentType": "Cash" + }, + { + "Id": 2743, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2017-08-02T18:24:37", + "TransactionId": 7072595, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 827, + "CustomerInfo": 72173464, + "PaymentType": "Cash" + }, + { + "Id": 2744, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-06-22T10:50:01", + "TransactionId": 75760933, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 914, + "CustomerInfo": 15777762, + "PaymentType": "Cash" + }, + { + "Id": 2745, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-08-23T10:38:21", + "TransactionId": 67258304, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 217, + "CustomerInfo": 53005386, + "PaymentType": "Cash" + }, + { + "Id": 2746, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2017-09-18T07:21:04", + "TransactionId": 41091439, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 880, + "CustomerInfo": 6671340, + "PaymentType": "Debit Card" + }, + { + "Id": 2747, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2017-05-08T09:47:31", + "TransactionId": 20491715, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 137, + "CustomerInfo": 60237446, + "PaymentType": "Credit Card" + }, + { + "Id": 2748, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2017-09-11T09:05:46", + "TransactionId": 65807314, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 397, + "CustomerInfo": 47284149, + "PaymentType": "Credit Card" + }, + { + "Id": 2749, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-12-10T10:21:56", + "TransactionId": 38291744, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 515, + "CustomerInfo": 43113704, + "PaymentType": "Debit Card" + }, + { + "Id": 2750, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2018-12-20T13:11:43", + "TransactionId": 68169105, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 239, + "CustomerInfo": 25254763, + "PaymentType": "Credit Card" + }, + { + "Id": 2751, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2017-05-24T07:55:47", + "TransactionId": 9184514, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 426, + "CustomerInfo": 85644638, + "PaymentType": "Debit Card" + }, + { + "Id": 2752, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-12-29T15:41:37", + "TransactionId": 73963987, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 80, + "CustomerInfo": 84510597, + "PaymentType": "Cash" + }, + { + "Id": 2753, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-02-05T08:39:42", + "TransactionId": 74372617, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 566, + "CustomerInfo": 13959810, + "PaymentType": "Debit Card" + }, + { + "Id": 2754, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2017-05-20T09:38:10", + "TransactionId": 25227059, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 477, + "CustomerInfo": 93512874, + "PaymentType": "Cash" + }, + { + "Id": 2755, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2016-09-04T07:39:56", + "TransactionId": 88885732, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 8544255, + "PaymentType": "Cash" + }, + { + "Id": 2756, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-03-15T17:04:25", + "TransactionId": 58810357, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 845, + "CustomerInfo": 80399134, + "PaymentType": "Cash" + }, + { + "Id": 2757, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2019-01-21T19:40:39", + "TransactionId": 32373082, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 500, + "CustomerInfo": 17997216, + "PaymentType": "Cash" + }, + { + "Id": 2758, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2017-02-03T10:22:31", + "TransactionId": 62878342, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 262, + "CustomerInfo": 83166467, + "PaymentType": "Credit Card" + }, + { + "Id": 2759, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2018-06-17T17:27:53", + "TransactionId": 20551542, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 274, + "CustomerInfo": 36426656, + "PaymentType": "Debit Card" + }, + { + "Id": 2760, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2017-08-02T13:54:12", + "TransactionId": 54325256, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 694, + "CustomerInfo": 99567943, + "PaymentType": "Debit Card" + }, + { + "Id": 2761, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-02-11T18:17:43", + "TransactionId": 81226422, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 239, + "CustomerInfo": 65496832, + "PaymentType": "Cash" + }, + { + "Id": 2762, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-11-15T08:02:59", + "TransactionId": 3448499, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 626, + "CustomerInfo": 22554335, + "PaymentType": "Debit Card" + }, + { + "Id": 2763, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-07-17T19:30:35", + "TransactionId": 53079479, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 839, + "CustomerInfo": 94457667, + "PaymentType": "Cash" + }, + { + "Id": 2764, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-06-06T07:17:11", + "TransactionId": 69973847, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 601, + "CustomerInfo": 7421491, + "PaymentType": "Cash" + }, + { + "Id": 2765, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2019-09-20T18:55:09", + "TransactionId": 80067007, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 605, + "CustomerInfo": 74570427, + "PaymentType": "Cash" + }, + { + "Id": 2766, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2018-10-11T19:15:01", + "TransactionId": 62914359, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 586, + "CustomerInfo": 96903618, + "PaymentType": "Credit Card" + }, + { + "Id": 2767, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-02-05T07:56:04", + "TransactionId": 9203993, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 86, + "CustomerInfo": 89091943, + "PaymentType": "Cash" + }, + { + "Id": 2768, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2019-03-05T11:56:50", + "TransactionId": 84827956, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 728, + "CustomerInfo": 82125030, + "PaymentType": "Debit Card" + }, + { + "Id": 2769, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-04-22T12:38:27", + "TransactionId": 59070633, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 983, + "CustomerInfo": 11894637, + "PaymentType": "Debit Card" + }, + { + "Id": 2770, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2018-03-22T15:37:09", + "TransactionId": 16417957, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 392, + "CustomerInfo": 34205879, + "PaymentType": "Cash" + }, + { + "Id": 2771, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2019-10-29T09:50:33", + "TransactionId": 70463314, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 18, + "CustomerInfo": 55700833, + "PaymentType": "Credit Card" + }, + { + "Id": 2772, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-04-16T18:21:53", + "TransactionId": 80585520, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 16, + "CustomerInfo": 26409627, + "PaymentType": "Credit Card" + }, + { + "Id": 2773, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-08-20T09:31:32", + "TransactionId": 26356197, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 748, + "CustomerInfo": 50481689, + "PaymentType": "Cash" + }, + { + "Id": 2774, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-04-30T14:39:59", + "TransactionId": 16273205, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 758, + "CustomerInfo": 76676979, + "PaymentType": "Cash" + }, + { + "Id": 2775, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-01-13T14:15:04", + "TransactionId": 80682426, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 543, + "CustomerInfo": 76077561, + "PaymentType": "Debit Card" + }, + { + "Id": 2776, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2017-06-05T11:31:29", + "TransactionId": 93951219, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 217, + "CustomerInfo": 67771592, + "PaymentType": "Debit Card" + }, + { + "Id": 2777, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-10-23T08:55:06", + "TransactionId": 59035226, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 828, + "CustomerInfo": 29457068, + "PaymentType": "Debit Card" + }, + { + "Id": 2778, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-02-28T13:01:38", + "TransactionId": 6138599, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 443, + "CustomerInfo": 22393010, + "PaymentType": "Debit Card" + }, + { + "Id": 2779, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2016-12-13T08:22:25", + "TransactionId": 13433332, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 564, + "CustomerInfo": 75803296, + "PaymentType": "Cash" + }, + { + "Id": 2780, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2017-08-19T09:49:15", + "TransactionId": 27721953, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 541, + "CustomerInfo": 47850467, + "PaymentType": "Cash" + }, + { + "Id": 2781, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-01-04T17:46:36", + "TransactionId": 36850722, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 519, + "CustomerInfo": 85010542, + "PaymentType": "Debit Card" + }, + { + "Id": 2782, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2019-10-02T08:14:47", + "TransactionId": 86573636, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 598, + "CustomerInfo": 51511144, + "PaymentType": "Credit Card" + }, + { + "Id": 2783, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-07-23T13:45:50", + "TransactionId": 44886412, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 818, + "CustomerInfo": 48099904, + "PaymentType": "Cash" + }, + { + "Id": 2784, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-09-17T07:12:43", + "TransactionId": 38900542, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 631, + "CustomerInfo": 52350981, + "PaymentType": "Credit Card" + }, + { + "Id": 2785, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-04-29T19:17:28", + "TransactionId": 83974048, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 231, + "CustomerInfo": 76301180, + "PaymentType": "Debit Card" + }, + { + "Id": 2786, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2016-06-28T17:16:31", + "TransactionId": 52005751, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 381, + "CustomerInfo": 70254571, + "PaymentType": "Debit Card" + }, + { + "Id": 2787, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2016-05-19T18:27:48", + "TransactionId": 58353693, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 909, + "CustomerInfo": 51985917, + "PaymentType": "Debit Card" + }, + { + "Id": 2788, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2018-06-23T15:51:16", + "TransactionId": 62734075, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 997, + "CustomerInfo": 49100383, + "PaymentType": "Debit Card" + }, + { + "Id": 2789, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-04-29T19:54:20", + "TransactionId": 1165427, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 98809989, + "PaymentType": "Debit Card" + }, + { + "Id": 2790, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-02-18T08:29:54", + "TransactionId": 59599897, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 124, + "CustomerInfo": 80480674, + "PaymentType": "Debit Card" + }, + { + "Id": 2791, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-11-04T18:26:04", + "TransactionId": 14331613, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 619, + "CustomerInfo": 51816283, + "PaymentType": "Debit Card" + }, + { + "Id": 2792, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2018-05-16T10:17:46", + "TransactionId": 54868088, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 597, + "CustomerInfo": 7575226, + "PaymentType": "Credit Card" + }, + { + "Id": 2793, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2018-12-07T18:36:26", + "TransactionId": 25002391, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 652, + "CustomerInfo": 65385371, + "PaymentType": "Cash" + }, + { + "Id": 2794, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-08-09T19:33:45", + "TransactionId": 99617278, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 49, + "CustomerInfo": 17530236, + "PaymentType": "Debit Card" + }, + { + "Id": 2795, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2018-02-28T09:21:45", + "TransactionId": 37621961, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 247, + "CustomerInfo": 44037633, + "PaymentType": "Cash" + }, + { + "Id": 2796, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-07-28T07:37:29", + "TransactionId": 59961629, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 50903311, + "PaymentType": "Credit Card" + }, + { + "Id": 2797, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2017-01-23T08:06:43", + "TransactionId": 44006768, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 784, + "CustomerInfo": 83436922, + "PaymentType": "Cash" + }, + { + "Id": 2798, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-03-26T13:54:12", + "TransactionId": 70194201, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 783, + "CustomerInfo": 57956927, + "PaymentType": "Credit Card" + }, + { + "Id": 2799, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-12-01T13:26:41", + "TransactionId": 43641046, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 139, + "CustomerInfo": 22875911, + "PaymentType": "Credit Card" + }, + { + "Id": 2800, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-04-17T10:10:25", + "TransactionId": 18613145, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 62, + "CustomerInfo": 13413878, + "PaymentType": "Credit Card" + }, + { + "Id": 2801, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2016-01-03T17:15:22", + "TransactionId": 43202181, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 239, + "CustomerInfo": 61109912, + "PaymentType": "Credit Card" + }, + { + "Id": 2802, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-05-25T10:37:21", + "TransactionId": 10594094, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 382, + "CustomerInfo": 33793863, + "PaymentType": "Cash" + }, + { + "Id": 2803, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2016-03-29T09:23:02", + "TransactionId": 42514501, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 976, + "CustomerInfo": 63215288, + "PaymentType": "Cash" + }, + { + "Id": 2804, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-08-31T17:16:48", + "TransactionId": 40375715, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 696, + "CustomerInfo": 5872097, + "PaymentType": "Debit Card" + }, + { + "Id": 2805, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2016-11-13T13:49:26", + "TransactionId": 38139374, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 983, + "CustomerInfo": 67425035, + "PaymentType": "Debit Card" + }, + { + "Id": 2806, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2019-09-04T13:33:19", + "TransactionId": 22824761, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 101, + "CustomerInfo": 8918148, + "PaymentType": "Cash" + }, + { + "Id": 2807, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-12-14T13:28:42", + "TransactionId": 17820363, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 446, + "CustomerInfo": 4680551, + "PaymentType": "Cash" + }, + { + "Id": 2808, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-06-14T17:31:55", + "TransactionId": 20203897, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 75, + "CustomerInfo": 71308746, + "PaymentType": "Credit Card" + }, + { + "Id": 2809, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-12-12T10:06:23", + "TransactionId": 55709117, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 394, + "CustomerInfo": 13927454, + "PaymentType": "Debit Card" + }, + { + "Id": 2810, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2016-04-05T08:23:25", + "TransactionId": 25199833, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 7, + "CustomerInfo": 40981209, + "PaymentType": "Credit Card" + }, + { + "Id": 2811, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-08-30T08:06:43", + "TransactionId": 87403990, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 940, + "CustomerInfo": 72397692, + "PaymentType": "Debit Card" + }, + { + "Id": 2812, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2019-10-24T10:15:27", + "TransactionId": 29888300, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 427, + "CustomerInfo": 66189967, + "PaymentType": "Debit Card" + }, + { + "Id": 2813, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2016-02-10T19:42:49", + "TransactionId": 43354060, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 838, + "CustomerInfo": 98404030, + "PaymentType": "Debit Card" + }, + { + "Id": 2814, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-04-07T13:57:48", + "TransactionId": 54897384, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 862, + "CustomerInfo": 24949616, + "PaymentType": "Credit Card" + }, + { + "Id": 2815, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-11-08T07:14:36", + "TransactionId": 56735811, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 309, + "CustomerInfo": 54265132, + "PaymentType": "Debit Card" + }, + { + "Id": 2816, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-10-16T09:04:28", + "TransactionId": 14767177, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 648, + "CustomerInfo": 70256331, + "PaymentType": "Credit Card" + }, + { + "Id": 2817, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-07-02T12:36:09", + "TransactionId": 73894875, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 594, + "CustomerInfo": 91575309, + "PaymentType": "Debit Card" + }, + { + "Id": 2818, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-03-10T16:27:50", + "TransactionId": 8832796, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 63, + "CustomerInfo": 66013086, + "PaymentType": "Cash" + }, + { + "Id": 2819, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-05-21T11:19:32", + "TransactionId": 15443662, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 181, + "CustomerInfo": 57454304, + "PaymentType": "Cash" + }, + { + "Id": 2820, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2016-12-31T14:33:56", + "TransactionId": 69761564, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 171, + "CustomerInfo": 93155623, + "PaymentType": "Credit Card" + }, + { + "Id": 2821, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-04-01T16:03:04", + "TransactionId": 78163829, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 967, + "CustomerInfo": 37739637, + "PaymentType": "Credit Card" + }, + { + "Id": 2822, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2019-10-19T13:14:44", + "TransactionId": 35573587, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 749, + "CustomerInfo": 87434153, + "PaymentType": "Debit Card" + }, + { + "Id": 2823, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2017-12-08T18:01:18", + "TransactionId": 13122645, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 10787300, + "PaymentType": "Credit Card" + }, + { + "Id": 2824, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-03-26T07:24:58", + "TransactionId": 82031554, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 248, + "CustomerInfo": 58573074, + "PaymentType": "Cash" + }, + { + "Id": 2825, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-02-14T10:04:39", + "TransactionId": 24947522, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 358, + "CustomerInfo": 14931100, + "PaymentType": "Debit Card" + }, + { + "Id": 2826, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2016-05-16T08:26:01", + "TransactionId": 31159739, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 401, + "CustomerInfo": 37396172, + "PaymentType": "Debit Card" + }, + { + "Id": 2827, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-01-18T16:44:07", + "TransactionId": 63901590, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 88, + "CustomerInfo": 83679521, + "PaymentType": "Credit Card" + }, + { + "Id": 2828, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2018-05-24T16:22:48", + "TransactionId": 95934047, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 727, + "CustomerInfo": 93864836, + "PaymentType": "Credit Card" + }, + { + "Id": 2829, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-04-01T16:54:20", + "TransactionId": 93929982, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 470, + "CustomerInfo": 70520061, + "PaymentType": "Credit Card" + }, + { + "Id": 2830, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2017-04-25T13:04:13", + "TransactionId": 67569514, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 38, + "CustomerInfo": 95841251, + "PaymentType": "Cash" + }, + { + "Id": 2831, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-11-25T14:27:53", + "TransactionId": 34620852, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 261, + "CustomerInfo": 88211930, + "PaymentType": "Credit Card" + }, + { + "Id": 2832, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-11-19T10:58:22", + "TransactionId": 40081526, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 126, + "CustomerInfo": 47360740, + "PaymentType": "Credit Card" + }, + { + "Id": 2833, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-04-24T11:51:30", + "TransactionId": 91628882, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 305, + "CustomerInfo": 41160850, + "PaymentType": "Debit Card" + }, + { + "Id": 2834, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-07-23T14:20:33", + "TransactionId": 51786469, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 95332659, + "PaymentType": "Cash" + }, + { + "Id": 2835, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2016-01-11T13:39:30", + "TransactionId": 9702916, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 900, + "CustomerInfo": 82335259, + "PaymentType": "Debit Card" + }, + { + "Id": 2836, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-06-30T09:50:59", + "TransactionId": 6510878, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 709, + "CustomerInfo": 27132087, + "PaymentType": "Debit Card" + }, + { + "Id": 2837, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-03-26T09:42:12", + "TransactionId": 59950548, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 399, + "CustomerInfo": 63598658, + "PaymentType": "Debit Card" + }, + { + "Id": 2838, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-03-07T17:39:59", + "TransactionId": 53651806, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 823, + "CustomerInfo": 28431964, + "PaymentType": "Cash" + }, + { + "Id": 2839, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-07-11T16:24:14", + "TransactionId": 94122344, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 590, + "CustomerInfo": 52964206, + "PaymentType": "Debit Card" + }, + { + "Id": 2840, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-09-22T18:17:43", + "TransactionId": 53922160, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 995, + "CustomerInfo": 75746466, + "PaymentType": "Credit Card" + }, + { + "Id": 2841, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-03-18T19:22:13", + "TransactionId": 39100778, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 430, + "CustomerInfo": 72001104, + "PaymentType": "Credit Card" + }, + { + "Id": 2842, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2019-06-03T18:45:30", + "TransactionId": 4488789, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 141, + "CustomerInfo": 74352274, + "PaymentType": "Credit Card" + }, + { + "Id": 2843, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2016-02-06T16:27:59", + "TransactionId": 17237983, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 346, + "CustomerInfo": 22830194, + "PaymentType": "Credit Card" + }, + { + "Id": 2844, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-07-09T19:10:16", + "TransactionId": 96722988, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 485, + "CustomerInfo": 94845748, + "PaymentType": "Cash" + }, + { + "Id": 2845, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-08-02T10:27:16", + "TransactionId": 17919187, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 974, + "CustomerInfo": 94557630, + "PaymentType": "Cash" + }, + { + "Id": 2846, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-06-12T14:33:22", + "TransactionId": 64133118, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 572, + "CustomerInfo": 50726048, + "PaymentType": "Debit Card" + }, + { + "Id": 2847, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-05-25T14:17:14", + "TransactionId": 43843989, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 811, + "CustomerInfo": 77751345, + "PaymentType": "Debit Card" + }, + { + "Id": 2848, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-11-19T14:47:46", + "TransactionId": 78843657, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 810, + "CustomerInfo": 19931811, + "PaymentType": "Credit Card" + }, + { + "Id": 2849, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2018-03-27T12:53:00", + "TransactionId": 57512201, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 30, + "CustomerInfo": 14184900, + "PaymentType": "Debit Card" + }, + { + "Id": 2850, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2017-02-06T17:11:02", + "TransactionId": 70157894, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 824, + "CustomerInfo": 48041604, + "PaymentType": "Credit Card" + }, + { + "Id": 2851, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-12-16T14:39:16", + "TransactionId": 50016343, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 298, + "CustomerInfo": 62003882, + "PaymentType": "Credit Card" + }, + { + "Id": 2852, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-06-08T07:02:21", + "TransactionId": 13348950, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 70044876, + "PaymentType": "Credit Card" + }, + { + "Id": 2853, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-10-17T13:10:42", + "TransactionId": 71688869, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 586, + "CustomerInfo": 47771199, + "PaymentType": "Credit Card" + }, + { + "Id": 2854, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-03-27T13:13:52", + "TransactionId": 73724016, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 21, + "CustomerInfo": 94484975, + "PaymentType": "Debit Card" + }, + { + "Id": 2855, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2016-09-24T09:19:52", + "TransactionId": 44352583, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 820, + "CustomerInfo": 52061899, + "PaymentType": "Credit Card" + }, + { + "Id": 2856, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-02-21T11:58:16", + "TransactionId": 96522136, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 524, + "CustomerInfo": 52083730, + "PaymentType": "Credit Card" + }, + { + "Id": 2857, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2019-06-01T19:31:09", + "TransactionId": 16007561, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 433, + "CustomerInfo": 99363653, + "PaymentType": "Credit Card" + }, + { + "Id": 2858, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2019-08-10T15:42:55", + "TransactionId": 38627172, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 29283478, + "PaymentType": "Debit Card" + }, + { + "Id": 2859, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-01-15T18:26:30", + "TransactionId": 59771645, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 660, + "CustomerInfo": 79905272, + "PaymentType": "Cash" + }, + { + "Id": 2860, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-03-21T16:21:48", + "TransactionId": 21797427, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 93, + "CustomerInfo": 62764268, + "PaymentType": "Debit Card" + }, + { + "Id": 2861, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-08-19T13:21:22", + "TransactionId": 83267427, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 59, + "CustomerInfo": 80693170, + "PaymentType": "Debit Card" + }, + { + "Id": 2862, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2016-05-06T09:19:18", + "TransactionId": 49850515, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 778, + "CustomerInfo": 52392990, + "PaymentType": "Debit Card" + }, + { + "Id": 2863, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-06-08T14:36:06", + "TransactionId": 83460343, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 547, + "CustomerInfo": 25338814, + "PaymentType": "Debit Card" + }, + { + "Id": 2864, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2016-12-19T09:56:27", + "TransactionId": 22013697, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 450, + "CustomerInfo": 1222571, + "PaymentType": "Cash" + }, + { + "Id": 2865, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2016-06-22T13:07:49", + "TransactionId": 79650657, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 75, + "CustomerInfo": 33268831, + "PaymentType": "Debit Card" + }, + { + "Id": 2866, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2019-12-27T08:42:43", + "TransactionId": 29616568, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 765, + "CustomerInfo": 17315150, + "PaymentType": "Cash" + }, + { + "Id": 2867, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2017-02-17T15:53:00", + "TransactionId": 11605307, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 819, + "CustomerInfo": 8387856, + "PaymentType": "Cash" + }, + { + "Id": 2868, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2016-01-26T12:42:55", + "TransactionId": 277067, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 298, + "CustomerInfo": 90424945, + "PaymentType": "Cash" + }, + { + "Id": 2869, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-03-03T10:58:13", + "TransactionId": 17553345, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 309, + "CustomerInfo": 31516494, + "PaymentType": "Debit Card" + }, + { + "Id": 2870, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-05-05T07:12:26", + "TransactionId": 32768846, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 799, + "CustomerInfo": 8276388, + "PaymentType": "Debit Card" + }, + { + "Id": 2871, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2017-06-21T17:49:21", + "TransactionId": 54951343, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 718, + "CustomerInfo": 75821447, + "PaymentType": "Cash" + }, + { + "Id": 2872, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-06-23T14:59:08", + "TransactionId": 85218960, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 980, + "CustomerInfo": 38381365, + "PaymentType": "Debit Card" + }, + { + "Id": 2873, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-12-01T10:52:54", + "TransactionId": 52372816, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 314, + "CustomerInfo": 53653880, + "PaymentType": "Cash" + }, + { + "Id": 2874, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-12-24T18:24:20", + "TransactionId": 34388204, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 393, + "CustomerInfo": 435659, + "PaymentType": "Credit Card" + }, + { + "Id": 2875, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-06-18T11:39:33", + "TransactionId": 36509081, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 94, + "CustomerInfo": 61261051, + "PaymentType": "Cash" + }, + { + "Id": 2876, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2019-09-16T11:38:41", + "TransactionId": 75518861, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 846, + "CustomerInfo": 42837358, + "PaymentType": "Cash" + }, + { + "Id": 2877, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2016-10-19T09:54:17", + "TransactionId": 49224626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 472, + "CustomerInfo": 71380630, + "PaymentType": "Debit Card" + }, + { + "Id": 2878, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-01-12T08:15:22", + "TransactionId": 52401291, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 889, + "CustomerInfo": 97881870, + "PaymentType": "Debit Card" + }, + { + "Id": 2879, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2019-04-12T15:46:57", + "TransactionId": 39841632, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 835, + "CustomerInfo": 60823865, + "PaymentType": "Credit Card" + }, + { + "Id": 2880, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-06-02T11:23:00", + "TransactionId": 5726643, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 18, + "CustomerInfo": 6539378, + "PaymentType": "Credit Card" + }, + { + "Id": 2881, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2018-11-20T07:27:24", + "TransactionId": 5747100, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 233, + "CustomerInfo": 40506262, + "PaymentType": "Cash" + }, + { + "Id": 2882, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2017-09-23T19:33:19", + "TransactionId": 95560346, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 95, + "CustomerInfo": 60477911, + "PaymentType": "Cash" + }, + { + "Id": 2883, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2016-01-24T16:33:01", + "TransactionId": 7876388, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 948, + "CustomerInfo": 34706203, + "PaymentType": "Cash" + }, + { + "Id": 2884, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2019-06-06T14:59:43", + "TransactionId": 95864596, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 329, + "CustomerInfo": 66990174, + "PaymentType": "Cash" + }, + { + "Id": 2885, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2017-07-29T19:53:54", + "TransactionId": 23802693, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 545, + "CustomerInfo": 26438988, + "PaymentType": "Cash" + }, + { + "Id": 2886, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2016-09-11T08:12:20", + "TransactionId": 25577554, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 123, + "CustomerInfo": 54604146, + "PaymentType": "Credit Card" + }, + { + "Id": 2887, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2016-06-22T12:59:20", + "TransactionId": 28117735, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 257, + "CustomerInfo": 73089356, + "PaymentType": "Cash" + }, + { + "Id": 2888, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-06-13T10:56:38", + "TransactionId": 45953821, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 259, + "CustomerInfo": 47667778, + "PaymentType": "Debit Card" + }, + { + "Id": 2889, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-03-19T14:45:19", + "TransactionId": 16937115, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 236, + "CustomerInfo": 40912969, + "PaymentType": "Cash" + }, + { + "Id": 2890, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-12-05T12:07:29", + "TransactionId": 92693694, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 924, + "CustomerInfo": 10261576, + "PaymentType": "Debit Card" + }, + { + "Id": 2891, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-07-10T09:54:26", + "TransactionId": 52624051, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 116, + "CustomerInfo": 31638198, + "PaymentType": "Credit Card" + }, + { + "Id": 2892, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-02-09T10:14:36", + "TransactionId": 36876363, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 30, + "CustomerInfo": 37973951, + "PaymentType": "Debit Card" + }, + { + "Id": 2893, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2016-03-23T18:14:50", + "TransactionId": 51480952, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 100, + "CustomerInfo": 59943835, + "PaymentType": "Cash" + }, + { + "Id": 2894, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-04-03T16:03:30", + "TransactionId": 31693348, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 98, + "CustomerInfo": 69717767, + "PaymentType": "Debit Card" + }, + { + "Id": 2895, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-03-15T13:08:33", + "TransactionId": 35830374, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 791, + "CustomerInfo": 16200424, + "PaymentType": "Credit Card" + }, + { + "Id": 2896, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2016-07-29T07:22:13", + "TransactionId": 74548233, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 16, + "CustomerInfo": 5484897, + "PaymentType": "Cash" + }, + { + "Id": 2897, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2019-01-19T16:02:21", + "TransactionId": 95804985, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 104, + "CustomerInfo": 75408390, + "PaymentType": "Cash" + }, + { + "Id": 2898, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-12-30T10:34:28", + "TransactionId": 23223140, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 291, + "CustomerInfo": 47164393, + "PaymentType": "Cash" + }, + { + "Id": 2899, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-05-06T12:16:42", + "TransactionId": 78992209, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 760, + "CustomerInfo": 81998732, + "PaymentType": "Credit Card" + }, + { + "Id": 2900, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2016-01-01T11:16:05", + "TransactionId": 71544243, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 627, + "CustomerInfo": 31197766, + "PaymentType": "Cash" + }, + { + "Id": 2901, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2017-09-06T07:41:48", + "TransactionId": 99577424, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 575, + "CustomerInfo": 75197250, + "PaymentType": "Credit Card" + }, + { + "Id": 2902, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2016-08-04T12:04:28", + "TransactionId": 57258644, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 125, + "CustomerInfo": 79717859, + "PaymentType": "Cash" + }, + { + "Id": 2903, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2019-08-03T07:50:18", + "TransactionId": 95990118, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 856, + "CustomerInfo": 42983936, + "PaymentType": "Debit Card" + }, + { + "Id": 2904, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2017-12-05T09:04:11", + "TransactionId": 52804655, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 181, + "CustomerInfo": 36259702, + "PaymentType": "Credit Card" + }, + { + "Id": 2905, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2017-10-08T13:39:04", + "TransactionId": 52607253, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 715, + "CustomerInfo": 55071099, + "PaymentType": "Cash" + }, + { + "Id": 2906, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2017-02-20T10:54:20", + "TransactionId": 94573803, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 477, + "CustomerInfo": 24341034, + "PaymentType": "Cash" + }, + { + "Id": 2907, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2018-04-20T13:00:20", + "TransactionId": 10192044, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 281, + "CustomerInfo": 56021583, + "PaymentType": "Credit Card" + }, + { + "Id": 2908, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-06-23T15:39:19", + "TransactionId": 21371815, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 110, + "CustomerInfo": 73373867, + "PaymentType": "Credit Card" + }, + { + "Id": 2909, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-10-24T18:57:01", + "TransactionId": 72724189, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 85, + "CustomerInfo": 16775275, + "PaymentType": "Debit Card" + }, + { + "Id": 2910, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-08-28T10:51:45", + "TransactionId": 11320525, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 576, + "CustomerInfo": 95580025, + "PaymentType": "Debit Card" + }, + { + "Id": 2911, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2018-03-24T09:11:14", + "TransactionId": 1321622, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 187, + "CustomerInfo": 5372622, + "PaymentType": "Credit Card" + }, + { + "Id": 2912, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-04-21T17:59:17", + "TransactionId": 12362217, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 921, + "CustomerInfo": 57552502, + "PaymentType": "Cash" + }, + { + "Id": 2913, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-05-16T14:56:07", + "TransactionId": 60203579, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 441, + "CustomerInfo": 88314802, + "PaymentType": "Credit Card" + }, + { + "Id": 2914, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2017-09-11T11:23:34", + "TransactionId": 66747912, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 390, + "CustomerInfo": 59574142, + "PaymentType": "Debit Card" + }, + { + "Id": 2915, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-09-19T19:03:39", + "TransactionId": 72066597, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 768, + "CustomerInfo": 53623280, + "PaymentType": "Debit Card" + }, + { + "Id": 2916, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-05-16T09:33:59", + "TransactionId": 34140295, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 345, + "CustomerInfo": 65314970, + "PaymentType": "Credit Card" + }, + { + "Id": 2917, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2019-07-17T09:35:43", + "TransactionId": 39513535, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 783, + "CustomerInfo": 43624344, + "PaymentType": "Debit Card" + }, + { + "Id": 2918, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2019-04-05T08:19:58", + "TransactionId": 44806353, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 367, + "CustomerInfo": 79504368, + "PaymentType": "Debit Card" + }, + { + "Id": 2919, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-01-18T16:14:18", + "TransactionId": 57033084, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 133, + "CustomerInfo": 1986151, + "PaymentType": "Credit Card" + }, + { + "Id": 2920, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2017-09-28T13:20:30", + "TransactionId": 31238435, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 746, + "CustomerInfo": 91927886, + "PaymentType": "Cash" + }, + { + "Id": 2921, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2017-08-12T09:09:13", + "TransactionId": 18099728, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 430, + "CustomerInfo": 25687368, + "PaymentType": "Cash" + }, + { + "Id": 2922, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2016-09-12T17:00:06", + "TransactionId": 78438039, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 176, + "CustomerInfo": 98937319, + "PaymentType": "Debit Card" + }, + { + "Id": 2923, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2019-10-29T10:06:23", + "TransactionId": 46641781, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 861, + "CustomerInfo": 74001562, + "PaymentType": "Cash" + }, + { + "Id": 2924, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2018-09-03T14:02:41", + "TransactionId": 93944889, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 780, + "CustomerInfo": 6375385, + "PaymentType": "Debit Card" + }, + { + "Id": 2925, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-02-21T19:27:16", + "TransactionId": 61395047, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 438, + "CustomerInfo": 94447412, + "PaymentType": "Cash" + }, + { + "Id": 2926, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-02-27T10:50:36", + "TransactionId": 98737926, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 484, + "CustomerInfo": 35507295, + "PaymentType": "Debit Card" + }, + { + "Id": 2927, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2016-10-22T12:33:24", + "TransactionId": 12682419, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 94866572, + "PaymentType": "Cash" + }, + { + "Id": 2928, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2017-10-13T15:59:46", + "TransactionId": 50095332, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 82, + "CustomerInfo": 64622526, + "PaymentType": "Debit Card" + }, + { + "Id": 2929, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2019-01-04T15:47:14", + "TransactionId": 48420506, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 22, + "CustomerInfo": 24419227, + "PaymentType": "Credit Card" + }, + { + "Id": 2930, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-10-04T08:29:02", + "TransactionId": 45231251, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 15231998, + "PaymentType": "Cash" + }, + { + "Id": 2931, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2019-09-16T19:38:12", + "TransactionId": 67621157, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 403, + "CustomerInfo": 77726007, + "PaymentType": "Debit Card" + }, + { + "Id": 2932, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-09-21T16:25:32", + "TransactionId": 1579109, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 235, + "CustomerInfo": 27676921, + "PaymentType": "Debit Card" + }, + { + "Id": 2933, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2019-12-23T09:56:18", + "TransactionId": 57827300, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 432, + "CustomerInfo": 80161283, + "PaymentType": "Cash" + }, + { + "Id": 2934, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-03-25T14:37:58", + "TransactionId": 69889831, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 793, + "CustomerInfo": 65757333, + "PaymentType": "Cash" + }, + { + "Id": 2935, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2018-12-25T09:00:35", + "TransactionId": 50565062, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 461, + "CustomerInfo": 44837671, + "PaymentType": "Credit Card" + }, + { + "Id": 2936, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-09-12T15:47:23", + "TransactionId": 30459155, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 735, + "CustomerInfo": 38176117, + "PaymentType": "Debit Card" + }, + { + "Id": 2937, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-05-10T11:30:55", + "TransactionId": 39007238, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 422, + "CustomerInfo": 35618672, + "PaymentType": "Credit Card" + }, + { + "Id": 2938, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2019-07-18T14:47:54", + "TransactionId": 95524583, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 984, + "CustomerInfo": 59531967, + "PaymentType": "Credit Card" + }, + { + "Id": 2939, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-01-20T16:04:05", + "TransactionId": 43765685, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 809, + "CustomerInfo": 84499638, + "PaymentType": "Debit Card" + }, + { + "Id": 2940, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-11-16T19:16:02", + "TransactionId": 28405824, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 874, + "CustomerInfo": 57109749, + "PaymentType": "Cash" + }, + { + "Id": 2941, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-07-10T12:17:51", + "TransactionId": 63825050, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 774, + "CustomerInfo": 78461645, + "PaymentType": "Credit Card" + }, + { + "Id": 2942, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2018-08-15T15:45:30", + "TransactionId": 28413684, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 783, + "CustomerInfo": 79822539, + "PaymentType": "Debit Card" + }, + { + "Id": 2943, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-11-07T12:08:56", + "TransactionId": 42418854, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 114, + "CustomerInfo": 2465897, + "PaymentType": "Debit Card" + }, + { + "Id": 2944, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-03-21T17:41:17", + "TransactionId": 55087771, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 946, + "CustomerInfo": 63058722, + "PaymentType": "Credit Card" + }, + { + "Id": 2945, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-07-26T09:56:10", + "TransactionId": 37586887, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 863, + "CustomerInfo": 83974003, + "PaymentType": "Debit Card" + }, + { + "Id": 2946, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2019-02-14T13:27:42", + "TransactionId": 56880532, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 46, + "CustomerInfo": 78253028, + "PaymentType": "Debit Card" + }, + { + "Id": 2947, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-08-06T09:22:19", + "TransactionId": 74089353, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 632, + "CustomerInfo": 96705102, + "PaymentType": "Credit Card" + }, + { + "Id": 2948, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-06-09T08:27:27", + "TransactionId": 45159352, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 914, + "CustomerInfo": 82316032, + "PaymentType": "Credit Card" + }, + { + "Id": 2949, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2017-10-12T17:08:10", + "TransactionId": 12808983, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 598, + "CustomerInfo": 83881427, + "PaymentType": "Debit Card" + }, + { + "Id": 2950, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-10-17T18:49:49", + "TransactionId": 55243269, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 814, + "CustomerInfo": 91001853, + "PaymentType": "Cash" + }, + { + "Id": 2951, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-07-23T09:39:19", + "TransactionId": 49449011, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 345, + "CustomerInfo": 4418571, + "PaymentType": "Debit Card" + }, + { + "Id": 2952, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-10-26T17:59:08", + "TransactionId": 12363595, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 519, + "CustomerInfo": 30809236, + "PaymentType": "Debit Card" + }, + { + "Id": 2953, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2019-01-23T14:16:31", + "TransactionId": 24668741, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 771, + "CustomerInfo": 23166474, + "PaymentType": "Credit Card" + }, + { + "Id": 2954, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-12-07T08:46:54", + "TransactionId": 96301874, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 416, + "CustomerInfo": 78247942, + "PaymentType": "Cash" + }, + { + "Id": 2955, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2017-09-22T11:50:21", + "TransactionId": 14196550, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 342, + "CustomerInfo": 26365001, + "PaymentType": "Cash" + }, + { + "Id": 2956, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2019-08-28T09:22:02", + "TransactionId": 91596031, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 134, + "CustomerInfo": 84937808, + "PaymentType": "Debit Card" + }, + { + "Id": 2957, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-01-08T10:47:25", + "TransactionId": 38887844, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 457, + "CustomerInfo": 93334946, + "PaymentType": "Debit Card" + }, + { + "Id": 2958, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-03-11T12:46:39", + "TransactionId": 59212980, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 750, + "CustomerInfo": 15551434, + "PaymentType": "Debit Card" + }, + { + "Id": 2959, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-12-18T07:21:48", + "TransactionId": 30951166, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 743, + "CustomerInfo": 6664499, + "PaymentType": "Credit Card" + }, + { + "Id": 2960, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2018-07-05T17:51:56", + "TransactionId": 20644095, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 3, + "CustomerInfo": 82724463, + "PaymentType": "Debit Card" + }, + { + "Id": 2961, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2017-01-23T08:05:00", + "TransactionId": 12346735, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 947, + "CustomerInfo": 94377902, + "PaymentType": "Credit Card" + }, + { + "Id": 2962, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-08-11T08:54:06", + "TransactionId": 5020591, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 615, + "CustomerInfo": 45253848, + "PaymentType": "Debit Card" + }, + { + "Id": 2963, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2018-01-02T18:55:26", + "TransactionId": 71935563, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 430, + "CustomerInfo": 21337481, + "PaymentType": "Cash" + }, + { + "Id": 2964, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2019-06-14T17:42:09", + "TransactionId": 84059839, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 40, + "CustomerInfo": 16127300, + "PaymentType": "Debit Card" + }, + { + "Id": 2965, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2018-01-05T19:03:30", + "TransactionId": 12295995, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 63, + "CustomerInfo": 16430423, + "PaymentType": "Cash" + }, + { + "Id": 2966, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-12-14T07:16:28", + "TransactionId": 74641566, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 987, + "CustomerInfo": 47379495, + "PaymentType": "Credit Card" + }, + { + "Id": 2967, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2018-10-01T17:01:58", + "TransactionId": 92497024, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 437, + "CustomerInfo": 72737414, + "PaymentType": "Debit Card" + }, + { + "Id": 2968, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2018-12-13T19:14:27", + "TransactionId": 65185899, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 714, + "CustomerInfo": 738314, + "PaymentType": "Cash" + }, + { + "Id": 2969, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2018-03-27T14:51:13", + "TransactionId": 55650228, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 428, + "CustomerInfo": 51501078, + "PaymentType": "Cash" + }, + { + "Id": 2970, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-10-31T08:01:24", + "TransactionId": 22356519, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 226, + "CustomerInfo": 87906797, + "PaymentType": "Debit Card" + }, + { + "Id": 2971, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-10-25T10:57:39", + "TransactionId": 34460437, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 379, + "CustomerInfo": 9578269, + "PaymentType": "Debit Card" + }, + { + "Id": 2972, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2018-05-25T17:21:59", + "TransactionId": 22385491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 378, + "CustomerInfo": 42293486, + "PaymentType": "Debit Card" + }, + { + "Id": 2973, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2016-05-29T12:57:36", + "TransactionId": 55293158, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 671, + "CustomerInfo": 38512011, + "PaymentType": "Cash" + }, + { + "Id": 2974, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2019-12-17T12:02:27", + "TransactionId": 8441773, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 303, + "CustomerInfo": 21690838, + "PaymentType": "Cash" + }, + { + "Id": 2975, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2016-11-21T11:34:13", + "TransactionId": 31469291, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 955, + "CustomerInfo": 21336484, + "PaymentType": "Debit Card" + }, + { + "Id": 2976, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2018-09-03T07:03:30", + "TransactionId": 91300013, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 720, + "CustomerInfo": 46307756, + "PaymentType": "Cash" + }, + { + "Id": 2977, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-01-29T10:29:25", + "TransactionId": 32666786, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 31456171, + "PaymentType": "Credit Card" + }, + { + "Id": 2978, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2018-10-20T10:32:44", + "TransactionId": 87198104, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 972, + "CustomerInfo": 91779134, + "PaymentType": "Debit Card" + }, + { + "Id": 2979, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-11-03T09:39:10", + "TransactionId": 16679429, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 730, + "CustomerInfo": 95375512, + "PaymentType": "Cash" + }, + { + "Id": 2980, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-04-03T13:46:16", + "TransactionId": 12550325, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 124, + "CustomerInfo": 6840879, + "PaymentType": "Credit Card" + }, + { + "Id": 2981, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2017-02-14T11:05:25", + "TransactionId": 12300637, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 316, + "CustomerInfo": 23892932, + "PaymentType": "Debit Card" + }, + { + "Id": 2982, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2018-02-21T15:21:27", + "TransactionId": 21415553, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 59, + "CustomerInfo": 29504788, + "PaymentType": "Debit Card" + }, + { + "Id": 2983, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-08-02T15:24:46", + "TransactionId": 13438098, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 61, + "CustomerInfo": 18636492, + "PaymentType": "Cash" + }, + { + "Id": 2984, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2018-03-08T11:03:59", + "TransactionId": 43062232, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 393, + "CustomerInfo": 64521604, + "PaymentType": "Debit Card" + }, + { + "Id": 2985, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-10-15T09:29:05", + "TransactionId": 7885556, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 952, + "CustomerInfo": 7293392, + "PaymentType": "Debit Card" + }, + { + "Id": 2986, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2018-03-23T10:21:04", + "TransactionId": 91418834, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 85917998, + "PaymentType": "Debit Card" + }, + { + "Id": 2987, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-12-01T09:24:12", + "TransactionId": 55342719, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 637, + "CustomerInfo": 67588144, + "PaymentType": "Cash" + }, + { + "Id": 2988, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2016-12-30T13:48:17", + "TransactionId": 89687613, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 558, + "CustomerInfo": 26634881, + "PaymentType": "Cash" + }, + { + "Id": 2989, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-04-10T15:31:24", + "TransactionId": 12097765, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 443, + "CustomerInfo": 93498829, + "PaymentType": "Cash" + }, + { + "Id": 2990, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2019-12-03T12:25:38", + "TransactionId": 24428265, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 919, + "CustomerInfo": 26306721, + "PaymentType": "Credit Card" + }, + { + "Id": 2991, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-02-18T12:07:38", + "TransactionId": 66012458, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 788, + "CustomerInfo": 3248858, + "PaymentType": "Credit Card" + }, + { + "Id": 2992, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2019-08-27T11:21:33", + "TransactionId": 44576606, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 919, + "CustomerInfo": 83100959, + "PaymentType": "Credit Card" + }, + { + "Id": 2993, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-08-14T07:03:48", + "TransactionId": 53703901, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 410, + "CustomerInfo": 72986867, + "PaymentType": "Cash" + }, + { + "Id": 2994, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2016-04-01T14:02:15", + "TransactionId": 54207340, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 66, + "CustomerInfo": 73621093, + "PaymentType": "Debit Card" + }, + { + "Id": 2995, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-03-20T17:12:12", + "TransactionId": 87929765, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 564, + "CustomerInfo": 18205976, + "PaymentType": "Debit Card" + }, + { + "Id": 2996, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2018-05-12T18:07:47", + "TransactionId": 92054320, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 677, + "CustomerInfo": 989374, + "PaymentType": "Credit Card" + }, + { + "Id": 2997, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-10-17T19:59:23", + "TransactionId": 3467609, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 297, + "CustomerInfo": 59591291, + "PaymentType": "Credit Card" + }, + { + "Id": 2998, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-12-20T09:39:53", + "TransactionId": 45421949, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 315, + "CustomerInfo": 98739900, + "PaymentType": "Cash" + }, + { + "Id": 2999, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2019-08-12T10:17:54", + "TransactionId": 89166270, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 993, + "CustomerInfo": 13072185, + "PaymentType": "Debit Card" + }, + { + "Id": 3000, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-10-08T18:52:42", + "TransactionId": 92321853, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 641, + "CustomerInfo": 44905292, + "PaymentType": "Cash" + }, + { + "Id": 3001, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2019-06-29T15:17:25", + "TransactionId": 61204351, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 844, + "CustomerInfo": 18705871, + "PaymentType": "Cash" + }, + { + "Id": 3002, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2017-12-13T13:01:03", + "TransactionId": 7625518, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 544, + "CustomerInfo": 49463900, + "PaymentType": "Credit Card" + }, + { + "Id": 3003, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-02-19T19:54:20", + "TransactionId": 57216079, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 340, + "CustomerInfo": 98395188, + "PaymentType": "Debit Card" + }, + { + "Id": 3004, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2019-01-18T10:58:31", + "TransactionId": 47936538, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 18, + "CustomerInfo": 3366003, + "PaymentType": "Debit Card" + }, + { + "Id": 3005, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-06-12T07:59:40", + "TransactionId": 45910742, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 691, + "CustomerInfo": 66613157, + "PaymentType": "Cash" + }, + { + "Id": 3006, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2017-04-21T16:29:34", + "TransactionId": 11536542, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 601, + "CustomerInfo": 76896057, + "PaymentType": "Cash" + }, + { + "Id": 3007, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-12-11T16:27:07", + "TransactionId": 99103017, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 878, + "CustomerInfo": 14282321, + "PaymentType": "Debit Card" + }, + { + "Id": 3008, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-10-24T12:32:15", + "TransactionId": 7805952, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 925, + "CustomerInfo": 66292376, + "PaymentType": "Cash" + }, + { + "Id": 3009, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2017-01-17T17:41:17", + "TransactionId": 51188147, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 325, + "CustomerInfo": 40180444, + "PaymentType": "Debit Card" + }, + { + "Id": 3010, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2018-12-17T16:54:29", + "TransactionId": 81922561, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 517, + "CustomerInfo": 82027503, + "PaymentType": "Cash" + }, + { + "Id": 3011, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2016-06-13T18:05:20", + "TransactionId": 39735579, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 131, + "CustomerInfo": 35354478, + "PaymentType": "Credit Card" + }, + { + "Id": 3012, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2018-06-05T19:23:05", + "TransactionId": 27709183, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 296, + "CustomerInfo": 62470498, + "PaymentType": "Credit Card" + }, + { + "Id": 3013, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-09-24T13:41:05", + "TransactionId": 11525436, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 9094196, + "PaymentType": "Credit Card" + }, + { + "Id": 3014, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2016-06-23T07:55:55", + "TransactionId": 70726964, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 797, + "CustomerInfo": 99131520, + "PaymentType": "Cash" + }, + { + "Id": 3015, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-09-20T18:37:26", + "TransactionId": 7556344, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 790, + "CustomerInfo": 65144192, + "PaymentType": "Credit Card" + }, + { + "Id": 3016, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-01-04T16:25:32", + "TransactionId": 46361448, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 454, + "CustomerInfo": 57850558, + "PaymentType": "Debit Card" + }, + { + "Id": 3017, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-08-17T08:55:58", + "TransactionId": 37845039, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 735, + "CustomerInfo": 54211286, + "PaymentType": "Cash" + }, + { + "Id": 3018, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-11-06T07:05:57", + "TransactionId": 27149196, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 63, + "CustomerInfo": 87177419, + "PaymentType": "Cash" + }, + { + "Id": 3019, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2017-02-24T10:04:22", + "TransactionId": 2005958, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 762, + "CustomerInfo": 43274270, + "PaymentType": "Cash" + }, + { + "Id": 3020, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-11-09T14:01:15", + "TransactionId": 38220353, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 547, + "CustomerInfo": 5984230, + "PaymentType": "Debit Card" + }, + { + "Id": 3021, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-04-11T11:49:03", + "TransactionId": 46751431, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 180, + "CustomerInfo": 62317700, + "PaymentType": "Cash" + }, + { + "Id": 3022, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2016-12-11T11:47:46", + "TransactionId": 9847785, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 58, + "CustomerInfo": 47554035, + "PaymentType": "Credit Card" + }, + { + "Id": 3023, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2016-02-13T19:32:10", + "TransactionId": 42536035, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 303, + "CustomerInfo": 85386490, + "PaymentType": "Debit Card" + }, + { + "Id": 3024, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2016-01-21T08:07:35", + "TransactionId": 51632511, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 493, + "CustomerInfo": 37530343, + "PaymentType": "Debit Card" + }, + { + "Id": 3025, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2019-04-23T12:00:43", + "TransactionId": 35190549, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 393, + "CustomerInfo": 75561870, + "PaymentType": "Debit Card" + }, + { + "Id": 3026, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-12-29T18:22:36", + "TransactionId": 90950466, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 706, + "CustomerInfo": 17509596, + "PaymentType": "Debit Card" + }, + { + "Id": 3027, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-05-23T11:40:51", + "TransactionId": 60757058, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 167, + "CustomerInfo": 56691074, + "PaymentType": "Debit Card" + }, + { + "Id": 3028, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2019-07-15T07:56:12", + "TransactionId": 80294846, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 193, + "CustomerInfo": 11514289, + "PaymentType": "Debit Card" + }, + { + "Id": 3029, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2018-12-20T09:16:51", + "TransactionId": 66675817, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 215, + "CustomerInfo": 34179327, + "PaymentType": "Cash" + }, + { + "Id": 3030, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-04-23T17:18:32", + "TransactionId": 56765322, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 417, + "CustomerInfo": 41938016, + "PaymentType": "Credit Card" + }, + { + "Id": 3031, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2018-10-03T14:41:08", + "TransactionId": 86112207, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 903, + "CustomerInfo": 31095525, + "PaymentType": "Credit Card" + }, + { + "Id": 3032, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2017-05-30T10:26:15", + "TransactionId": 62792313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 758, + "CustomerInfo": 89699290, + "PaymentType": "Credit Card" + }, + { + "Id": 3033, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2019-01-18T07:58:31", + "TransactionId": 84574899, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 808, + "CustomerInfo": 85223012, + "PaymentType": "Cash" + }, + { + "Id": 3034, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-11-18T18:50:50", + "TransactionId": 15506249, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 826, + "CustomerInfo": 18081772, + "PaymentType": "Debit Card" + }, + { + "Id": 3035, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2016-05-28T11:30:46", + "TransactionId": 82561391, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 821, + "CustomerInfo": 41014323, + "PaymentType": "Cash" + }, + { + "Id": 3036, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2019-04-07T17:27:19", + "TransactionId": 6521261, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 294, + "CustomerInfo": 41326335, + "PaymentType": "Debit Card" + }, + { + "Id": 3037, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-01-13T07:12:26", + "TransactionId": 79079036, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 179, + "CustomerInfo": 25582876, + "PaymentType": "Cash" + }, + { + "Id": 3038, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-12-17T14:39:16", + "TransactionId": 89179246, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 314, + "CustomerInfo": 28276934, + "PaymentType": "Debit Card" + }, + { + "Id": 3039, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-01-09T11:44:44", + "TransactionId": 56395188, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 458, + "CustomerInfo": 39197202, + "PaymentType": "Cash" + }, + { + "Id": 3040, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-12-10T09:18:52", + "TransactionId": 19112939, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 415, + "CustomerInfo": 90371788, + "PaymentType": "Cash" + }, + { + "Id": 3041, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-10-29T12:07:55", + "TransactionId": 30707713, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 57, + "CustomerInfo": 66556242, + "PaymentType": "Debit Card" + }, + { + "Id": 3042, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2017-12-31T10:07:49", + "TransactionId": 76658668, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 453, + "CustomerInfo": 24601374, + "PaymentType": "Cash" + }, + { + "Id": 3043, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-04-04T15:02:53", + "TransactionId": 19558219, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 644, + "CustomerInfo": 77754740, + "PaymentType": "Debit Card" + }, + { + "Id": 3044, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-10-12T11:42:00", + "TransactionId": 1857490, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 716, + "CustomerInfo": 31750009, + "PaymentType": "Cash" + }, + { + "Id": 3045, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2019-08-23T17:35:23", + "TransactionId": 62237167, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 607, + "CustomerInfo": 58920906, + "PaymentType": "Cash" + }, + { + "Id": 3046, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-06-06T13:44:41", + "TransactionId": 74359310, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 444, + "CustomerInfo": 67845514, + "PaymentType": "Cash" + }, + { + "Id": 3047, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-02-02T07:54:46", + "TransactionId": 37010248, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 600, + "CustomerInfo": 90581405, + "PaymentType": "Cash" + }, + { + "Id": 3048, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2019-02-22T14:32:21", + "TransactionId": 63727335, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 60, + "CustomerInfo": 51881202, + "PaymentType": "Credit Card" + }, + { + "Id": 3049, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-12-26T08:27:10", + "TransactionId": 71152730, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 324, + "CustomerInfo": 9603990, + "PaymentType": "Credit Card" + }, + { + "Id": 3050, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2019-06-14T11:03:24", + "TransactionId": 7959520, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 10, + "CustomerInfo": 88999291, + "PaymentType": "Credit Card" + }, + { + "Id": 3051, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2016-03-30T18:43:29", + "TransactionId": 16203824, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 203, + "CustomerInfo": 69611657, + "PaymentType": "Debit Card" + }, + { + "Id": 3052, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-01-18T12:28:48", + "TransactionId": 99320428, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 593, + "CustomerInfo": 53325, + "PaymentType": "Cash" + }, + { + "Id": 3053, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-09-10T17:20:24", + "TransactionId": 73277862, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 475, + "CustomerInfo": 58404153, + "PaymentType": "Credit Card" + }, + { + "Id": 3054, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-04-06T14:24:43", + "TransactionId": 30935258, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 532, + "CustomerInfo": 84493486, + "PaymentType": "Debit Card" + }, + { + "Id": 3055, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2017-07-03T14:06:09", + "TransactionId": 76956801, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 901, + "CustomerInfo": 27639034, + "PaymentType": "Credit Card" + }, + { + "Id": 3056, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2017-05-16T14:18:49", + "TransactionId": 75975678, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 265, + "CustomerInfo": 51452836, + "PaymentType": "Cash" + }, + { + "Id": 3057, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-02-17T16:34:54", + "TransactionId": 75957059, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 48, + "CustomerInfo": 63142001, + "PaymentType": "Debit Card" + }, + { + "Id": 3058, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-05-30T10:31:44", + "TransactionId": 70304220, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 270, + "CustomerInfo": 19883450, + "PaymentType": "Credit Card" + }, + { + "Id": 3059, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-06-28T14:23:43", + "TransactionId": 4472166, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 451, + "CustomerInfo": 55543479, + "PaymentType": "Credit Card" + }, + { + "Id": 3060, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-08-21T09:17:34", + "TransactionId": 41351684, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 346, + "CustomerInfo": 84521042, + "PaymentType": "Debit Card" + }, + { + "Id": 3061, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2018-05-27T13:47:43", + "TransactionId": 61348900, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 876, + "CustomerInfo": 2736352, + "PaymentType": "Debit Card" + }, + { + "Id": 3062, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-11-22T19:00:12", + "TransactionId": 77999876, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 164, + "CustomerInfo": 6916208, + "PaymentType": "Credit Card" + }, + { + "Id": 3063, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-04-12T19:32:44", + "TransactionId": 71173610, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 199, + "CustomerInfo": 13741464, + "PaymentType": "Cash" + }, + { + "Id": 3064, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-05-05T08:22:51", + "TransactionId": 86194073, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 442, + "CustomerInfo": 25343898, + "PaymentType": "Debit Card" + }, + { + "Id": 3065, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2016-03-07T15:44:21", + "TransactionId": 27643916, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 272, + "CustomerInfo": 80985903, + "PaymentType": "Debit Card" + }, + { + "Id": 3066, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2018-12-01T09:05:54", + "TransactionId": 13212498, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 10, + "CustomerInfo": 60812922, + "PaymentType": "Credit Card" + }, + { + "Id": 3067, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-07-19T19:51:10", + "TransactionId": 22273535, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 140, + "CustomerInfo": 80192937, + "PaymentType": "Debit Card" + }, + { + "Id": 3068, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2018-08-26T07:04:31", + "TransactionId": 87484761, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 185, + "CustomerInfo": 27397851, + "PaymentType": "Credit Card" + }, + { + "Id": 3069, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2018-07-17T15:01:52", + "TransactionId": 58199842, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 64852928, + "PaymentType": "Credit Card" + }, + { + "Id": 3070, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-08-06T15:32:24", + "TransactionId": 13769570, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 892, + "CustomerInfo": 13860062, + "PaymentType": "Cash" + }, + { + "Id": 3071, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-07-01T13:49:18", + "TransactionId": 87059518, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 490, + "CustomerInfo": 2694169, + "PaymentType": "Credit Card" + }, + { + "Id": 3072, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2017-11-14T15:00:52", + "TransactionId": 91007152, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 114, + "CustomerInfo": 96753010, + "PaymentType": "Credit Card" + }, + { + "Id": 3073, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2016-03-29T08:01:41", + "TransactionId": 26903172, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 48, + "CustomerInfo": 35732765, + "PaymentType": "Cash" + }, + { + "Id": 3074, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2017-04-09T14:35:31", + "TransactionId": 71704431, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 391, + "CustomerInfo": 65414139, + "PaymentType": "Credit Card" + }, + { + "Id": 3075, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2019-08-31T14:58:08", + "TransactionId": 92938814, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 626, + "CustomerInfo": 32259986, + "PaymentType": "Credit Card" + }, + { + "Id": 3076, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-07-07T12:53:34", + "TransactionId": 41300700, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 530, + "CustomerInfo": 40954759, + "PaymentType": "Debit Card" + }, + { + "Id": 3077, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-08-26T09:30:14", + "TransactionId": 13266085, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 888, + "CustomerInfo": 51316699, + "PaymentType": "Cash" + }, + { + "Id": 3078, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-01-27T12:23:20", + "TransactionId": 28736215, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 11, + "CustomerInfo": 52294141, + "PaymentType": "Cash" + }, + { + "Id": 3079, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2016-12-19T10:25:06", + "TransactionId": 60574961, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 404, + "CustomerInfo": 13235542, + "PaymentType": "Cash" + }, + { + "Id": 3080, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2017-10-15T13:14:36", + "TransactionId": 2951017, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 926, + "CustomerInfo": 90585991, + "PaymentType": "Debit Card" + }, + { + "Id": 3081, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-01-13T12:08:21", + "TransactionId": 89957178, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 409, + "CustomerInfo": 33050917, + "PaymentType": "Credit Card" + }, + { + "Id": 3082, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-04-25T10:48:43", + "TransactionId": 71344928, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 783, + "CustomerInfo": 76959540, + "PaymentType": "Cash" + }, + { + "Id": 3083, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2016-12-25T15:56:36", + "TransactionId": 78850987, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 363, + "CustomerInfo": 32250643, + "PaymentType": "Credit Card" + }, + { + "Id": 3084, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2017-11-30T08:42:00", + "TransactionId": 21664207, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 79566931, + "PaymentType": "Debit Card" + }, + { + "Id": 3085, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2018-06-26T08:49:29", + "TransactionId": 24782515, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 346, + "CustomerInfo": 89462803, + "PaymentType": "Cash" + }, + { + "Id": 3086, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2016-12-16T19:38:56", + "TransactionId": 44031764, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 326, + "CustomerInfo": 50589792, + "PaymentType": "Credit Card" + }, + { + "Id": 3087, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2016-01-04T11:07:09", + "TransactionId": 131779, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 50, + "CustomerInfo": 47457663, + "PaymentType": "Debit Card" + }, + { + "Id": 3088, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-09-15T16:32:44", + "TransactionId": 58374397, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 878, + "CustomerInfo": 39391476, + "PaymentType": "Cash" + }, + { + "Id": 3089, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2019-05-11T12:38:36", + "TransactionId": 6147016, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 291, + "CustomerInfo": 91006001, + "PaymentType": "Debit Card" + }, + { + "Id": 3090, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2017-01-31T12:46:31", + "TransactionId": 86283067, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 617, + "CustomerInfo": 59984703, + "PaymentType": "Debit Card" + }, + { + "Id": 3091, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-10-16T19:56:47", + "TransactionId": 25232800, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 392, + "CustomerInfo": 6590656, + "PaymentType": "Credit Card" + }, + { + "Id": 3092, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2018-12-16T09:13:41", + "TransactionId": 28125233, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 616, + "CustomerInfo": 84625254, + "PaymentType": "Debit Card" + }, + { + "Id": 3093, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-10-03T10:12:00", + "TransactionId": 5019365, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 57, + "CustomerInfo": 15189017, + "PaymentType": "Debit Card" + }, + { + "Id": 3094, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-06-24T11:21:59", + "TransactionId": 29718277, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 741, + "CustomerInfo": 13782252, + "PaymentType": "Cash" + }, + { + "Id": 3095, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2017-07-29T12:18:26", + "TransactionId": 29791902, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 247, + "CustomerInfo": 79716168, + "PaymentType": "Credit Card" + }, + { + "Id": 3096, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2019-12-18T15:10:31", + "TransactionId": 13025153, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 848, + "CustomerInfo": 95566432, + "PaymentType": "Cash" + }, + { + "Id": 3097, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-10-13T11:47:20", + "TransactionId": 44951567, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 861, + "CustomerInfo": 17615079, + "PaymentType": "Cash" + }, + { + "Id": 3098, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2017-08-16T09:31:15", + "TransactionId": 23553006, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 83, + "CustomerInfo": 36316165, + "PaymentType": "Debit Card" + }, + { + "Id": 3099, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2017-06-28T10:04:22", + "TransactionId": 71634264, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 221, + "CustomerInfo": 40695838, + "PaymentType": "Debit Card" + }, + { + "Id": 3100, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2017-02-25T09:40:36", + "TransactionId": 66468375, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 572, + "CustomerInfo": 69645753, + "PaymentType": "Credit Card" + }, + { + "Id": 3101, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2016-04-16T13:39:22", + "TransactionId": 93847432, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 767, + "CustomerInfo": 71311906, + "PaymentType": "Credit Card" + }, + { + "Id": 3102, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-03-11T08:57:24", + "TransactionId": 54639381, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 943, + "CustomerInfo": 9322512, + "PaymentType": "Credit Card" + }, + { + "Id": 3103, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2016-02-03T14:31:55", + "TransactionId": 90665279, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 230, + "CustomerInfo": 23412131, + "PaymentType": "Cash" + }, + { + "Id": 3104, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2017-08-30T19:18:46", + "TransactionId": 92497228, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 62646590, + "PaymentType": "Cash" + }, + { + "Id": 3105, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2018-08-28T11:10:54", + "TransactionId": 83503455, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 886, + "CustomerInfo": 27883488, + "PaymentType": "Cash" + }, + { + "Id": 3106, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2017-08-16T10:12:26", + "TransactionId": 27546491, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 915, + "CustomerInfo": 81043096, + "PaymentType": "Debit Card" + }, + { + "Id": 3107, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2018-02-19T14:19:15", + "TransactionId": 52724371, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 170, + "CustomerInfo": 7072573, + "PaymentType": "Credit Card" + }, + { + "Id": 3108, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-09-13T15:27:39", + "TransactionId": 11007677, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 998, + "CustomerInfo": 41634669, + "PaymentType": "Debit Card" + }, + { + "Id": 3109, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2019-08-05T18:32:41", + "TransactionId": 64278369, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 277, + "CustomerInfo": 67856076, + "PaymentType": "Credit Card" + }, + { + "Id": 3110, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-06-18T10:00:55", + "TransactionId": 42607542, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 74, + "CustomerInfo": 76613995, + "PaymentType": "Cash" + }, + { + "Id": 3111, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2019-02-19T16:10:51", + "TransactionId": 44972008, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 438, + "CustomerInfo": 69761887, + "PaymentType": "Credit Card" + }, + { + "Id": 3112, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2018-05-18T10:16:54", + "TransactionId": 60198433, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 514, + "CustomerInfo": 98766873, + "PaymentType": "Credit Card" + }, + { + "Id": 3113, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-10-05T15:49:24", + "TransactionId": 77823769, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 682, + "CustomerInfo": 87689850, + "PaymentType": "Credit Card" + }, + { + "Id": 3114, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-04-21T09:20:10", + "TransactionId": 54770658, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 544, + "CustomerInfo": 86402946, + "PaymentType": "Cash" + }, + { + "Id": 3115, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2016-05-15T17:59:34", + "TransactionId": 93923771, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 82, + "CustomerInfo": 50723359, + "PaymentType": "Credit Card" + }, + { + "Id": 3116, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-04-14T07:39:39", + "TransactionId": 57754909, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 476, + "CustomerInfo": 67806649, + "PaymentType": "Credit Card" + }, + { + "Id": 3117, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-11-18T07:04:31", + "TransactionId": 60503241, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 384, + "CustomerInfo": 61503930, + "PaymentType": "Cash" + }, + { + "Id": 3118, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2016-07-25T13:21:48", + "TransactionId": 31079923, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 255, + "CustomerInfo": 95846581, + "PaymentType": "Cash" + }, + { + "Id": 3119, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2019-11-15T08:38:50", + "TransactionId": 77737829, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 454, + "CustomerInfo": 25391516, + "PaymentType": "Credit Card" + }, + { + "Id": 3120, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-03-16T18:11:05", + "TransactionId": 53666447, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 130, + "CustomerInfo": 38796614, + "PaymentType": "Cash" + }, + { + "Id": 3121, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-09-28T11:38:50", + "TransactionId": 41527225, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 28409387, + "PaymentType": "Debit Card" + }, + { + "Id": 3122, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2018-09-28T17:02:07", + "TransactionId": 5396551, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 739, + "CustomerInfo": 44744575, + "PaymentType": "Debit Card" + }, + { + "Id": 3123, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-04-13T15:27:13", + "TransactionId": 12107166, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 199, + "CustomerInfo": 83577735, + "PaymentType": "Cash" + }, + { + "Id": 3124, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-03-17T07:04:05", + "TransactionId": 6544967, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 596, + "CustomerInfo": 52405941, + "PaymentType": "Credit Card" + }, + { + "Id": 3125, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2018-10-09T15:42:29", + "TransactionId": 14817569, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 970, + "CustomerInfo": 53469411, + "PaymentType": "Credit Card" + }, + { + "Id": 3126, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-07-02T08:21:59", + "TransactionId": 67136986, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 226, + "CustomerInfo": 19451413, + "PaymentType": "Credit Card" + }, + { + "Id": 3127, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2019-01-26T14:32:56", + "TransactionId": 74794004, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 916, + "CustomerInfo": 8577078, + "PaymentType": "Debit Card" + }, + { + "Id": 3128, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2016-12-26T18:50:15", + "TransactionId": 10528491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 94152024, + "PaymentType": "Credit Card" + }, + { + "Id": 3129, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-06-05T07:16:28", + "TransactionId": 38101792, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 513, + "CustomerInfo": 19415536, + "PaymentType": "Credit Card" + }, + { + "Id": 3130, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-04-04T08:19:06", + "TransactionId": 85565383, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 581, + "CustomerInfo": 22765747, + "PaymentType": "Cash" + }, + { + "Id": 3131, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2019-10-09T15:01:09", + "TransactionId": 46954166, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 173, + "CustomerInfo": 8511231, + "PaymentType": "Credit Card" + }, + { + "Id": 3132, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-07-01T12:44:38", + "TransactionId": 24126658, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 949, + "CustomerInfo": 8545054, + "PaymentType": "Debit Card" + }, + { + "Id": 3133, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-08-04T07:52:28", + "TransactionId": 8314605, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 580, + "CustomerInfo": 46884462, + "PaymentType": "Debit Card" + }, + { + "Id": 3134, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2017-02-05T13:00:12", + "TransactionId": 17592675, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 453, + "CustomerInfo": 65630012, + "PaymentType": "Debit Card" + }, + { + "Id": 3135, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2019-08-07T17:31:47", + "TransactionId": 51595018, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 846, + "CustomerInfo": 90633087, + "PaymentType": "Credit Card" + }, + { + "Id": 3136, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2019-12-03T18:47:31", + "TransactionId": 55710386, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 241, + "CustomerInfo": 60591170, + "PaymentType": "Cash" + }, + { + "Id": 3137, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-09-25T14:04:25", + "TransactionId": 23673647, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 226, + "CustomerInfo": 20241170, + "PaymentType": "Debit Card" + }, + { + "Id": 3138, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2018-04-29T14:45:19", + "TransactionId": 24170443, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 89332634, + "PaymentType": "Credit Card" + }, + { + "Id": 3139, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-04-01T12:29:05", + "TransactionId": 46509261, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 296, + "CustomerInfo": 64530477, + "PaymentType": "Cash" + }, + { + "Id": 3140, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-03-28T18:19:00", + "TransactionId": 86058819, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 126, + "CustomerInfo": 73112275, + "PaymentType": "Credit Card" + }, + { + "Id": 3141, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-03-29T08:37:24", + "TransactionId": 53036281, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 846, + "CustomerInfo": 51550134, + "PaymentType": "Credit Card" + }, + { + "Id": 3142, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-02-17T09:20:10", + "TransactionId": 78333511, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 198, + "CustomerInfo": 2989521, + "PaymentType": "Cash" + }, + { + "Id": 3143, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-03-30T09:15:59", + "TransactionId": 82564094, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 65, + "CustomerInfo": 31612496, + "PaymentType": "Cash" + }, + { + "Id": 3144, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-02-28T19:32:01", + "TransactionId": 15680301, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 629, + "CustomerInfo": 95151636, + "PaymentType": "Credit Card" + }, + { + "Id": 3145, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2017-01-01T15:05:28", + "TransactionId": 87262275, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 149, + "CustomerInfo": 28122971, + "PaymentType": "Cash" + }, + { + "Id": 3146, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2018-04-25T11:28:02", + "TransactionId": 40650954, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 593, + "CustomerInfo": 94023596, + "PaymentType": "Debit Card" + }, + { + "Id": 3147, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-10-23T13:38:30", + "TransactionId": 67008102, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 584, + "CustomerInfo": 55562193, + "PaymentType": "Credit Card" + }, + { + "Id": 3148, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-03-08T18:09:56", + "TransactionId": 16422229, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 702, + "CustomerInfo": 32596406, + "PaymentType": "Debit Card" + }, + { + "Id": 3149, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-09-12T07:41:05", + "TransactionId": 58440322, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 995, + "CustomerInfo": 9887070, + "PaymentType": "Credit Card" + }, + { + "Id": 3150, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2019-03-06T18:10:31", + "TransactionId": 2504737, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 265, + "CustomerInfo": 86259011, + "PaymentType": "Cash" + }, + { + "Id": 3151, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2016-10-14T12:17:00", + "TransactionId": 15544138, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 169, + "CustomerInfo": 4709338, + "PaymentType": "Cash" + }, + { + "Id": 3152, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-05-26T18:54:17", + "TransactionId": 85864814, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 770, + "CustomerInfo": 65425788, + "PaymentType": "Cash" + }, + { + "Id": 3153, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2017-01-22T10:39:22", + "TransactionId": 54488261, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 78, + "CustomerInfo": 85356541, + "PaymentType": "Credit Card" + }, + { + "Id": 3154, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-08-25T07:21:30", + "TransactionId": 96749442, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 589, + "CustomerInfo": 24186233, + "PaymentType": "Debit Card" + }, + { + "Id": 3155, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2018-04-28T11:34:48", + "TransactionId": 78093413, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 73868163, + "PaymentType": "Debit Card" + }, + { + "Id": 3156, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-05-03T11:54:49", + "TransactionId": 8439348, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 57, + "CustomerInfo": 73187810, + "PaymentType": "Cash" + }, + { + "Id": 3157, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2019-10-18T13:08:24", + "TransactionId": 42414213, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 479, + "CustomerInfo": 8143961, + "PaymentType": "Debit Card" + }, + { + "Id": 3158, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2019-09-20T08:47:20", + "TransactionId": 61984099, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 625, + "CustomerInfo": 48349552, + "PaymentType": "Debit Card" + }, + { + "Id": 3159, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-04-16T14:35:05", + "TransactionId": 94731625, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 63, + "CustomerInfo": 64369499, + "PaymentType": "Debit Card" + }, + { + "Id": 3160, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-11-22T11:01:06", + "TransactionId": 37028717, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 406, + "CustomerInfo": 90362731, + "PaymentType": "Cash" + }, + { + "Id": 3161, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2016-01-08T16:50:18", + "TransactionId": 39631540, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 258, + "CustomerInfo": 87956292, + "PaymentType": "Credit Card" + }, + { + "Id": 3162, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2017-06-16T11:59:08", + "TransactionId": 65676427, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 888, + "CustomerInfo": 78992469, + "PaymentType": "Cash" + }, + { + "Id": 3163, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2016-10-07T15:27:13", + "TransactionId": 96898295, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 101, + "CustomerInfo": 23722536, + "PaymentType": "Debit Card" + }, + { + "Id": 3164, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2017-08-27T15:26:21", + "TransactionId": 40219403, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 125, + "CustomerInfo": 78634904, + "PaymentType": "Cash" + }, + { + "Id": 3165, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2019-04-06T11:28:54", + "TransactionId": 44710295, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 901, + "CustomerInfo": 91476664, + "PaymentType": "Debit Card" + }, + { + "Id": 3166, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-04-02T09:05:46", + "TransactionId": 68105403, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 433, + "CustomerInfo": 71667040, + "PaymentType": "Cash" + }, + { + "Id": 3167, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2016-12-16T16:08:33", + "TransactionId": 31629123, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 550, + "CustomerInfo": 77328958, + "PaymentType": "Cash" + }, + { + "Id": 3168, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2016-10-23T14:48:55", + "TransactionId": 94973440, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 177, + "CustomerInfo": 36400675, + "PaymentType": "Debit Card" + }, + { + "Id": 3169, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2016-12-14T12:45:48", + "TransactionId": 56152840, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 619, + "CustomerInfo": 4278716, + "PaymentType": "Cash" + }, + { + "Id": 3170, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2019-01-01T17:54:32", + "TransactionId": 17747314, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 716, + "CustomerInfo": 61722461, + "PaymentType": "Debit Card" + }, + { + "Id": 3171, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-03-04T10:23:05", + "TransactionId": 94123118, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 439, + "CustomerInfo": 81438406, + "PaymentType": "Credit Card" + }, + { + "Id": 3172, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-09-08T14:37:32", + "TransactionId": 13151267, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 52331699, + "PaymentType": "Debit Card" + }, + { + "Id": 3173, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2017-10-24T19:58:31", + "TransactionId": 23051256, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 963, + "CustomerInfo": 30495995, + "PaymentType": "Cash" + }, + { + "Id": 3174, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-04-27T12:22:11", + "TransactionId": 42831609, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 666, + "CustomerInfo": 4539333, + "PaymentType": "Credit Card" + }, + { + "Id": 3175, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2018-05-01T14:09:01", + "TransactionId": 48669843, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 554, + "CustomerInfo": 70894755, + "PaymentType": "Debit Card" + }, + { + "Id": 3176, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-11-19T10:52:36", + "TransactionId": 26855236, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 250, + "CustomerInfo": 41371549, + "PaymentType": "Debit Card" + }, + { + "Id": 3177, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2017-01-29T10:58:31", + "TransactionId": 76726575, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 529, + "CustomerInfo": 48972378, + "PaymentType": "Credit Card" + }, + { + "Id": 3178, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-01-04T18:02:27", + "TransactionId": 76640470, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 10, + "CustomerInfo": 20671866, + "PaymentType": "Cash" + }, + { + "Id": 3179, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2016-12-20T18:10:31", + "TransactionId": 87316923, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 596, + "CustomerInfo": 92550286, + "PaymentType": "Debit Card" + }, + { + "Id": 3180, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-06-07T19:53:20", + "TransactionId": 87636139, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 637, + "CustomerInfo": 9009337, + "PaymentType": "Cash" + }, + { + "Id": 3181, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2017-07-14T13:38:12", + "TransactionId": 27675845, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 888, + "CustomerInfo": 40103766, + "PaymentType": "Credit Card" + }, + { + "Id": 3182, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-07-17T08:33:04", + "TransactionId": 41832871, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 248, + "CustomerInfo": 18032644, + "PaymentType": "Cash" + }, + { + "Id": 3183, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2018-07-31T11:27:10", + "TransactionId": 22412811, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 528, + "CustomerInfo": 97880093, + "PaymentType": "Cash" + }, + { + "Id": 3184, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-04-28T07:05:48", + "TransactionId": 89973244, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 637, + "CustomerInfo": 15500530, + "PaymentType": "Cash" + }, + { + "Id": 3185, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-04-25T10:54:55", + "TransactionId": 33204343, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 80726434, + "PaymentType": "Credit Card" + }, + { + "Id": 3186, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-12-23T11:09:27", + "TransactionId": 88511419, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 252, + "CustomerInfo": 59618253, + "PaymentType": "Debit Card" + }, + { + "Id": 3187, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-11-19T17:06:26", + "TransactionId": 25739456, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 480, + "CustomerInfo": 9096621, + "PaymentType": "Credit Card" + }, + { + "Id": 3188, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-05-19T18:54:26", + "TransactionId": 31991977, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 988, + "CustomerInfo": 5425447, + "PaymentType": "Cash" + }, + { + "Id": 3189, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-02-06T16:41:57", + "TransactionId": 63387046, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 793, + "CustomerInfo": 43448778, + "PaymentType": "Credit Card" + }, + { + "Id": 3190, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2017-01-04T15:27:56", + "TransactionId": 69433217, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 463, + "CustomerInfo": 56843932, + "PaymentType": "Cash" + }, + { + "Id": 3191, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2018-09-20T12:56:36", + "TransactionId": 65782307, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 100, + "CustomerInfo": 1759524, + "PaymentType": "Debit Card" + }, + { + "Id": 3192, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-12-14T16:40:13", + "TransactionId": 32340792, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 300, + "CustomerInfo": 78924273, + "PaymentType": "Cash" + }, + { + "Id": 3193, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-08-30T14:29:02", + "TransactionId": 98835762, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 883, + "CustomerInfo": 42079659, + "PaymentType": "Debit Card" + }, + { + "Id": 3194, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-12-29T08:00:49", + "TransactionId": 3408317, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 507, + "CustomerInfo": 92006442, + "PaymentType": "Credit Card" + }, + { + "Id": 3195, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-08-02T15:36:35", + "TransactionId": 64052386, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 85, + "CustomerInfo": 4066360, + "PaymentType": "Credit Card" + }, + { + "Id": 3196, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-01-08T17:33:48", + "TransactionId": 16627772, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 190, + "CustomerInfo": 66604956, + "PaymentType": "Debit Card" + }, + { + "Id": 3197, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-08-25T10:12:43", + "TransactionId": 53809848, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 534, + "CustomerInfo": 42428139, + "PaymentType": "Cash" + }, + { + "Id": 3198, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-05-24T07:18:55", + "TransactionId": 64711890, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 683, + "CustomerInfo": 3378428, + "PaymentType": "Cash" + }, + { + "Id": 3199, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2016-11-22T07:54:20", + "TransactionId": 28842117, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 492, + "CustomerInfo": 66898979, + "PaymentType": "Debit Card" + }, + { + "Id": 3200, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-05-11T15:14:33", + "TransactionId": 15180637, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 644, + "CustomerInfo": 83724066, + "PaymentType": "Credit Card" + }, + { + "Id": 3201, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2018-02-16T08:10:19", + "TransactionId": 61229522, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 220, + "CustomerInfo": 69209356, + "PaymentType": "Cash" + }, + { + "Id": 3202, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2019-04-26T18:28:48", + "TransactionId": 41312301, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 997, + "CustomerInfo": 47549952, + "PaymentType": "Credit Card" + }, + { + "Id": 3203, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2017-02-17T15:46:13", + "TransactionId": 24319365, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 860, + "CustomerInfo": 33702121, + "PaymentType": "Cash" + }, + { + "Id": 3204, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-05-19T15:51:16", + "TransactionId": 57223282, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 803, + "CustomerInfo": 32000978, + "PaymentType": "Cash" + }, + { + "Id": 3205, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2017-01-28T16:02:30", + "TransactionId": 32125875, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 855, + "CustomerInfo": 92633949, + "PaymentType": "Debit Card" + }, + { + "Id": 3206, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2019-06-29T18:42:03", + "TransactionId": 42345494, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 42, + "CustomerInfo": 86470808, + "PaymentType": "Credit Card" + }, + { + "Id": 3207, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2019-09-10T18:38:36", + "TransactionId": 79207800, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 356, + "CustomerInfo": 5255949, + "PaymentType": "Debit Card" + }, + { + "Id": 3208, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2016-12-29T17:57:16", + "TransactionId": 33452947, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 317, + "CustomerInfo": 85978661, + "PaymentType": "Credit Card" + }, + { + "Id": 3209, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2018-04-25T15:18:43", + "TransactionId": 60584971, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 771, + "CustomerInfo": 31182874, + "PaymentType": "Credit Card" + }, + { + "Id": 3210, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-02-04T10:34:28", + "TransactionId": 15943062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 373, + "CustomerInfo": 72209390, + "PaymentType": "Credit Card" + }, + { + "Id": 3211, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-06-22T13:27:42", + "TransactionId": 58496289, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 195, + "CustomerInfo": 96914173, + "PaymentType": "Credit Card" + }, + { + "Id": 3212, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-03-25T14:03:50", + "TransactionId": 90933752, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 867, + "CustomerInfo": 91733307, + "PaymentType": "Cash" + }, + { + "Id": 3213, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-12-22T09:08:47", + "TransactionId": 30032978, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 6, + "CustomerInfo": 95493465, + "PaymentType": "Cash" + }, + { + "Id": 3214, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-12-10T07:14:01", + "TransactionId": 78158366, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 20, + "CustomerInfo": 52464468, + "PaymentType": "Cash" + }, + { + "Id": 3215, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-03-14T09:38:44", + "TransactionId": 83083362, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 146, + "CustomerInfo": 8148041, + "PaymentType": "Credit Card" + }, + { + "Id": 3216, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-06-18T12:53:00", + "TransactionId": 47431030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 456, + "CustomerInfo": 98069641, + "PaymentType": "Credit Card" + }, + { + "Id": 3217, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2017-10-08T17:52:31", + "TransactionId": 53897238, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 268, + "CustomerInfo": 83692150, + "PaymentType": "Credit Card" + }, + { + "Id": 3218, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2017-04-05T08:19:49", + "TransactionId": 87930401, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 666, + "CustomerInfo": 83523787, + "PaymentType": "Credit Card" + }, + { + "Id": 3219, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2018-04-10T18:21:45", + "TransactionId": 70004409, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 314, + "CustomerInfo": 21942965, + "PaymentType": "Debit Card" + }, + { + "Id": 3220, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2019-11-07T07:14:44", + "TransactionId": 87811866, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 737, + "CustomerInfo": 66682826, + "PaymentType": "Debit Card" + }, + { + "Id": 3221, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2016-02-09T07:20:38", + "TransactionId": 12568187, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 267, + "CustomerInfo": 37404737, + "PaymentType": "Credit Card" + }, + { + "Id": 3222, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-07-03T15:30:58", + "TransactionId": 62133462, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 93490531, + "PaymentType": "Credit Card" + }, + { + "Id": 3223, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2017-01-29T08:22:08", + "TransactionId": 17505796, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 757, + "CustomerInfo": 15633987, + "PaymentType": "Credit Card" + }, + { + "Id": 3224, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-12-26T09:19:18", + "TransactionId": 4012666, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 246, + "CustomerInfo": 88442455, + "PaymentType": "Cash" + }, + { + "Id": 3225, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-12-05T12:05:02", + "TransactionId": 74156204, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 14, + "CustomerInfo": 22924406, + "PaymentType": "Debit Card" + }, + { + "Id": 3226, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2018-02-27T18:20:27", + "TransactionId": 7812672, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 733, + "CustomerInfo": 2496956, + "PaymentType": "Cash" + }, + { + "Id": 3227, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-12-26T17:57:16", + "TransactionId": 79708043, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 781, + "CustomerInfo": 85889776, + "PaymentType": "Credit Card" + }, + { + "Id": 3228, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2019-12-07T19:05:40", + "TransactionId": 82395605, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 494, + "CustomerInfo": 4516363, + "PaymentType": "Cash" + }, + { + "Id": 3229, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2018-02-28T19:42:06", + "TransactionId": 92856338, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 182, + "CustomerInfo": 60500911, + "PaymentType": "Credit Card" + }, + { + "Id": 3230, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-07-28T15:50:41", + "TransactionId": 78180235, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 478, + "CustomerInfo": 44957633, + "PaymentType": "Credit Card" + }, + { + "Id": 3231, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-08-18T08:01:41", + "TransactionId": 37100653, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 89, + "CustomerInfo": 55303485, + "PaymentType": "Credit Card" + }, + { + "Id": 3232, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-10-15T10:21:30", + "TransactionId": 65595868, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 874, + "CustomerInfo": 34357150, + "PaymentType": "Cash" + }, + { + "Id": 3233, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2017-11-01T13:39:39", + "TransactionId": 18795259, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 295, + "CustomerInfo": 29092535, + "PaymentType": "Cash" + }, + { + "Id": 3234, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2019-11-13T08:27:36", + "TransactionId": 76010299, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 839, + "CustomerInfo": 94731793, + "PaymentType": "Debit Card" + }, + { + "Id": 3235, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-02-12T11:34:48", + "TransactionId": 59036427, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 144, + "CustomerInfo": 53187925, + "PaymentType": "Credit Card" + }, + { + "Id": 3236, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2017-06-14T18:25:55", + "TransactionId": 43171830, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 4, + "CustomerInfo": 14714747, + "PaymentType": "Cash" + }, + { + "Id": 3237, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2016-04-26T12:38:18", + "TransactionId": 65668534, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 993, + "CustomerInfo": 83281708, + "PaymentType": "Credit Card" + }, + { + "Id": 3238, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-01-27T16:45:16", + "TransactionId": 81367918, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 56407337, + "PaymentType": "Cash" + }, + { + "Id": 3239, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2016-08-05T10:44:41", + "TransactionId": 26603200, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 997, + "CustomerInfo": 60482546, + "PaymentType": "Debit Card" + }, + { + "Id": 3240, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2018-06-04T10:09:16", + "TransactionId": 34233253, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 270, + "CustomerInfo": 32094510, + "PaymentType": "Cash" + }, + { + "Id": 3241, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-09-29T18:15:50", + "TransactionId": 20711282, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 5, + "CustomerInfo": 12751674, + "PaymentType": "Debit Card" + }, + { + "Id": 3242, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-08-19T07:57:39", + "TransactionId": 90061386, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 695, + "CustomerInfo": 60015446, + "PaymentType": "Cash" + }, + { + "Id": 3243, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2017-09-07T11:17:23", + "TransactionId": 51764565, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 194, + "CustomerInfo": 6569837, + "PaymentType": "Debit Card" + }, + { + "Id": 3244, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-08-09T19:31:09", + "TransactionId": 53097144, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 450, + "CustomerInfo": 26245788, + "PaymentType": "Cash" + }, + { + "Id": 3245, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2017-02-01T16:10:42", + "TransactionId": 68468479, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 233, + "CustomerInfo": 42847574, + "PaymentType": "Cash" + }, + { + "Id": 3246, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2016-05-19T07:29:51", + "TransactionId": 20926652, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 53, + "CustomerInfo": 38258223, + "PaymentType": "Debit Card" + }, + { + "Id": 3247, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-12-26T19:01:21", + "TransactionId": 90592574, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 934, + "CustomerInfo": 14520587, + "PaymentType": "Cash" + }, + { + "Id": 3248, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2019-05-13T15:51:50", + "TransactionId": 45093255, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 577, + "CustomerInfo": 58346781, + "PaymentType": "Debit Card" + }, + { + "Id": 3249, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2016-07-25T14:59:51", + "TransactionId": 23291607, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 125, + "CustomerInfo": 5777787, + "PaymentType": "Cash" + }, + { + "Id": 3250, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2017-05-26T14:13:38", + "TransactionId": 28159615, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 9, + "CustomerInfo": 93681693, + "PaymentType": "Debit Card" + }, + { + "Id": 3251, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-03-09T07:18:12", + "TransactionId": 17241885, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 975, + "CustomerInfo": 28125173, + "PaymentType": "Cash" + }, + { + "Id": 3252, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2016-09-22T15:02:18", + "TransactionId": 36069966, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 981, + "CustomerInfo": 29842253, + "PaymentType": "Debit Card" + }, + { + "Id": 3253, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-12-08T09:55:35", + "TransactionId": 99747573, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 683, + "CustomerInfo": 96857998, + "PaymentType": "Cash" + }, + { + "Id": 3254, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2017-10-15T10:35:20", + "TransactionId": 97133339, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 965, + "CustomerInfo": 37243170, + "PaymentType": "Debit Card" + }, + { + "Id": 3255, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2018-07-01T08:56:33", + "TransactionId": 1444867, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 596, + "CustomerInfo": 81721584, + "PaymentType": "Credit Card" + }, + { + "Id": 3256, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2019-08-26T18:47:57", + "TransactionId": 78296626, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 138, + "CustomerInfo": 68473386, + "PaymentType": "Credit Card" + }, + { + "Id": 3257, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-08-03T13:56:21", + "TransactionId": 58734542, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 243, + "CustomerInfo": 60247930, + "PaymentType": "Cash" + }, + { + "Id": 3258, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2018-08-06T15:09:30", + "TransactionId": 16626904, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 975, + "CustomerInfo": 70574009, + "PaymentType": "Cash" + }, + { + "Id": 3259, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2019-01-30T12:51:42", + "TransactionId": 31773784, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 865, + "CustomerInfo": 73895626, + "PaymentType": "Debit Card" + }, + { + "Id": 3260, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2018-01-01T14:22:42", + "TransactionId": 36609148, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 733, + "CustomerInfo": 4788380, + "PaymentType": "Cash" + }, + { + "Id": 3261, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-01-29T16:54:46", + "TransactionId": 29729000, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 590, + "CustomerInfo": 1525494, + "PaymentType": "Credit Card" + }, + { + "Id": 3262, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-11-18T18:36:00", + "TransactionId": 50567879, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 907, + "CustomerInfo": 14913852, + "PaymentType": "Cash" + }, + { + "Id": 3263, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-02-19T16:32:44", + "TransactionId": 10677556, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 420, + "CustomerInfo": 69670395, + "PaymentType": "Debit Card" + }, + { + "Id": 3264, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2016-11-25T10:01:38", + "TransactionId": 43144346, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 561, + "CustomerInfo": 17943200, + "PaymentType": "Debit Card" + }, + { + "Id": 3265, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-05-29T14:06:52", + "TransactionId": 40178199, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 646, + "CustomerInfo": 31605686, + "PaymentType": "Credit Card" + }, + { + "Id": 3266, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2016-02-05T14:37:41", + "TransactionId": 15053902, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 615, + "CustomerInfo": 45346114, + "PaymentType": "Debit Card" + }, + { + "Id": 3267, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-07-26T11:41:51", + "TransactionId": 32351021, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 564, + "CustomerInfo": 49919573, + "PaymentType": "Credit Card" + }, + { + "Id": 3268, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2019-04-18T07:48:35", + "TransactionId": 91770000, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 67, + "CustomerInfo": 19544831, + "PaymentType": "Credit Card" + }, + { + "Id": 3269, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2016-02-02T16:59:14", + "TransactionId": 49071988, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 730, + "CustomerInfo": 72640910, + "PaymentType": "Cash" + }, + { + "Id": 3270, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2019-12-19T19:02:04", + "TransactionId": 33323492, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 72, + "CustomerInfo": 21175240, + "PaymentType": "Cash" + }, + { + "Id": 3271, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2016-01-04T07:37:38", + "TransactionId": 19451556, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 56763160, + "PaymentType": "Credit Card" + }, + { + "Id": 3272, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2016-05-22T14:41:51", + "TransactionId": 36858551, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 201, + "CustomerInfo": 63763087, + "PaymentType": "Cash" + }, + { + "Id": 3273, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2018-07-06T18:46:05", + "TransactionId": 70315351, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 506, + "CustomerInfo": 32087434, + "PaymentType": "Credit Card" + }, + { + "Id": 3274, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-10-20T08:11:37", + "TransactionId": 11558619, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 993, + "CustomerInfo": 52001614, + "PaymentType": "Debit Card" + }, + { + "Id": 3275, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2016-11-05T12:49:41", + "TransactionId": 54301536, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 38, + "CustomerInfo": 64674382, + "PaymentType": "Debit Card" + }, + { + "Id": 3276, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2019-07-02T12:07:29", + "TransactionId": 50594295, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 803, + "CustomerInfo": 67082690, + "PaymentType": "Credit Card" + }, + { + "Id": 3277, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2019-04-11T07:34:36", + "TransactionId": 12709097, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 613, + "CustomerInfo": 25520318, + "PaymentType": "Cash" + }, + { + "Id": 3278, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-05-24T15:23:02", + "TransactionId": 39801580, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 521, + "CustomerInfo": 87056114, + "PaymentType": "Cash" + }, + { + "Id": 3279, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2019-06-04T11:41:08", + "TransactionId": 59225584, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 882, + "CustomerInfo": 6703842, + "PaymentType": "Debit Card" + }, + { + "Id": 3280, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2019-03-11T12:39:53", + "TransactionId": 86419409, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 737, + "CustomerInfo": 98112837, + "PaymentType": "Debit Card" + }, + { + "Id": 3281, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2019-03-28T14:09:19", + "TransactionId": 64091649, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 25, + "CustomerInfo": 3311426, + "PaymentType": "Debit Card" + }, + { + "Id": 3282, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2018-09-27T12:04:19", + "TransactionId": 58321622, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 255, + "CustomerInfo": 21051803, + "PaymentType": "Credit Card" + }, + { + "Id": 3283, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-05-23T15:51:33", + "TransactionId": 36414809, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 648, + "CustomerInfo": 18973787, + "PaymentType": "Credit Card" + }, + { + "Id": 3284, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-02-27T18:54:09", + "TransactionId": 76555618, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 700, + "CustomerInfo": 28400344, + "PaymentType": "Debit Card" + }, + { + "Id": 3285, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-05-30T15:32:59", + "TransactionId": 77715312, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 251, + "CustomerInfo": 47395705, + "PaymentType": "Debit Card" + }, + { + "Id": 3286, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-03-21T13:50:36", + "TransactionId": 17491764, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 747, + "CustomerInfo": 58566516, + "PaymentType": "Credit Card" + }, + { + "Id": 3287, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2018-01-18T17:08:18", + "TransactionId": 79848906, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 112, + "CustomerInfo": 18575985, + "PaymentType": "Debit Card" + }, + { + "Id": 3288, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2019-02-18T11:38:24", + "TransactionId": 2448527, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 639, + "CustomerInfo": 49153182, + "PaymentType": "Cash" + }, + { + "Id": 3289, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2016-05-23T14:14:56", + "TransactionId": 82658441, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 996, + "CustomerInfo": 847600, + "PaymentType": "Debit Card" + }, + { + "Id": 3290, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2016-07-18T08:31:12", + "TransactionId": 95735300, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 591, + "CustomerInfo": 15722733, + "PaymentType": "Credit Card" + }, + { + "Id": 3291, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-01-20T08:47:54", + "TransactionId": 8668026, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 715, + "CustomerInfo": 80885452, + "PaymentType": "Cash" + }, + { + "Id": 3292, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2019-07-27T08:56:59", + "TransactionId": 96046062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 203, + "CustomerInfo": 28318221, + "PaymentType": "Debit Card" + }, + { + "Id": 3293, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-08-08T07:13:00", + "TransactionId": 85205640, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 395, + "CustomerInfo": 15046270, + "PaymentType": "Credit Card" + }, + { + "Id": 3294, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2017-02-10T19:57:48", + "TransactionId": 90976291, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 909, + "CustomerInfo": 3187735, + "PaymentType": "Debit Card" + }, + { + "Id": 3295, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2018-01-07T11:40:42", + "TransactionId": 52757940, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 843, + "CustomerInfo": 51349667, + "PaymentType": "Credit Card" + }, + { + "Id": 3296, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2016-08-21T12:06:12", + "TransactionId": 14451669, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 739, + "CustomerInfo": 87722787, + "PaymentType": "Cash" + }, + { + "Id": 3297, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2019-04-21T07:39:22", + "TransactionId": 4483973, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 337, + "CustomerInfo": 40382127, + "PaymentType": "Debit Card" + }, + { + "Id": 3298, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2016-03-27T18:00:09", + "TransactionId": 85356097, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 717, + "CustomerInfo": 48236211, + "PaymentType": "Credit Card" + }, + { + "Id": 3299, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2018-12-17T16:20:47", + "TransactionId": 86226216, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 703, + "CustomerInfo": 34594591, + "PaymentType": "Debit Card" + }, + { + "Id": 3300, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2016-03-12T17:01:58", + "TransactionId": 14001614, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 836, + "CustomerInfo": 92676655, + "PaymentType": "Cash" + }, + { + "Id": 3301, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-02-10T14:10:02", + "TransactionId": 2008045, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 358, + "CustomerInfo": 13426979, + "PaymentType": "Debit Card" + }, + { + "Id": 3302, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-05-26T19:08:33", + "TransactionId": 53109814, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 200, + "CustomerInfo": 18194868, + "PaymentType": "Credit Card" + }, + { + "Id": 3303, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2018-10-20T09:22:28", + "TransactionId": 87483370, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 837, + "CustomerInfo": 17013768, + "PaymentType": "Credit Card" + }, + { + "Id": 3304, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-08-20T08:31:21", + "TransactionId": 2598627, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 204, + "CustomerInfo": 94706767, + "PaymentType": "Debit Card" + }, + { + "Id": 3305, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2017-03-15T08:30:12", + "TransactionId": 97324730, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 94, + "CustomerInfo": 33670829, + "PaymentType": "Credit Card" + }, + { + "Id": 3306, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2017-05-02T14:08:36", + "TransactionId": 71300968, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 792, + "CustomerInfo": 59512035, + "PaymentType": "Debit Card" + }, + { + "Id": 3307, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2019-01-03T17:26:01", + "TransactionId": 76320405, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 803, + "CustomerInfo": 83612006, + "PaymentType": "Cash" + }, + { + "Id": 3308, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-03-06T19:46:08", + "TransactionId": 93264040, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 96232060, + "PaymentType": "Credit Card" + }, + { + "Id": 3309, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2016-07-23T09:35:43", + "TransactionId": 14454433, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 157, + "CustomerInfo": 90881481, + "PaymentType": "Credit Card" + }, + { + "Id": 3310, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2019-09-13T15:49:24", + "TransactionId": 39592316, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 365, + "CustomerInfo": 76346924, + "PaymentType": "Cash" + }, + { + "Id": 3311, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-03-29T10:30:26", + "TransactionId": 35206996, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 809, + "CustomerInfo": 73855714, + "PaymentType": "Cash" + }, + { + "Id": 3312, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2019-05-16T19:22:13", + "TransactionId": 11994663, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 449, + "CustomerInfo": 58718706, + "PaymentType": "Debit Card" + }, + { + "Id": 3313, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2017-08-23T15:54:00", + "TransactionId": 58756917, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 83, + "CustomerInfo": 85704845, + "PaymentType": "Debit Card" + }, + { + "Id": 3314, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2017-12-01T13:08:33", + "TransactionId": 37664234, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 687, + "CustomerInfo": 30246922, + "PaymentType": "Cash" + }, + { + "Id": 3315, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-04-01T09:52:16", + "TransactionId": 50731505, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 8703174, + "PaymentType": "Cash" + }, + { + "Id": 3316, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-11-19T08:45:53", + "TransactionId": 26667605, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 719, + "CustomerInfo": 39865280, + "PaymentType": "Debit Card" + }, + { + "Id": 3317, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-04-04T12:49:49", + "TransactionId": 34774268, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 157, + "CustomerInfo": 11788969, + "PaymentType": "Debit Card" + }, + { + "Id": 3318, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2019-01-11T16:43:24", + "TransactionId": 54840768, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 475, + "CustomerInfo": 26075768, + "PaymentType": "Debit Card" + }, + { + "Id": 3319, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-07-07T10:19:12", + "TransactionId": 58693493, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 322, + "CustomerInfo": 11902887, + "PaymentType": "Cash" + }, + { + "Id": 3320, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-09-02T15:38:01", + "TransactionId": 99105045, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 31, + "CustomerInfo": 97248204, + "PaymentType": "Cash" + }, + { + "Id": 3321, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2019-04-20T11:19:32", + "TransactionId": 21564908, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 233, + "CustomerInfo": 40280426, + "PaymentType": "Credit Card" + }, + { + "Id": 3322, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2019-03-27T14:35:23", + "TransactionId": 29114211, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 63, + "CustomerInfo": 68915716, + "PaymentType": "Credit Card" + }, + { + "Id": 3323, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-01-14T14:51:39", + "TransactionId": 22582897, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 324, + "CustomerInfo": 48853499, + "PaymentType": "Credit Card" + }, + { + "Id": 3324, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-10-22T16:30:26", + "TransactionId": 8127620, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 336, + "CustomerInfo": 85313171, + "PaymentType": "Credit Card" + }, + { + "Id": 3325, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-12-12T11:42:43", + "TransactionId": 69785589, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 654, + "CustomerInfo": 31263, + "PaymentType": "Cash" + }, + { + "Id": 3326, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-02-22T12:25:12", + "TransactionId": 9106690, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 96797307, + "PaymentType": "Debit Card" + }, + { + "Id": 3327, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2016-03-19T11:33:04", + "TransactionId": 60490349, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 743, + "CustomerInfo": 40510354, + "PaymentType": "Debit Card" + }, + { + "Id": 3328, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2016-09-26T18:27:39", + "TransactionId": 56314924, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 393, + "CustomerInfo": 78211726, + "PaymentType": "Cash" + }, + { + "Id": 3329, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-06-06T07:37:03", + "TransactionId": 41669578, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 538, + "CustomerInfo": 35156291, + "PaymentType": "Cash" + }, + { + "Id": 3330, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2019-12-05T11:52:48", + "TransactionId": 23670715, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 339, + "CustomerInfo": 59088697, + "PaymentType": "Credit Card" + }, + { + "Id": 3331, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-06-19T16:37:55", + "TransactionId": 96946858, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 613, + "CustomerInfo": 42771508, + "PaymentType": "Debit Card" + }, + { + "Id": 3332, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2017-03-11T14:34:22", + "TransactionId": 71180269, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 554, + "CustomerInfo": 84626940, + "PaymentType": "Debit Card" + }, + { + "Id": 3333, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-01-14T13:54:03", + "TransactionId": 87715805, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 656, + "CustomerInfo": 2289640, + "PaymentType": "Cash" + }, + { + "Id": 3334, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2018-09-22T07:23:48", + "TransactionId": 90624539, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 526, + "CustomerInfo": 25219535, + "PaymentType": "Debit Card" + }, + { + "Id": 3335, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2016-11-11T15:31:24", + "TransactionId": 82818167, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 647, + "CustomerInfo": 51675737, + "PaymentType": "Debit Card" + }, + { + "Id": 3336, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2016-03-11T13:12:26", + "TransactionId": 12388446, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 986, + "CustomerInfo": 7943191, + "PaymentType": "Debit Card" + }, + { + "Id": 3337, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2017-05-23T11:47:54", + "TransactionId": 5176083, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 180, + "CustomerInfo": 39702348, + "PaymentType": "Credit Card" + }, + { + "Id": 3338, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-12-27T16:55:12", + "TransactionId": 74324761, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 471, + "CustomerInfo": 7264965, + "PaymentType": "Credit Card" + }, + { + "Id": 3339, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-06-15T17:23:17", + "TransactionId": 18622485, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 460, + "CustomerInfo": 7481073, + "PaymentType": "Debit Card" + }, + { + "Id": 3340, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-11-21T11:54:58", + "TransactionId": 9083246, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 323, + "CustomerInfo": 79717448, + "PaymentType": "Cash" + }, + { + "Id": 3341, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2017-09-16T07:41:57", + "TransactionId": 43281752, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 120, + "CustomerInfo": 32530188, + "PaymentType": "Debit Card" + }, + { + "Id": 3342, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-06-16T19:32:01", + "TransactionId": 55383438, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 837, + "CustomerInfo": 29356735, + "PaymentType": "Credit Card" + }, + { + "Id": 3343, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2018-07-18T09:02:01", + "TransactionId": 39112791, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 434, + "CustomerInfo": 73431311, + "PaymentType": "Cash" + }, + { + "Id": 3344, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2019-03-26T18:50:59", + "TransactionId": 57193329, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 147, + "CustomerInfo": 22077541, + "PaymentType": "Cash" + }, + { + "Id": 3345, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-08-18T18:58:19", + "TransactionId": 29582557, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 428, + "CustomerInfo": 99490227, + "PaymentType": "Cash" + }, + { + "Id": 3346, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2017-03-23T17:36:23", + "TransactionId": 80552788, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 402, + "CustomerInfo": 54280692, + "PaymentType": "Cash" + }, + { + "Id": 3347, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2017-09-06T08:47:20", + "TransactionId": 56158951, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 940, + "CustomerInfo": 934092, + "PaymentType": "Debit Card" + }, + { + "Id": 3348, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2018-06-07T19:09:50", + "TransactionId": 11726322, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 489, + "CustomerInfo": 18787661, + "PaymentType": "Credit Card" + }, + { + "Id": 3349, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-01-27T19:43:41", + "TransactionId": 84177993, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 868, + "CustomerInfo": 27790880, + "PaymentType": "Credit Card" + }, + { + "Id": 3350, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-12-07T16:00:37", + "TransactionId": 90702489, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 744, + "CustomerInfo": 36551930, + "PaymentType": "Cash" + }, + { + "Id": 3351, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-08-23T19:52:28", + "TransactionId": 68137125, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 702, + "CustomerInfo": 32713427, + "PaymentType": "Cash" + }, + { + "Id": 3352, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2016-05-22T12:36:43", + "TransactionId": 22218070, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 80, + "CustomerInfo": 2532807, + "PaymentType": "Credit Card" + }, + { + "Id": 3353, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-09-26T13:46:08", + "TransactionId": 64739915, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 85, + "CustomerInfo": 33690886, + "PaymentType": "Cash" + }, + { + "Id": 3354, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-04-19T08:23:51", + "TransactionId": 13010838, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 184, + "CustomerInfo": 55819498, + "PaymentType": "Debit Card" + }, + { + "Id": 3355, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2018-06-05T09:45:56", + "TransactionId": 16757811, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 955, + "CustomerInfo": 98298598, + "PaymentType": "Credit Card" + }, + { + "Id": 3356, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-04-19T18:37:44", + "TransactionId": 19814066, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 648, + "CustomerInfo": 72943006, + "PaymentType": "Credit Card" + }, + { + "Id": 3357, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2017-10-23T07:26:15", + "TransactionId": 77609904, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 565, + "CustomerInfo": 88091568, + "PaymentType": "Cash" + }, + { + "Id": 3358, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2018-10-13T19:25:32", + "TransactionId": 26957785, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 814, + "CustomerInfo": 22441936, + "PaymentType": "Debit Card" + }, + { + "Id": 3359, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2017-10-19T16:21:30", + "TransactionId": 98435725, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 177, + "CustomerInfo": 35042089, + "PaymentType": "Debit Card" + }, + { + "Id": 3360, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-05-17T12:24:55", + "TransactionId": 35691710, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 771, + "CustomerInfo": 18584616, + "PaymentType": "Debit Card" + }, + { + "Id": 3361, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-07-18T11:08:18", + "TransactionId": 51841010, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 218, + "CustomerInfo": 498231, + "PaymentType": "Debit Card" + }, + { + "Id": 3362, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2018-08-03T13:56:38", + "TransactionId": 17926122, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 603, + "CustomerInfo": 53160800, + "PaymentType": "Cash" + }, + { + "Id": 3363, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-07-18T16:56:21", + "TransactionId": 98045938, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 847, + "CustomerInfo": 48882659, + "PaymentType": "Debit Card" + }, + { + "Id": 3364, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-11-29T09:02:01", + "TransactionId": 34156218, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 382, + "CustomerInfo": 90805422, + "PaymentType": "Cash" + }, + { + "Id": 3365, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-08-09T19:54:12", + "TransactionId": 14877612, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 4, + "CustomerInfo": 5272605, + "PaymentType": "Credit Card" + }, + { + "Id": 3366, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-09-07T09:57:10", + "TransactionId": 85443422, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 825, + "CustomerInfo": 72590976, + "PaymentType": "Debit Card" + }, + { + "Id": 3367, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-01-07T18:07:12", + "TransactionId": 75894517, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 678, + "CustomerInfo": 46296195, + "PaymentType": "Credit Card" + }, + { + "Id": 3368, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2019-05-01T10:23:40", + "TransactionId": 1068429, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 939, + "CustomerInfo": 89554443, + "PaymentType": "Cash" + }, + { + "Id": 3369, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-02-07T08:24:17", + "TransactionId": 81475554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 402, + "CustomerInfo": 32807116, + "PaymentType": "Debit Card" + }, + { + "Id": 3370, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-10-15T15:29:23", + "TransactionId": 91505566, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 27797562, + "PaymentType": "Debit Card" + }, + { + "Id": 3371, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2018-09-28T11:13:29", + "TransactionId": 37393954, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 71, + "CustomerInfo": 44432047, + "PaymentType": "Debit Card" + }, + { + "Id": 3372, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2017-06-04T07:57:56", + "TransactionId": 16660837, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 223, + "CustomerInfo": 46495363, + "PaymentType": "Credit Card" + }, + { + "Id": 3373, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2019-07-15T11:20:33", + "TransactionId": 73676891, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 862, + "CustomerInfo": 4634682, + "PaymentType": "Credit Card" + }, + { + "Id": 3374, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-01-09T11:52:05", + "TransactionId": 8271108, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 536, + "CustomerInfo": 66917139, + "PaymentType": "Debit Card" + }, + { + "Id": 3375, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2016-08-26T11:20:59", + "TransactionId": 40155539, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 593, + "CustomerInfo": 52653253, + "PaymentType": "Debit Card" + }, + { + "Id": 3376, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2016-03-08T12:54:26", + "TransactionId": 82723500, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 915, + "CustomerInfo": 46348227, + "PaymentType": "Credit Card" + }, + { + "Id": 3377, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-06-16T09:55:09", + "TransactionId": 48621331, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 282, + "CustomerInfo": 94555137, + "PaymentType": "Debit Card" + }, + { + "Id": 3378, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2018-05-18T14:34:48", + "TransactionId": 54234379, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 518, + "CustomerInfo": 98734928, + "PaymentType": "Cash" + }, + { + "Id": 3379, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2016-08-11T10:29:34", + "TransactionId": 83775424, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 511, + "CustomerInfo": 54949416, + "PaymentType": "Cash" + }, + { + "Id": 3380, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2017-08-19T12:40:19", + "TransactionId": 21370397, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 855, + "CustomerInfo": 31220610, + "PaymentType": "Debit Card" + }, + { + "Id": 3381, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2016-06-06T09:30:40", + "TransactionId": 19671597, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 607, + "CustomerInfo": 23299514, + "PaymentType": "Cash" + }, + { + "Id": 3382, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2016-06-20T16:24:40", + "TransactionId": 99509494, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 539, + "CustomerInfo": 67929349, + "PaymentType": "Credit Card" + }, + { + "Id": 3383, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2019-05-03T16:23:23", + "TransactionId": 31548844, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 597, + "CustomerInfo": 43714775, + "PaymentType": "Cash" + }, + { + "Id": 3384, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-04-13T13:03:22", + "TransactionId": 93651339, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 652, + "CustomerInfo": 70656219, + "PaymentType": "Cash" + }, + { + "Id": 3385, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2016-04-08T11:14:30", + "TransactionId": 98604874, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 561, + "CustomerInfo": 68142525, + "PaymentType": "Debit Card" + }, + { + "Id": 3386, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2016-02-06T11:39:59", + "TransactionId": 49660575, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 669, + "CustomerInfo": 38518233, + "PaymentType": "Debit Card" + }, + { + "Id": 3387, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2019-09-17T11:07:26", + "TransactionId": 47438622, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 519, + "CustomerInfo": 29048237, + "PaymentType": "Debit Card" + }, + { + "Id": 3388, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-02-04T10:44:15", + "TransactionId": 8185879, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 331, + "CustomerInfo": 34648697, + "PaymentType": "Credit Card" + }, + { + "Id": 3389, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2019-01-31T07:24:49", + "TransactionId": 31652151, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 388, + "CustomerInfo": 48400437, + "PaymentType": "Cash" + }, + { + "Id": 3390, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2019-07-14T09:30:58", + "TransactionId": 59625383, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 376, + "CustomerInfo": 98295754, + "PaymentType": "Debit Card" + }, + { + "Id": 3391, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2019-12-11T08:27:10", + "TransactionId": 86487765, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 371, + "CustomerInfo": 36681962, + "PaymentType": "Cash" + }, + { + "Id": 3392, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2016-09-26T12:46:31", + "TransactionId": 81818819, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 517, + "CustomerInfo": 3305493, + "PaymentType": "Credit Card" + }, + { + "Id": 3393, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-04-12T10:32:53", + "TransactionId": 40978751, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 577, + "CustomerInfo": 73616095, + "PaymentType": "Debit Card" + }, + { + "Id": 3394, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-09-04T14:26:01", + "TransactionId": 46168249, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 280, + "CustomerInfo": 95386309, + "PaymentType": "Cash" + }, + { + "Id": 3395, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-03-18T11:47:54", + "TransactionId": 73725401, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 86055937, + "PaymentType": "Debit Card" + }, + { + "Id": 3396, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-06-14T09:27:48", + "TransactionId": 26506599, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 353, + "CustomerInfo": 57724059, + "PaymentType": "Credit Card" + }, + { + "Id": 3397, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2018-09-11T13:29:17", + "TransactionId": 19140134, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 734, + "CustomerInfo": 99969739, + "PaymentType": "Credit Card" + }, + { + "Id": 3398, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-08-29T16:10:51", + "TransactionId": 64189939, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 202, + "CustomerInfo": 14222782, + "PaymentType": "Debit Card" + }, + { + "Id": 3399, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-11-17T14:37:49", + "TransactionId": 24301813, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 841, + "CustomerInfo": 64325548, + "PaymentType": "Credit Card" + }, + { + "Id": 3400, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2017-05-16T12:45:48", + "TransactionId": 80902838, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 615, + "CustomerInfo": 88805642, + "PaymentType": "Debit Card" + }, + { + "Id": 3401, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-11-08T15:41:20", + "TransactionId": 10078670, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 1, + "CustomerInfo": 38266484, + "PaymentType": "Cash" + }, + { + "Id": 3402, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2018-12-05T09:22:45", + "TransactionId": 30801316, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 128, + "CustomerInfo": 83065664, + "PaymentType": "Credit Card" + }, + { + "Id": 3403, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2018-09-27T09:36:00", + "TransactionId": 44818789, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 330, + "CustomerInfo": 8358363, + "PaymentType": "Credit Card" + }, + { + "Id": 3404, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-06-14T13:44:15", + "TransactionId": 87049245, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 859, + "CustomerInfo": 22111412, + "PaymentType": "Credit Card" + }, + { + "Id": 3405, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2016-08-12T18:00:43", + "TransactionId": 21046779, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 748, + "CustomerInfo": 69064431, + "PaymentType": "Cash" + }, + { + "Id": 3406, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-06-16T12:46:48", + "TransactionId": 75611342, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 444, + "CustomerInfo": 1659072, + "PaymentType": "Credit Card" + }, + { + "Id": 3407, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2019-09-02T16:08:33", + "TransactionId": 42358130, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 947, + "CustomerInfo": 82102495, + "PaymentType": "Credit Card" + }, + { + "Id": 3408, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-10-31T11:58:08", + "TransactionId": 69278509, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 734, + "CustomerInfo": 8703079, + "PaymentType": "Cash" + }, + { + "Id": 3409, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2016-10-27T16:41:14", + "TransactionId": 1813644, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 109, + "CustomerInfo": 36985095, + "PaymentType": "Cash" + }, + { + "Id": 3410, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-09-01T13:05:31", + "TransactionId": 52880290, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 156, + "CustomerInfo": 9897625, + "PaymentType": "Credit Card" + }, + { + "Id": 3411, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-12-29T16:52:19", + "TransactionId": 39070198, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 397, + "CustomerInfo": 57278375, + "PaymentType": "Cash" + }, + { + "Id": 3412, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-11-12T11:25:35", + "TransactionId": 87804370, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 84113648, + "PaymentType": "Cash" + }, + { + "Id": 3413, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2019-04-19T16:15:27", + "TransactionId": 73019003, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 324, + "CustomerInfo": 65323344, + "PaymentType": "Credit Card" + }, + { + "Id": 3414, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2019-04-28T12:39:45", + "TransactionId": 3775850, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 527, + "CustomerInfo": 65866732, + "PaymentType": "Debit Card" + }, + { + "Id": 3415, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2017-09-09T17:24:26", + "TransactionId": 18361367, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 157, + "CustomerInfo": 63642292, + "PaymentType": "Cash" + }, + { + "Id": 3416, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-01-14T09:06:12", + "TransactionId": 29536525, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 741, + "CustomerInfo": 44544011, + "PaymentType": "Debit Card" + }, + { + "Id": 3417, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2017-04-27T11:23:00", + "TransactionId": 96432861, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 7, + "CustomerInfo": 10626323, + "PaymentType": "Credit Card" + }, + { + "Id": 3418, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2019-10-17T17:36:14", + "TransactionId": 45525752, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 78, + "CustomerInfo": 17100908, + "PaymentType": "Cash" + }, + { + "Id": 3419, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2017-05-06T18:26:04", + "TransactionId": 67620731, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 31219893, + "PaymentType": "Cash" + }, + { + "Id": 3420, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2016-02-15T11:23:00", + "TransactionId": 18333320, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 490, + "CustomerInfo": 40447769, + "PaymentType": "Cash" + }, + { + "Id": 3421, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2018-02-27T10:16:28", + "TransactionId": 80358622, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 841, + "CustomerInfo": 7703437, + "PaymentType": "Debit Card" + }, + { + "Id": 3422, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2018-11-10T19:54:12", + "TransactionId": 43448693, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 375, + "CustomerInfo": 77763527, + "PaymentType": "Credit Card" + }, + { + "Id": 3423, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-10-24T09:30:49", + "TransactionId": 51158854, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 884, + "CustomerInfo": 43961958, + "PaymentType": "Cash" + }, + { + "Id": 3424, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2018-03-26T16:09:33", + "TransactionId": 78691908, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 523, + "CustomerInfo": 25546566, + "PaymentType": "Debit Card" + }, + { + "Id": 3425, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-10-21T16:30:09", + "TransactionId": 29203102, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 892, + "CustomerInfo": 2054237, + "PaymentType": "Cash" + }, + { + "Id": 3426, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-11-07T13:49:35", + "TransactionId": 37612359, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 4, + "CustomerInfo": 93150151, + "PaymentType": "Cash" + }, + { + "Id": 3427, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-07-27T11:01:49", + "TransactionId": 95977307, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 408, + "CustomerInfo": 81818271, + "PaymentType": "Cash" + }, + { + "Id": 3428, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-11-21T08:47:46", + "TransactionId": 33776940, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 401, + "CustomerInfo": 12849642, + "PaymentType": "Debit Card" + }, + { + "Id": 3429, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2018-07-31T19:40:05", + "TransactionId": 32587307, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 788, + "CustomerInfo": 63773123, + "PaymentType": "Cash" + }, + { + "Id": 3430, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-04-29T10:33:10", + "TransactionId": 54825884, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 784, + "CustomerInfo": 9612157, + "PaymentType": "Debit Card" + }, + { + "Id": 3431, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-01-12T16:45:33", + "TransactionId": 86876244, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 918, + "CustomerInfo": 58622115, + "PaymentType": "Cash" + }, + { + "Id": 3432, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2017-03-29T14:53:05", + "TransactionId": 56757848, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 349, + "CustomerInfo": 77595287, + "PaymentType": "Cash" + }, + { + "Id": 3433, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-06-04T18:30:14", + "TransactionId": 49285291, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 655, + "CustomerInfo": 9626029, + "PaymentType": "Credit Card" + }, + { + "Id": 3434, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2016-04-23T13:49:00", + "TransactionId": 37262526, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 563, + "CustomerInfo": 89446598, + "PaymentType": "Debit Card" + }, + { + "Id": 3435, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-12-22T14:31:21", + "TransactionId": 87094001, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 800, + "CustomerInfo": 94896635, + "PaymentType": "Credit Card" + }, + { + "Id": 3436, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-09-19T18:04:54", + "TransactionId": 53014839, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 611, + "CustomerInfo": 94431765, + "PaymentType": "Debit Card" + }, + { + "Id": 3437, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-02-06T14:27:36", + "TransactionId": 50032777, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 266, + "CustomerInfo": 74744758, + "PaymentType": "Debit Card" + }, + { + "Id": 3438, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2016-04-08T09:03:45", + "TransactionId": 60647425, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 911, + "CustomerInfo": 51222723, + "PaymentType": "Debit Card" + }, + { + "Id": 3439, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-02-19T19:36:37", + "TransactionId": 57457412, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 88525796, + "PaymentType": "Cash" + }, + { + "Id": 3440, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2019-08-13T11:16:31", + "TransactionId": 40660065, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 234, + "CustomerInfo": 62349817, + "PaymentType": "Cash" + }, + { + "Id": 3441, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-01-19T10:49:52", + "TransactionId": 58724983, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 365, + "CustomerInfo": 14696930, + "PaymentType": "Debit Card" + }, + { + "Id": 3442, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-08-18T12:41:02", + "TransactionId": 98808200, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 369, + "CustomerInfo": 77534991, + "PaymentType": "Cash" + }, + { + "Id": 3443, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2019-08-26T14:36:40", + "TransactionId": 65558182, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 64, + "CustomerInfo": 87882666, + "PaymentType": "Cash" + }, + { + "Id": 3444, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2016-11-28T15:02:53", + "TransactionId": 40488737, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 384, + "CustomerInfo": 29157787, + "PaymentType": "Debit Card" + }, + { + "Id": 3445, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-10-23T13:49:52", + "TransactionId": 69324055, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 262, + "CustomerInfo": 48442266, + "PaymentType": "Credit Card" + }, + { + "Id": 3446, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2019-04-08T14:01:49", + "TransactionId": 90866013, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 685, + "CustomerInfo": 80931396, + "PaymentType": "Credit Card" + }, + { + "Id": 3447, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2018-07-26T13:45:24", + "TransactionId": 51575838, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 17, + "CustomerInfo": 6551275, + "PaymentType": "Credit Card" + }, + { + "Id": 3448, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-03-13T19:26:41", + "TransactionId": 83206051, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 633, + "CustomerInfo": 12402150, + "PaymentType": "Cash" + }, + { + "Id": 3449, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-08-11T16:14:10", + "TransactionId": 44570465, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 501, + "CustomerInfo": 98034953, + "PaymentType": "Debit Card" + }, + { + "Id": 3450, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-04-09T08:28:45", + "TransactionId": 63817028, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 753, + "CustomerInfo": 29255888, + "PaymentType": "Debit Card" + }, + { + "Id": 3451, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2016-04-21T13:29:08", + "TransactionId": 18045876, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 20, + "CustomerInfo": 367539, + "PaymentType": "Debit Card" + }, + { + "Id": 3452, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2018-08-26T10:40:39", + "TransactionId": 62583109, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 429, + "CustomerInfo": 10423847, + "PaymentType": "Debit Card" + }, + { + "Id": 3453, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-05-18T15:03:53", + "TransactionId": 12108798, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 487, + "CustomerInfo": 79947434, + "PaymentType": "Debit Card" + }, + { + "Id": 3454, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-12-17T16:57:30", + "TransactionId": 30532143, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 739, + "CustomerInfo": 87392026, + "PaymentType": "Debit Card" + }, + { + "Id": 3455, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2018-02-11T13:01:29", + "TransactionId": 88008856, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 726, + "CustomerInfo": 82069062, + "PaymentType": "Credit Card" + }, + { + "Id": 3456, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2017-05-07T19:07:49", + "TransactionId": 75046303, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 787, + "CustomerInfo": 61726144, + "PaymentType": "Credit Card" + }, + { + "Id": 3457, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2017-09-12T13:04:22", + "TransactionId": 74883772, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 916, + "CustomerInfo": 73302380, + "PaymentType": "Credit Card" + }, + { + "Id": 3458, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-11-12T15:47:05", + "TransactionId": 66380180, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 277, + "CustomerInfo": 32602589, + "PaymentType": "Credit Card" + }, + { + "Id": 3459, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2016-11-23T19:35:02", + "TransactionId": 11204782, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 878, + "CustomerInfo": 78801697, + "PaymentType": "Cash" + }, + { + "Id": 3460, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2019-02-15T15:53:43", + "TransactionId": 8013375, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 745, + "CustomerInfo": 20347839, + "PaymentType": "Credit Card" + }, + { + "Id": 3461, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2019-06-03T16:48:43", + "TransactionId": 79920169, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 201, + "CustomerInfo": 74416274, + "PaymentType": "Debit Card" + }, + { + "Id": 3462, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-11-11T16:09:42", + "TransactionId": 94695934, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 654, + "CustomerInfo": 96227679, + "PaymentType": "Debit Card" + }, + { + "Id": 3463, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-11-16T09:39:53", + "TransactionId": 89196751, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 444, + "CustomerInfo": 54468451, + "PaymentType": "Credit Card" + }, + { + "Id": 3464, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2018-08-06T10:03:39", + "TransactionId": 42085870, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 290, + "CustomerInfo": 16900943, + "PaymentType": "Credit Card" + }, + { + "Id": 3465, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2018-10-26T12:09:48", + "TransactionId": 63908440, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 359, + "CustomerInfo": 15640036, + "PaymentType": "Cash" + }, + { + "Id": 3466, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2017-12-06T11:21:59", + "TransactionId": 61185689, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 522, + "CustomerInfo": 52864813, + "PaymentType": "Cash" + }, + { + "Id": 3467, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2018-03-18T19:09:16", + "TransactionId": 48148052, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 311, + "CustomerInfo": 21942892, + "PaymentType": "Debit Card" + }, + { + "Id": 3468, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2016-02-24T16:09:07", + "TransactionId": 23421398, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 518, + "CustomerInfo": 29517735, + "PaymentType": "Debit Card" + }, + { + "Id": 3469, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-12-19T18:51:33", + "TransactionId": 81810068, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 871, + "CustomerInfo": 42981115, + "PaymentType": "Credit Card" + }, + { + "Id": 3470, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-04-08T12:21:27", + "TransactionId": 5018582, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 89241691, + "PaymentType": "Cash" + }, + { + "Id": 3471, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2018-07-08T16:50:27", + "TransactionId": 68649194, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 873, + "CustomerInfo": 97752205, + "PaymentType": "Credit Card" + }, + { + "Id": 3472, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2016-09-22T14:59:43", + "TransactionId": 15838931, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 613, + "CustomerInfo": 78655803, + "PaymentType": "Debit Card" + }, + { + "Id": 3473, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-07-17T18:59:37", + "TransactionId": 60869472, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 232, + "CustomerInfo": 23173986, + "PaymentType": "Cash" + }, + { + "Id": 3474, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2016-02-23T14:33:39", + "TransactionId": 93595803, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 148, + "CustomerInfo": 71766051, + "PaymentType": "Debit Card" + }, + { + "Id": 3475, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-12-15T15:45:04", + "TransactionId": 33775205, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 905, + "CustomerInfo": 24617915, + "PaymentType": "Debit Card" + }, + { + "Id": 3476, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2019-07-26T13:18:37", + "TransactionId": 32348574, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 501, + "CustomerInfo": 9989551, + "PaymentType": "Cash" + }, + { + "Id": 3477, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-04-05T16:30:52", + "TransactionId": 36962367, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 946, + "CustomerInfo": 55926312, + "PaymentType": "Credit Card" + }, + { + "Id": 3478, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-06-24T16:56:21", + "TransactionId": 3769556, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 52, + "CustomerInfo": 22580188, + "PaymentType": "Credit Card" + }, + { + "Id": 3479, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2016-05-27T09:25:21", + "TransactionId": 12709017, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 790, + "CustomerInfo": 42078868, + "PaymentType": "Debit Card" + }, + { + "Id": 3480, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-06-05T15:40:28", + "TransactionId": 41763694, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 453, + "CustomerInfo": 11365218, + "PaymentType": "Credit Card" + }, + { + "Id": 3481, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-07-16T10:04:31", + "TransactionId": 79206794, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 390, + "CustomerInfo": 64336651, + "PaymentType": "Credit Card" + }, + { + "Id": 3482, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-07-03T09:46:48", + "TransactionId": 45016747, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 596, + "CustomerInfo": 803160, + "PaymentType": "Credit Card" + }, + { + "Id": 3483, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-09-14T09:44:47", + "TransactionId": 61952398, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 688, + "CustomerInfo": 28281397, + "PaymentType": "Cash" + }, + { + "Id": 3484, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-10-24T07:05:14", + "TransactionId": 56153283, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 313, + "CustomerInfo": 18729467, + "PaymentType": "Credit Card" + }, + { + "Id": 3485, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2017-01-26T11:01:41", + "TransactionId": 39462806, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 861, + "CustomerInfo": 8489594, + "PaymentType": "Cash" + }, + { + "Id": 3486, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2016-05-10T14:38:41", + "TransactionId": 51585245, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 660, + "CustomerInfo": 53952919, + "PaymentType": "Credit Card" + }, + { + "Id": 3487, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2016-07-26T07:39:39", + "TransactionId": 52815371, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 170, + "CustomerInfo": 15717521, + "PaymentType": "Credit Card" + }, + { + "Id": 3488, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2017-08-05T17:41:00", + "TransactionId": 99026187, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 267, + "CustomerInfo": 85587063, + "PaymentType": "Cash" + }, + { + "Id": 3489, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2017-02-24T09:36:09", + "TransactionId": 85545367, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 161, + "CustomerInfo": 9280908, + "PaymentType": "Debit Card" + }, + { + "Id": 3490, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2018-07-31T09:03:10", + "TransactionId": 38034838, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 597, + "CustomerInfo": 68736186, + "PaymentType": "Debit Card" + }, + { + "Id": 3491, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2017-02-11T12:04:45", + "TransactionId": 83694499, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 636, + "CustomerInfo": 49466377, + "PaymentType": "Cash" + }, + { + "Id": 3492, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2017-12-06T10:20:56", + "TransactionId": 72432641, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 341, + "CustomerInfo": 57718248, + "PaymentType": "Debit Card" + }, + { + "Id": 3493, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-09-23T19:27:07", + "TransactionId": 43295146, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 425, + "CustomerInfo": 95479087, + "PaymentType": "Cash" + }, + { + "Id": 3494, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-03-29T15:39:53", + "TransactionId": 41768721, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 889, + "CustomerInfo": 82426559, + "PaymentType": "Cash" + }, + { + "Id": 3495, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2017-03-15T11:53:14", + "TransactionId": 20711426, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 97, + "CustomerInfo": 34167835, + "PaymentType": "Debit Card" + }, + { + "Id": 3496, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-06-23T09:38:27", + "TransactionId": 52225261, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 994, + "CustomerInfo": 54045470, + "PaymentType": "Debit Card" + }, + { + "Id": 3497, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-07-30T19:34:54", + "TransactionId": 72552112, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 879, + "CustomerInfo": 98231505, + "PaymentType": "Credit Card" + }, + { + "Id": 3498, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-04-13T13:55:12", + "TransactionId": 61565545, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 283, + "CustomerInfo": 23787973, + "PaymentType": "Cash" + }, + { + "Id": 3499, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-01-15T19:46:51", + "TransactionId": 54705009, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 648, + "CustomerInfo": 62853901, + "PaymentType": "Debit Card" + }, + { + "Id": 3500, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2019-02-24T08:12:20", + "TransactionId": 19684863, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 260, + "CustomerInfo": 99799350, + "PaymentType": "Credit Card" + }, + { + "Id": 3501, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2016-11-26T19:21:39", + "TransactionId": 98012197, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 435, + "CustomerInfo": 37297554, + "PaymentType": "Cash" + }, + { + "Id": 3502, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-11-01T14:58:25", + "TransactionId": 44469698, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 514, + "CustomerInfo": 46288689, + "PaymentType": "Debit Card" + }, + { + "Id": 3503, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2016-11-07T09:51:59", + "TransactionId": 31330093, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 766, + "CustomerInfo": 53762217, + "PaymentType": "Cash" + }, + { + "Id": 3504, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-03-25T07:49:18", + "TransactionId": 38313091, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 75917947, + "PaymentType": "Credit Card" + }, + { + "Id": 3505, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-05-13T11:05:51", + "TransactionId": 43222304, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 275, + "CustomerInfo": 62255342, + "PaymentType": "Debit Card" + }, + { + "Id": 3506, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2016-06-09T08:03:33", + "TransactionId": 48553354, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 166, + "CustomerInfo": 18002031, + "PaymentType": "Credit Card" + }, + { + "Id": 3507, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2017-03-12T12:17:08", + "TransactionId": 36540408, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 752, + "CustomerInfo": 99792397, + "PaymentType": "Credit Card" + }, + { + "Id": 3508, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2018-10-14T14:21:16", + "TransactionId": 53512145, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 556, + "CustomerInfo": 79375281, + "PaymentType": "Debit Card" + }, + { + "Id": 3509, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-08-31T17:30:20", + "TransactionId": 60314777, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 567, + "CustomerInfo": 2075497, + "PaymentType": "Debit Card" + }, + { + "Id": 3510, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-11-12T15:21:10", + "TransactionId": 85569005, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 792, + "CustomerInfo": 41417968, + "PaymentType": "Debit Card" + }, + { + "Id": 3511, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2018-07-30T12:30:14", + "TransactionId": 8806984, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 556, + "CustomerInfo": 20020165, + "PaymentType": "Debit Card" + }, + { + "Id": 3512, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2019-02-08T11:53:14", + "TransactionId": 14556460, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 76, + "CustomerInfo": 91322671, + "PaymentType": "Credit Card" + }, + { + "Id": 3513, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2019-06-21T16:32:36", + "TransactionId": 40266061, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 42, + "CustomerInfo": 83412543, + "PaymentType": "Cash" + }, + { + "Id": 3514, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-12-07T07:42:49", + "TransactionId": 82925669, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 292, + "CustomerInfo": 55753502, + "PaymentType": "Cash" + }, + { + "Id": 3515, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2016-02-03T12:35:25", + "TransactionId": 91320411, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 620, + "CustomerInfo": 3386626, + "PaymentType": "Credit Card" + }, + { + "Id": 3516, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2016-02-08T18:42:20", + "TransactionId": 68688369, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 233, + "CustomerInfo": 80443428, + "PaymentType": "Credit Card" + }, + { + "Id": 3517, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-11-22T11:38:07", + "TransactionId": 56253851, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 868, + "CustomerInfo": 55624651, + "PaymentType": "Cash" + }, + { + "Id": 3518, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-05-11T09:15:16", + "TransactionId": 21222692, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 73420079, + "PaymentType": "Debit Card" + }, + { + "Id": 3519, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2019-11-27T17:38:24", + "TransactionId": 82192007, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 958, + "CustomerInfo": 35588719, + "PaymentType": "Cash" + }, + { + "Id": 3520, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2019-06-15T18:41:28", + "TransactionId": 91284298, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 841, + "CustomerInfo": 4753331, + "PaymentType": "Cash" + }, + { + "Id": 3521, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-09-24T11:56:41", + "TransactionId": 32401065, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 816, + "CustomerInfo": 54332474, + "PaymentType": "Cash" + }, + { + "Id": 3522, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2019-11-12T07:36:46", + "TransactionId": 59780972, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 81942045, + "PaymentType": "Cash" + }, + { + "Id": 3523, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2016-03-29T13:13:00", + "TransactionId": 34611149, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 317, + "CustomerInfo": 24827230, + "PaymentType": "Credit Card" + }, + { + "Id": 3524, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2017-05-30T07:40:13", + "TransactionId": 38358733, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 850, + "CustomerInfo": 18833921, + "PaymentType": "Credit Card" + }, + { + "Id": 3525, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-02-08T08:31:47", + "TransactionId": 83754552, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 728, + "CustomerInfo": 87224114, + "PaymentType": "Cash" + }, + { + "Id": 3526, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-04-23T13:41:48", + "TransactionId": 80579107, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 882, + "CustomerInfo": 33825905, + "PaymentType": "Cash" + }, + { + "Id": 3527, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2016-02-20T13:41:14", + "TransactionId": 68814224, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 59, + "CustomerInfo": 18897986, + "PaymentType": "Credit Card" + }, + { + "Id": 3528, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-07-18T10:42:49", + "TransactionId": 2028716, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 931, + "CustomerInfo": 81421757, + "PaymentType": "Cash" + }, + { + "Id": 3529, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-09-17T12:40:19", + "TransactionId": 28482949, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 417, + "CustomerInfo": 2909764, + "PaymentType": "Debit Card" + }, + { + "Id": 3530, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2017-04-10T08:09:27", + "TransactionId": 94889115, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 435, + "CustomerInfo": 95909135, + "PaymentType": "Debit Card" + }, + { + "Id": 3531, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-12-09T11:08:53", + "TransactionId": 6574692, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 105, + "CustomerInfo": 15007445, + "PaymentType": "Cash" + }, + { + "Id": 3532, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-09-10T08:00:49", + "TransactionId": 3010555, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 22, + "CustomerInfo": 40551717, + "PaymentType": "Credit Card" + }, + { + "Id": 3533, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2019-04-11T13:24:40", + "TransactionId": 66697661, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 892, + "CustomerInfo": 43714291, + "PaymentType": "Debit Card" + }, + { + "Id": 3534, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-08-14T13:00:20", + "TransactionId": 54946354, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 225, + "CustomerInfo": 28344391, + "PaymentType": "Credit Card" + }, + { + "Id": 3535, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-07-04T13:36:55", + "TransactionId": 89362089, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 293, + "CustomerInfo": 47801119, + "PaymentType": "Cash" + }, + { + "Id": 3536, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-12-21T19:18:55", + "TransactionId": 38499504, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 709, + "CustomerInfo": 94946161, + "PaymentType": "Credit Card" + }, + { + "Id": 3537, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-04-23T17:49:12", + "TransactionId": 77244133, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 701, + "CustomerInfo": 42133774, + "PaymentType": "Debit Card" + }, + { + "Id": 3538, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-10-10T09:12:40", + "TransactionId": 5464728, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 954, + "CustomerInfo": 80901772, + "PaymentType": "Cash" + }, + { + "Id": 3539, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2016-09-15T17:36:06", + "TransactionId": 69944535, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 201, + "CustomerInfo": 61977321, + "PaymentType": "Cash" + }, + { + "Id": 3540, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-09-13T18:03:10", + "TransactionId": 31344494, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 484, + "CustomerInfo": 40993517, + "PaymentType": "Cash" + }, + { + "Id": 3541, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-07-07T07:43:41", + "TransactionId": 27827192, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 965, + "CustomerInfo": 42949636, + "PaymentType": "Credit Card" + }, + { + "Id": 3542, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2018-09-10T07:03:56", + "TransactionId": 62028436, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 615, + "CustomerInfo": 78541591, + "PaymentType": "Credit Card" + }, + { + "Id": 3543, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-06-24T17:22:34", + "TransactionId": 49335284, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 136, + "CustomerInfo": 10516291, + "PaymentType": "Debit Card" + }, + { + "Id": 3544, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2018-05-02T08:15:04", + "TransactionId": 85755411, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 871, + "CustomerInfo": 75833384, + "PaymentType": "Debit Card" + }, + { + "Id": 3545, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-10-30T19:33:53", + "TransactionId": 50658043, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 550, + "CustomerInfo": 94660383, + "PaymentType": "Credit Card" + }, + { + "Id": 3546, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2017-03-04T19:32:44", + "TransactionId": 31870614, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 511, + "CustomerInfo": 20950424, + "PaymentType": "Cash" + }, + { + "Id": 3547, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2017-06-27T18:06:29", + "TransactionId": 97727679, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 747, + "CustomerInfo": 69948709, + "PaymentType": "Credit Card" + }, + { + "Id": 3548, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2016-03-13T18:13:32", + "TransactionId": 6269460, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 148, + "CustomerInfo": 24484342, + "PaymentType": "Debit Card" + }, + { + "Id": 3549, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-08-17T18:15:16", + "TransactionId": 23663370, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 850, + "CustomerInfo": 73756766, + "PaymentType": "Credit Card" + }, + { + "Id": 3550, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-09-26T08:36:40", + "TransactionId": 64831009, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 355, + "CustomerInfo": 34063074, + "PaymentType": "Credit Card" + }, + { + "Id": 3551, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-10-05T13:48:35", + "TransactionId": 68031715, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 310, + "CustomerInfo": 42019100, + "PaymentType": "Debit Card" + }, + { + "Id": 3552, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2017-06-14T16:41:57", + "TransactionId": 31609740, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 64, + "CustomerInfo": 76781534, + "PaymentType": "Credit Card" + }, + { + "Id": 3553, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2017-01-17T16:51:27", + "TransactionId": 54661487, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 392, + "CustomerInfo": 41051204, + "PaymentType": "Credit Card" + }, + { + "Id": 3554, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-04-05T07:51:53", + "TransactionId": 24816120, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 195, + "CustomerInfo": 95921402, + "PaymentType": "Credit Card" + }, + { + "Id": 3555, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2018-10-28T08:52:31", + "TransactionId": 55413911, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 826, + "CustomerInfo": 29893106, + "PaymentType": "Cash" + }, + { + "Id": 3556, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-05-03T10:54:20", + "TransactionId": 36457520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 926, + "CustomerInfo": 558896, + "PaymentType": "Debit Card" + }, + { + "Id": 3557, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2018-02-18T16:11:08", + "TransactionId": 47717958, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 743, + "CustomerInfo": 50787838, + "PaymentType": "Cash" + }, + { + "Id": 3558, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2017-01-28T16:00:37", + "TransactionId": 59453750, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 826, + "CustomerInfo": 24651395, + "PaymentType": "Cash" + }, + { + "Id": 3559, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2018-01-07T15:03:19", + "TransactionId": 14706889, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 850, + "CustomerInfo": 8515624, + "PaymentType": "Credit Card" + }, + { + "Id": 3560, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2016-10-01T13:40:22", + "TransactionId": 76556380, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 202, + "CustomerInfo": 6209992, + "PaymentType": "Credit Card" + }, + { + "Id": 3561, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-05-09T19:05:57", + "TransactionId": 50238292, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 197, + "CustomerInfo": 39609638, + "PaymentType": "Credit Card" + }, + { + "Id": 3562, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-10-08T07:00:55", + "TransactionId": 77488059, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 887, + "CustomerInfo": 86291895, + "PaymentType": "Credit Card" + }, + { + "Id": 3563, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-07-03T07:16:28", + "TransactionId": 95779723, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 419, + "CustomerInfo": 75590361, + "PaymentType": "Cash" + }, + { + "Id": 3564, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-09-24T07:38:30", + "TransactionId": 36364748, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 710, + "CustomerInfo": 238874, + "PaymentType": "Credit Card" + }, + { + "Id": 3565, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-12-25T07:10:42", + "TransactionId": 70941328, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 450, + "CustomerInfo": 13641889, + "PaymentType": "Cash" + }, + { + "Id": 3566, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-12-08T10:56:56", + "TransactionId": 91093185, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 128, + "CustomerInfo": 1743423, + "PaymentType": "Debit Card" + }, + { + "Id": 3567, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2017-09-15T09:49:32", + "TransactionId": 76441709, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 99, + "CustomerInfo": 97548831, + "PaymentType": "Cash" + }, + { + "Id": 3568, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-07-22T11:23:51", + "TransactionId": 95142232, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 453, + "CustomerInfo": 85942282, + "PaymentType": "Debit Card" + }, + { + "Id": 3569, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-07-17T16:28:08", + "TransactionId": 22213057, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 987, + "CustomerInfo": 47942804, + "PaymentType": "Debit Card" + }, + { + "Id": 3570, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-05-01T15:19:00", + "TransactionId": 72737323, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 256, + "CustomerInfo": 14517572, + "PaymentType": "Credit Card" + }, + { + "Id": 3571, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2018-12-09T19:09:59", + "TransactionId": 60865026, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 930, + "CustomerInfo": 59534930, + "PaymentType": "Credit Card" + }, + { + "Id": 3572, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-10-08T17:28:54", + "TransactionId": 77005073, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 117, + "CustomerInfo": 36075110, + "PaymentType": "Debit Card" + }, + { + "Id": 3573, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-03-22T07:28:08", + "TransactionId": 87340281, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 611, + "CustomerInfo": 68029504, + "PaymentType": "Cash" + }, + { + "Id": 3574, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-06-17T07:37:12", + "TransactionId": 59510845, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 577, + "CustomerInfo": 27432101, + "PaymentType": "Debit Card" + }, + { + "Id": 3575, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-06-13T08:26:53", + "TransactionId": 70963203, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 428, + "CustomerInfo": 57803386, + "PaymentType": "Credit Card" + }, + { + "Id": 3576, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2016-09-01T11:23:25", + "TransactionId": 96607618, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 280, + "CustomerInfo": 81011560, + "PaymentType": "Cash" + }, + { + "Id": 3577, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-03-30T12:13:58", + "TransactionId": 32298160, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 811, + "CustomerInfo": 38584992, + "PaymentType": "Debit Card" + }, + { + "Id": 3578, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-11-25T09:50:15", + "TransactionId": 9400489, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 641, + "CustomerInfo": 83757464, + "PaymentType": "Credit Card" + }, + { + "Id": 3579, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2017-04-13T11:30:20", + "TransactionId": 24579562, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 915, + "CustomerInfo": 51948862, + "PaymentType": "Debit Card" + }, + { + "Id": 3580, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2019-01-21T11:07:09", + "TransactionId": 37488556, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 183, + "CustomerInfo": 9027805, + "PaymentType": "Debit Card" + }, + { + "Id": 3581, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2017-02-15T11:01:32", + "TransactionId": 88570547, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 265, + "CustomerInfo": 96787890, + "PaymentType": "Credit Card" + }, + { + "Id": 3582, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2018-10-20T10:41:14", + "TransactionId": 73910547, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 676, + "CustomerInfo": 55037024, + "PaymentType": "Credit Card" + }, + { + "Id": 3583, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2016-08-30T13:21:04", + "TransactionId": 63928074, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 826, + "CustomerInfo": 40232980, + "PaymentType": "Cash" + }, + { + "Id": 3584, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2017-03-15T18:46:13", + "TransactionId": 5546327, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 73729255, + "PaymentType": "Credit Card" + }, + { + "Id": 3585, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2018-08-02T12:09:48", + "TransactionId": 54959038, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 629, + "CustomerInfo": 95293950, + "PaymentType": "Debit Card" + }, + { + "Id": 3586, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2018-03-13T16:10:08", + "TransactionId": 61476366, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 556, + "CustomerInfo": 97439117, + "PaymentType": "Credit Card" + }, + { + "Id": 3587, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2017-01-14T07:49:09", + "TransactionId": 49793396, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 529, + "CustomerInfo": 58710351, + "PaymentType": "Debit Card" + }, + { + "Id": 3588, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-03-15T18:06:29", + "TransactionId": 73006496, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 985, + "CustomerInfo": 61243634, + "PaymentType": "Debit Card" + }, + { + "Id": 3589, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-04-01T19:34:11", + "TransactionId": 39834535, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 688, + "CustomerInfo": 72085570, + "PaymentType": "Cash" + }, + { + "Id": 3590, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2016-01-28T09:24:29", + "TransactionId": 34296657, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 419, + "CustomerInfo": 85770628, + "PaymentType": "Cash" + }, + { + "Id": 3591, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2018-08-28T07:29:43", + "TransactionId": 78275470, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 558, + "CustomerInfo": 75601691, + "PaymentType": "Credit Card" + }, + { + "Id": 3592, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-04-06T10:15:27", + "TransactionId": 78328258, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 609, + "CustomerInfo": 73811371, + "PaymentType": "Credit Card" + }, + { + "Id": 3593, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-04-11T13:52:19", + "TransactionId": 20428147, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 482, + "CustomerInfo": 20009562, + "PaymentType": "Cash" + }, + { + "Id": 3594, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2017-08-11T12:50:41", + "TransactionId": 48373421, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 61, + "CustomerInfo": 97110910, + "PaymentType": "Debit Card" + }, + { + "Id": 3595, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2018-01-31T15:18:35", + "TransactionId": 64757338, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 511, + "CustomerInfo": 36215702, + "PaymentType": "Debit Card" + }, + { + "Id": 3596, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-08-12T13:15:36", + "TransactionId": 90575109, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 65, + "CustomerInfo": 8739257, + "PaymentType": "Debit Card" + }, + { + "Id": 3597, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2018-03-03T09:48:40", + "TransactionId": 29727192, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 278, + "CustomerInfo": 49224448, + "PaymentType": "Cash" + }, + { + "Id": 3598, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2017-02-02T17:29:20", + "TransactionId": 84047974, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 272, + "CustomerInfo": 92889693, + "PaymentType": "Debit Card" + }, + { + "Id": 3599, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-07-15T08:09:01", + "TransactionId": 62699902, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 739, + "CustomerInfo": 41322781, + "PaymentType": "Debit Card" + }, + { + "Id": 3600, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-04-25T13:43:24", + "TransactionId": 57455114, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 32, + "CustomerInfo": 69205512, + "PaymentType": "Cash" + }, + { + "Id": 3601, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-05-19T07:12:43", + "TransactionId": 31217545, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 654, + "CustomerInfo": 81504021, + "PaymentType": "Debit Card" + }, + { + "Id": 3602, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2016-01-28T15:50:50", + "TransactionId": 15451185, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 892, + "CustomerInfo": 65922120, + "PaymentType": "Credit Card" + }, + { + "Id": 3603, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-11-16T11:45:36", + "TransactionId": 90128967, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 24, + "CustomerInfo": 61864894, + "PaymentType": "Cash" + }, + { + "Id": 3604, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2016-01-28T08:09:10", + "TransactionId": 322519, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 880, + "CustomerInfo": 78048049, + "PaymentType": "Cash" + }, + { + "Id": 3605, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2019-10-27T11:47:02", + "TransactionId": 77299007, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 527, + "CustomerInfo": 51813246, + "PaymentType": "Debit Card" + }, + { + "Id": 3606, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2018-11-01T15:46:39", + "TransactionId": 4282281, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 826, + "CustomerInfo": 81191938, + "PaymentType": "Credit Card" + }, + { + "Id": 3607, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2016-07-20T15:32:15", + "TransactionId": 53814098, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 307, + "CustomerInfo": 85759467, + "PaymentType": "Debit Card" + }, + { + "Id": 3608, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2017-07-06T14:22:25", + "TransactionId": 2381565, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 576, + "CustomerInfo": 81457482, + "PaymentType": "Credit Card" + }, + { + "Id": 3609, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2018-11-11T14:53:40", + "TransactionId": 22056392, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 509, + "CustomerInfo": 15363258, + "PaymentType": "Credit Card" + }, + { + "Id": 3610, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-11-17T12:40:28", + "TransactionId": 78187003, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 197, + "CustomerInfo": 50558528, + "PaymentType": "Credit Card" + }, + { + "Id": 3611, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-03-28T14:59:17", + "TransactionId": 98182303, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 803, + "CustomerInfo": 14296798, + "PaymentType": "Debit Card" + }, + { + "Id": 3612, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-05-18T12:05:46", + "TransactionId": 73985655, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 526, + "CustomerInfo": 27900167, + "PaymentType": "Credit Card" + }, + { + "Id": 3613, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-05-22T18:29:31", + "TransactionId": 23557933, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 991, + "CustomerInfo": 12862010, + "PaymentType": "Cash" + }, + { + "Id": 3614, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-04-12T11:16:05", + "TransactionId": 21465293, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 220, + "CustomerInfo": 26336371, + "PaymentType": "Cash" + }, + { + "Id": 3615, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2018-09-17T10:00:46", + "TransactionId": 36468683, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 16, + "CustomerInfo": 59570589, + "PaymentType": "Credit Card" + }, + { + "Id": 3616, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-07-27T16:20:56", + "TransactionId": 93404441, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 89092133, + "PaymentType": "Debit Card" + }, + { + "Id": 3617, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2018-07-07T13:02:30", + "TransactionId": 51777259, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 878, + "CustomerInfo": 18823191, + "PaymentType": "Cash" + }, + { + "Id": 3618, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2016-04-01T09:53:34", + "TransactionId": 42645043, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 609, + "CustomerInfo": 19744728, + "PaymentType": "Cash" + }, + { + "Id": 3619, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2016-06-01T17:41:00", + "TransactionId": 84846810, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 842, + "CustomerInfo": 86445778, + "PaymentType": "Debit Card" + }, + { + "Id": 3620, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2018-08-29T08:19:58", + "TransactionId": 41556796, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 627, + "CustomerInfo": 94758923, + "PaymentType": "Cash" + }, + { + "Id": 3621, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2017-10-25T09:33:50", + "TransactionId": 35365617, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 864, + "CustomerInfo": 77846877, + "PaymentType": "Credit Card" + }, + { + "Id": 3622, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-04-20T13:45:50", + "TransactionId": 60529624, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 453, + "CustomerInfo": 16191261, + "PaymentType": "Debit Card" + }, + { + "Id": 3623, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2017-06-16T14:50:38", + "TransactionId": 5901974, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 293, + "CustomerInfo": 43790113, + "PaymentType": "Cash" + }, + { + "Id": 3624, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-01-17T11:48:29", + "TransactionId": 83281100, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 26, + "CustomerInfo": 94586984, + "PaymentType": "Debit Card" + }, + { + "Id": 3625, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2018-04-24T14:11:46", + "TransactionId": 22136901, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 527, + "CustomerInfo": 9131688, + "PaymentType": "Cash" + }, + { + "Id": 3626, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2016-03-18T07:50:36", + "TransactionId": 11197653, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 797, + "CustomerInfo": 63078071, + "PaymentType": "Credit Card" + }, + { + "Id": 3627, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-06-30T10:45:42", + "TransactionId": 21221796, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 81882039, + "PaymentType": "Credit Card" + }, + { + "Id": 3628, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2019-02-21T12:31:15", + "TransactionId": 41430018, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 856, + "CustomerInfo": 84368524, + "PaymentType": "Credit Card" + }, + { + "Id": 3629, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2018-01-14T17:30:03", + "TransactionId": 43791590, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 505, + "CustomerInfo": 5301232, + "PaymentType": "Cash" + }, + { + "Id": 3630, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-11-25T13:24:23", + "TransactionId": 66072693, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 233, + "CustomerInfo": 79991978, + "PaymentType": "Credit Card" + }, + { + "Id": 3631, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-07-22T07:22:39", + "TransactionId": 81510472, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 239, + "CustomerInfo": 37660141, + "PaymentType": "Credit Card" + }, + { + "Id": 3632, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-11-07T17:31:03", + "TransactionId": 62567274, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 203, + "CustomerInfo": 72035629, + "PaymentType": "Debit Card" + }, + { + "Id": 3633, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2017-04-24T19:08:41", + "TransactionId": 84335344, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 537, + "CustomerInfo": 21295407, + "PaymentType": "Debit Card" + }, + { + "Id": 3634, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-03-27T09:25:03", + "TransactionId": 28004092, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 713, + "CustomerInfo": 31986031, + "PaymentType": "Cash" + }, + { + "Id": 3635, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2018-02-21T14:49:12", + "TransactionId": 64113850, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 275, + "CustomerInfo": 53461791, + "PaymentType": "Debit Card" + }, + { + "Id": 3636, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-04-21T17:35:57", + "TransactionId": 29243586, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 363, + "CustomerInfo": 31758490, + "PaymentType": "Cash" + }, + { + "Id": 3637, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-01-26T12:57:45", + "TransactionId": 70467934, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 799, + "CustomerInfo": 96993157, + "PaymentType": "Debit Card" + }, + { + "Id": 3638, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-07-29T16:51:36", + "TransactionId": 43218606, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 366, + "CustomerInfo": 59579551, + "PaymentType": "Credit Card" + }, + { + "Id": 3639, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2016-10-25T09:16:25", + "TransactionId": 22797195, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 306, + "CustomerInfo": 34843865, + "PaymentType": "Cash" + }, + { + "Id": 3640, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-01-17T15:57:36", + "TransactionId": 50429659, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 709, + "CustomerInfo": 6120562, + "PaymentType": "Cash" + }, + { + "Id": 3641, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2016-10-07T13:50:53", + "TransactionId": 38154077, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 43, + "CustomerInfo": 87366078, + "PaymentType": "Debit Card" + }, + { + "Id": 3642, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-08-26T15:09:48", + "TransactionId": 88196692, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 911, + "CustomerInfo": 83619112, + "PaymentType": "Credit Card" + }, + { + "Id": 3643, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2017-09-14T16:26:24", + "TransactionId": 59140865, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 802, + "CustomerInfo": 71267690, + "PaymentType": "Cash" + }, + { + "Id": 3644, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2019-01-30T12:36:52", + "TransactionId": 57863755, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 642, + "CustomerInfo": 78008992, + "PaymentType": "Debit Card" + }, + { + "Id": 3645, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-01-27T11:50:30", + "TransactionId": 70627203, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 740, + "CustomerInfo": 77952407, + "PaymentType": "Credit Card" + }, + { + "Id": 3646, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2018-07-09T14:37:49", + "TransactionId": 63038648, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 337, + "CustomerInfo": 6963819, + "PaymentType": "Credit Card" + }, + { + "Id": 3647, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-02-01T15:07:03", + "TransactionId": 22409123, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 4, + "CustomerInfo": 91337219, + "PaymentType": "Debit Card" + }, + { + "Id": 3648, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-10-28T08:36:58", + "TransactionId": 91590013, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 167, + "CustomerInfo": 66587752, + "PaymentType": "Debit Card" + }, + { + "Id": 3649, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-02-26T12:32:33", + "TransactionId": 1605087, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 36, + "CustomerInfo": 96635447, + "PaymentType": "Debit Card" + }, + { + "Id": 3650, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-12-19T12:08:04", + "TransactionId": 12101861, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 55, + "CustomerInfo": 44136647, + "PaymentType": "Debit Card" + }, + { + "Id": 3651, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-05-31T18:10:22", + "TransactionId": 2797864, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 823, + "CustomerInfo": 41911432, + "PaymentType": "Credit Card" + }, + { + "Id": 3652, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2019-05-04T12:20:01", + "TransactionId": 77556936, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 364, + "CustomerInfo": 91094994, + "PaymentType": "Debit Card" + }, + { + "Id": 3653, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-04-16T19:56:47", + "TransactionId": 4065321, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 71, + "CustomerInfo": 14245342, + "PaymentType": "Cash" + }, + { + "Id": 3654, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-03-16T08:21:42", + "TransactionId": 69004193, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 425, + "CustomerInfo": 80569278, + "PaymentType": "Cash" + }, + { + "Id": 3655, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2018-11-14T14:14:56", + "TransactionId": 13093932, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 852, + "CustomerInfo": 43038198, + "PaymentType": "Credit Card" + }, + { + "Id": 3656, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2017-03-04T10:28:34", + "TransactionId": 35967004, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 596, + "CustomerInfo": 90734873, + "PaymentType": "Credit Card" + }, + { + "Id": 3657, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-04-24T14:29:11", + "TransactionId": 2486937, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 420, + "CustomerInfo": 65449837, + "PaymentType": "Debit Card" + }, + { + "Id": 3658, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-06-09T10:31:09", + "TransactionId": 60474736, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 258, + "CustomerInfo": 40640503, + "PaymentType": "Credit Card" + }, + { + "Id": 3659, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2018-02-12T18:44:21", + "TransactionId": 41150471, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 525, + "CustomerInfo": 57232400, + "PaymentType": "Cash" + }, + { + "Id": 3660, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2017-03-16T07:13:35", + "TransactionId": 15913809, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 573, + "CustomerInfo": 20072495, + "PaymentType": "Credit Card" + }, + { + "Id": 3661, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-11-14T08:42:52", + "TransactionId": 92627393, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 499, + "CustomerInfo": 54149419, + "PaymentType": "Cash" + }, + { + "Id": 3662, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2016-05-21T10:40:05", + "TransactionId": 3647530, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 105, + "CustomerInfo": 59054421, + "PaymentType": "Debit Card" + }, + { + "Id": 3663, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-01-15T11:46:28", + "TransactionId": 29131069, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 69, + "CustomerInfo": 66755343, + "PaymentType": "Credit Card" + }, + { + "Id": 3664, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-01-05T08:49:29", + "TransactionId": 65498838, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 595, + "CustomerInfo": 70573491, + "PaymentType": "Credit Card" + }, + { + "Id": 3665, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-04-18T16:25:32", + "TransactionId": 35112330, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 60631232, + "PaymentType": "Debit Card" + }, + { + "Id": 3666, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2017-10-10T13:41:23", + "TransactionId": 74313222, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 18, + "CustomerInfo": 26098809, + "PaymentType": "Debit Card" + }, + { + "Id": 3667, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2017-09-05T10:17:28", + "TransactionId": 62910611, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 487, + "CustomerInfo": 49747810, + "PaymentType": "Credit Card" + }, + { + "Id": 3668, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2019-01-28T11:35:05", + "TransactionId": 15959292, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 567, + "CustomerInfo": 97830368, + "PaymentType": "Debit Card" + }, + { + "Id": 3669, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-10-10T18:33:59", + "TransactionId": 83126116, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 700, + "CustomerInfo": 38490922, + "PaymentType": "Debit Card" + }, + { + "Id": 3670, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-12-31T19:28:34", + "TransactionId": 50399980, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 563, + "CustomerInfo": 23146223, + "PaymentType": "Cash" + }, + { + "Id": 3671, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-09-12T17:07:18", + "TransactionId": 71359930, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 234, + "CustomerInfo": 32589332, + "PaymentType": "Credit Card" + }, + { + "Id": 3672, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-05-09T10:43:32", + "TransactionId": 50802734, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 81, + "CustomerInfo": 40684391, + "PaymentType": "Credit Card" + }, + { + "Id": 3673, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2019-03-06T10:58:48", + "TransactionId": 30803962, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 773, + "CustomerInfo": 42971042, + "PaymentType": "Cash" + }, + { + "Id": 3674, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-12-25T09:24:55", + "TransactionId": 37902315, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 285, + "CustomerInfo": 50213969, + "PaymentType": "Cash" + }, + { + "Id": 3675, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2019-03-07T17:31:55", + "TransactionId": 17415479, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 503, + "CustomerInfo": 62928696, + "PaymentType": "Credit Card" + }, + { + "Id": 3676, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-10-17T14:58:42", + "TransactionId": 59153769, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 885, + "CustomerInfo": 33303494, + "PaymentType": "Credit Card" + }, + { + "Id": 3677, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2016-08-23T17:44:53", + "TransactionId": 73308186, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 212, + "CustomerInfo": 98400580, + "PaymentType": "Credit Card" + }, + { + "Id": 3678, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-09-27T12:50:15", + "TransactionId": 31760029, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 750, + "CustomerInfo": 7991895, + "PaymentType": "Debit Card" + }, + { + "Id": 3679, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2017-04-13T10:22:31", + "TransactionId": 37351172, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 151, + "CustomerInfo": 63826035, + "PaymentType": "Credit Card" + }, + { + "Id": 3680, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2017-10-06T19:51:45", + "TransactionId": 46831507, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 19, + "CustomerInfo": 46096105, + "PaymentType": "Debit Card" + }, + { + "Id": 3681, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-08-18T07:21:04", + "TransactionId": 85077605, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 410, + "CustomerInfo": 94916450, + "PaymentType": "Debit Card" + }, + { + "Id": 3682, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2016-06-03T09:27:56", + "TransactionId": 16104747, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 566, + "CustomerInfo": 77713571, + "PaymentType": "Debit Card" + }, + { + "Id": 3683, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-05-24T08:07:44", + "TransactionId": 41517198, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 603, + "CustomerInfo": 38300674, + "PaymentType": "Credit Card" + }, + { + "Id": 3684, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2019-05-26T07:37:38", + "TransactionId": 2966420, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 361, + "CustomerInfo": 72574676, + "PaymentType": "Debit Card" + }, + { + "Id": 3685, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2017-02-08T11:56:24", + "TransactionId": 5109241, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 331, + "CustomerInfo": 79923475, + "PaymentType": "Cash" + }, + { + "Id": 3686, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2017-01-24T08:06:09", + "TransactionId": 85283273, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 187, + "CustomerInfo": 50999469, + "PaymentType": "Debit Card" + }, + { + "Id": 3687, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2019-09-10T07:06:40", + "TransactionId": 17641238, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 246, + "CustomerInfo": 28972349, + "PaymentType": "Debit Card" + }, + { + "Id": 3688, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-03-16T12:20:53", + "TransactionId": 31446726, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 112, + "CustomerInfo": 32236652, + "PaymentType": "Cash" + }, + { + "Id": 3689, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-08-09T13:41:05", + "TransactionId": 80855674, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 68, + "CustomerInfo": 57803797, + "PaymentType": "Cash" + }, + { + "Id": 3690, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-01-02T09:39:45", + "TransactionId": 35667411, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 706, + "CustomerInfo": 99906791, + "PaymentType": "Credit Card" + }, + { + "Id": 3691, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2018-09-17T14:27:19", + "TransactionId": 17065771, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 899, + "CustomerInfo": 29063985, + "PaymentType": "Cash" + }, + { + "Id": 3692, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-10-07T12:41:20", + "TransactionId": 88330100, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 821, + "CustomerInfo": 15438642, + "PaymentType": "Cash" + }, + { + "Id": 3693, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2018-01-22T17:07:26", + "TransactionId": 67654749, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 503, + "CustomerInfo": 53987553, + "PaymentType": "Cash" + }, + { + "Id": 3694, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2018-07-03T15:16:16", + "TransactionId": 64347302, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 69, + "CustomerInfo": 93899248, + "PaymentType": "Debit Card" + }, + { + "Id": 3695, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-02-15T14:49:21", + "TransactionId": 11681872, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 915, + "CustomerInfo": 21345389, + "PaymentType": "Cash" + }, + { + "Id": 3696, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-06-25T16:56:30", + "TransactionId": 43871589, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 986, + "CustomerInfo": 11938066, + "PaymentType": "Debit Card" + }, + { + "Id": 3697, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2017-08-27T15:28:13", + "TransactionId": 70086373, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 743, + "CustomerInfo": 37386291, + "PaymentType": "Debit Card" + }, + { + "Id": 3698, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-12-24T12:10:13", + "TransactionId": 44585775, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 39, + "CustomerInfo": 85143296, + "PaymentType": "Credit Card" + }, + { + "Id": 3699, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-09-10T07:13:00", + "TransactionId": 5596725, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 581, + "CustomerInfo": 12596709, + "PaymentType": "Cash" + }, + { + "Id": 3700, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-06-06T13:45:50", + "TransactionId": 86943828, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 129, + "CustomerInfo": 84597408, + "PaymentType": "Cash" + }, + { + "Id": 3701, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-08-03T09:28:13", + "TransactionId": 35430834, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 201, + "CustomerInfo": 66686076, + "PaymentType": "Credit Card" + }, + { + "Id": 3702, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-04-02T15:45:13", + "TransactionId": 52569479, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 656, + "CustomerInfo": 13779180, + "PaymentType": "Credit Card" + }, + { + "Id": 3703, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-03-19T16:28:25", + "TransactionId": 28657974, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 323, + "CustomerInfo": 95032421, + "PaymentType": "Debit Card" + }, + { + "Id": 3704, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-01-28T09:28:05", + "TransactionId": 89828441, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 276, + "CustomerInfo": 92762594, + "PaymentType": "Cash" + }, + { + "Id": 3705, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-06-03T17:01:15", + "TransactionId": 86295227, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 7, + "CustomerInfo": 25589416, + "PaymentType": "Debit Card" + }, + { + "Id": 3706, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2019-12-27T17:48:46", + "TransactionId": 63231390, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 649, + "CustomerInfo": 22630001, + "PaymentType": "Debit Card" + }, + { + "Id": 3707, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-04-06T11:13:12", + "TransactionId": 55541786, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 54, + "CustomerInfo": 67856356, + "PaymentType": "Credit Card" + }, + { + "Id": 3708, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2017-08-06T13:10:16", + "TransactionId": 61234758, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 608, + "CustomerInfo": 35242379, + "PaymentType": "Credit Card" + }, + { + "Id": 3709, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2018-01-27T09:56:10", + "TransactionId": 21347885, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 36, + "CustomerInfo": 74962410, + "PaymentType": "Credit Card" + }, + { + "Id": 3710, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2016-10-29T07:18:03", + "TransactionId": 95241585, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 731, + "CustomerInfo": 39014196, + "PaymentType": "Credit Card" + }, + { + "Id": 3711, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2017-05-24T12:58:02", + "TransactionId": 75026765, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 919, + "CustomerInfo": 13990926, + "PaymentType": "Credit Card" + }, + { + "Id": 3712, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-12-27T11:09:36", + "TransactionId": 61696256, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 901, + "CustomerInfo": 85362399, + "PaymentType": "Debit Card" + }, + { + "Id": 3713, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2018-12-04T13:54:29", + "TransactionId": 76079055, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 438, + "CustomerInfo": 32389469, + "PaymentType": "Debit Card" + }, + { + "Id": 3714, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-06-21T09:09:56", + "TransactionId": 66206354, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 155, + "CustomerInfo": 60095292, + "PaymentType": "Cash" + }, + { + "Id": 3715, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2017-02-19T14:27:19", + "TransactionId": 39579204, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 696, + "CustomerInfo": 59087930, + "PaymentType": "Cash" + }, + { + "Id": 3716, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2018-08-24T19:22:13", + "TransactionId": 95203055, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 800, + "CustomerInfo": 84554933, + "PaymentType": "Credit Card" + }, + { + "Id": 3717, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-09-13T09:45:13", + "TransactionId": 12073945, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 358, + "CustomerInfo": 97435479, + "PaymentType": "Cash" + }, + { + "Id": 3718, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-12-30T13:06:06", + "TransactionId": 94420205, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 107, + "CustomerInfo": 88154228, + "PaymentType": "Cash" + }, + { + "Id": 3719, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-12-06T08:16:48", + "TransactionId": 3169595, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 247, + "CustomerInfo": 46598213, + "PaymentType": "Credit Card" + }, + { + "Id": 3720, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2018-02-19T15:35:43", + "TransactionId": 92017431, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 634, + "CustomerInfo": 6024678, + "PaymentType": "Credit Card" + }, + { + "Id": 3721, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2019-07-24T15:44:56", + "TransactionId": 38047517, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 165, + "CustomerInfo": 55849154, + "PaymentType": "Cash" + }, + { + "Id": 3722, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-10-01T18:11:05", + "TransactionId": 43171063, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 967, + "CustomerInfo": 56364574, + "PaymentType": "Debit Card" + }, + { + "Id": 3723, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-10-16T12:26:47", + "TransactionId": 35612066, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 819, + "CustomerInfo": 76110786, + "PaymentType": "Credit Card" + }, + { + "Id": 3724, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2019-10-26T17:28:45", + "TransactionId": 6874833, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 176, + "CustomerInfo": 69230681, + "PaymentType": "Debit Card" + }, + { + "Id": 3725, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-03-18T08:09:45", + "TransactionId": 27548976, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 995, + "CustomerInfo": 45778606, + "PaymentType": "Credit Card" + }, + { + "Id": 3726, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-07-29T09:30:58", + "TransactionId": 84019842, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 477, + "CustomerInfo": 97935580, + "PaymentType": "Credit Card" + }, + { + "Id": 3727, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2018-05-10T11:12:55", + "TransactionId": 22954849, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 608, + "CustomerInfo": 24498398, + "PaymentType": "Credit Card" + }, + { + "Id": 3728, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-11-25T15:12:58", + "TransactionId": 31658004, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 143, + "CustomerInfo": 52221716, + "PaymentType": "Debit Card" + }, + { + "Id": 3729, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-04-06T18:16:25", + "TransactionId": 48436568, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 765, + "CustomerInfo": 51307522, + "PaymentType": "Debit Card" + }, + { + "Id": 3730, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2016-10-15T10:23:31", + "TransactionId": 18087207, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 728, + "CustomerInfo": 1284146, + "PaymentType": "Cash" + }, + { + "Id": 3731, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-08-05T11:14:56", + "TransactionId": 87244214, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 224, + "CustomerInfo": 84863184, + "PaymentType": "Credit Card" + }, + { + "Id": 3732, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-02-17T19:24:14", + "TransactionId": 19372227, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 972, + "CustomerInfo": 62515787, + "PaymentType": "Cash" + }, + { + "Id": 3733, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-02-10T07:32:53", + "TransactionId": 63931122, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 521, + "CustomerInfo": 88366077, + "PaymentType": "Cash" + }, + { + "Id": 3734, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-03-19T16:35:54", + "TransactionId": 75964405, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 561, + "CustomerInfo": 84043934, + "PaymentType": "Debit Card" + }, + { + "Id": 3735, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-09-29T12:57:53", + "TransactionId": 59253898, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 949, + "CustomerInfo": 90872759, + "PaymentType": "Cash" + }, + { + "Id": 3736, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-04-04T12:13:06", + "TransactionId": 75253035, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 838, + "CustomerInfo": 21014801, + "PaymentType": "Cash" + }, + { + "Id": 3737, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-09-24T12:04:54", + "TransactionId": 15639804, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 31, + "CustomerInfo": 74192952, + "PaymentType": "Debit Card" + }, + { + "Id": 3738, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2017-12-10T14:25:00", + "TransactionId": 708091, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 952, + "CustomerInfo": 76238541, + "PaymentType": "Credit Card" + }, + { + "Id": 3739, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2017-04-09T11:30:20", + "TransactionId": 23780428, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 638, + "CustomerInfo": 19308081, + "PaymentType": "Debit Card" + }, + { + "Id": 3740, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2017-04-14T07:47:43", + "TransactionId": 90515299, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 759, + "CustomerInfo": 2245657, + "PaymentType": "Credit Card" + }, + { + "Id": 3741, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2017-08-13T08:51:04", + "TransactionId": 49738978, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 28428279, + "PaymentType": "Credit Card" + }, + { + "Id": 3742, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2019-05-29T19:44:50", + "TransactionId": 98161441, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 38117578, + "PaymentType": "Cash" + }, + { + "Id": 3743, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2018-11-02T17:46:45", + "TransactionId": 94595348, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 606, + "CustomerInfo": 77246877, + "PaymentType": "Credit Card" + }, + { + "Id": 3744, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2016-08-26T07:20:04", + "TransactionId": 40840340, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 22866309, + "PaymentType": "Debit Card" + }, + { + "Id": 3745, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2016-07-17T12:55:52", + "TransactionId": 8439457, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 879, + "CustomerInfo": 28202671, + "PaymentType": "Credit Card" + }, + { + "Id": 3746, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2017-05-21T07:14:01", + "TransactionId": 7956078, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 586, + "CustomerInfo": 86981100, + "PaymentType": "Credit Card" + }, + { + "Id": 3747, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-05-30T08:19:32", + "TransactionId": 7061337, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 119, + "CustomerInfo": 94884447, + "PaymentType": "Cash" + }, + { + "Id": 3748, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2018-11-30T10:35:20", + "TransactionId": 92322097, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 762, + "CustomerInfo": 74792452, + "PaymentType": "Debit Card" + }, + { + "Id": 3749, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2019-02-19T15:37:52", + "TransactionId": 39259621, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 960, + "CustomerInfo": 63583257, + "PaymentType": "Cash" + }, + { + "Id": 3750, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2017-08-23T08:30:12", + "TransactionId": 66794931, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 61, + "CustomerInfo": 24215459, + "PaymentType": "Debit Card" + }, + { + "Id": 3751, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-03-15T17:59:34", + "TransactionId": 95723308, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 270, + "CustomerInfo": 63447170, + "PaymentType": "Credit Card" + }, + { + "Id": 3752, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2018-07-19T08:55:41", + "TransactionId": 66044302, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 632, + "CustomerInfo": 78670492, + "PaymentType": "Cash" + }, + { + "Id": 3753, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2017-11-18T18:38:44", + "TransactionId": 87061487, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 540, + "CustomerInfo": 95043902, + "PaymentType": "Debit Card" + }, + { + "Id": 3754, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-10-21T08:34:48", + "TransactionId": 76071145, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 688, + "CustomerInfo": 45875203, + "PaymentType": "Cash" + }, + { + "Id": 3755, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2017-01-04T14:56:33", + "TransactionId": 5063528, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 69, + "CustomerInfo": 84334857, + "PaymentType": "Credit Card" + }, + { + "Id": 3756, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2019-06-20T16:33:19", + "TransactionId": 11019439, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 612, + "CustomerInfo": 12055310, + "PaymentType": "Debit Card" + }, + { + "Id": 3757, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2017-04-19T10:09:59", + "TransactionId": 36454346, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 924, + "CustomerInfo": 31901514, + "PaymentType": "Debit Card" + }, + { + "Id": 3758, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-07-28T14:24:52", + "TransactionId": 18595696, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 811, + "CustomerInfo": 87869217, + "PaymentType": "Credit Card" + }, + { + "Id": 3759, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2016-07-14T13:57:22", + "TransactionId": 10917806, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 592, + "CustomerInfo": 53108534, + "PaymentType": "Credit Card" + }, + { + "Id": 3760, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-04-24T19:52:19", + "TransactionId": 73730156, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 948, + "CustomerInfo": 31869966, + "PaymentType": "Cash" + }, + { + "Id": 3761, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-10-24T17:29:02", + "TransactionId": 58371815, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 562, + "CustomerInfo": 52154930, + "PaymentType": "Debit Card" + }, + { + "Id": 3762, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-08-12T17:22:42", + "TransactionId": 79476405, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 370, + "CustomerInfo": 98481652, + "PaymentType": "Debit Card" + }, + { + "Id": 3763, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2017-03-13T19:06:40", + "TransactionId": 48574759, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 864, + "CustomerInfo": 11335220, + "PaymentType": "Debit Card" + }, + { + "Id": 3764, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2019-01-10T11:24:09", + "TransactionId": 42295654, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 91, + "CustomerInfo": 41359442, + "PaymentType": "Cash" + }, + { + "Id": 3765, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2017-11-15T18:52:25", + "TransactionId": 13243046, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 326, + "CustomerInfo": 30398802, + "PaymentType": "Credit Card" + }, + { + "Id": 3766, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-10-22T18:35:51", + "TransactionId": 16806801, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 856, + "CustomerInfo": 76147347, + "PaymentType": "Credit Card" + }, + { + "Id": 3767, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2018-11-19T10:09:33", + "TransactionId": 37115115, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 898, + "CustomerInfo": 72460077, + "PaymentType": "Cash" + }, + { + "Id": 3768, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2017-02-03T08:32:47", + "TransactionId": 61258606, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 689, + "CustomerInfo": 13441021, + "PaymentType": "Cash" + }, + { + "Id": 3769, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-05-23T16:03:56", + "TransactionId": 10840332, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 740, + "CustomerInfo": 63547974, + "PaymentType": "Debit Card" + }, + { + "Id": 3770, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2019-03-02T17:00:40", + "TransactionId": 80338902, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 102, + "CustomerInfo": 62445997, + "PaymentType": "Credit Card" + }, + { + "Id": 3771, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2018-02-02T17:18:58", + "TransactionId": 26630665, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 821, + "CustomerInfo": 12995368, + "PaymentType": "Debit Card" + }, + { + "Id": 3772, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2016-07-26T17:47:11", + "TransactionId": 95860185, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 923, + "CustomerInfo": 99406126, + "PaymentType": "Credit Card" + }, + { + "Id": 3773, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2016-07-01T15:46:13", + "TransactionId": 34797675, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 778, + "CustomerInfo": 91586757, + "PaymentType": "Credit Card" + }, + { + "Id": 3774, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2016-09-15T09:59:02", + "TransactionId": 77523456, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 193, + "CustomerInfo": 79440707, + "PaymentType": "Credit Card" + }, + { + "Id": 3775, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2017-02-05T16:37:03", + "TransactionId": 88997760, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 206, + "CustomerInfo": 17920253, + "PaymentType": "Credit Card" + }, + { + "Id": 3776, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2017-07-01T07:06:32", + "TransactionId": 46318900, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 633, + "CustomerInfo": 34174715, + "PaymentType": "Debit Card" + }, + { + "Id": 3777, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2018-10-04T10:11:25", + "TransactionId": 3333159, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 104, + "CustomerInfo": 90453066, + "PaymentType": "Credit Card" + }, + { + "Id": 3778, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2019-04-14T15:12:23", + "TransactionId": 9922755, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 909, + "CustomerInfo": 56466992, + "PaymentType": "Credit Card" + }, + { + "Id": 3779, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-04-20T10:41:14", + "TransactionId": 33787395, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 358, + "CustomerInfo": 78553133, + "PaymentType": "Cash" + }, + { + "Id": 3780, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2016-01-24T18:36:43", + "TransactionId": 698847, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 144, + "CustomerInfo": 57648274, + "PaymentType": "Credit Card" + }, + { + "Id": 3781, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-05-17T13:47:34", + "TransactionId": 42493604, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 259, + "CustomerInfo": 89649346, + "PaymentType": "Cash" + }, + { + "Id": 3782, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-05-07T16:36:12", + "TransactionId": 55188474, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 874, + "CustomerInfo": 61750535, + "PaymentType": "Debit Card" + }, + { + "Id": 3783, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-10-18T19:26:50", + "TransactionId": 27857096, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 88716550, + "PaymentType": "Cash" + }, + { + "Id": 3784, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2016-02-10T09:56:27", + "TransactionId": 38735493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 116, + "CustomerInfo": 52637584, + "PaymentType": "Debit Card" + }, + { + "Id": 3785, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2019-12-08T07:59:57", + "TransactionId": 47427088, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 263, + "CustomerInfo": 34363615, + "PaymentType": "Cash" + }, + { + "Id": 3786, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2017-01-25T08:57:33", + "TransactionId": 90590980, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 419, + "CustomerInfo": 82672659, + "PaymentType": "Debit Card" + }, + { + "Id": 3787, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-03-19T17:33:13", + "TransactionId": 90154327, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 59507802, + "PaymentType": "Credit Card" + }, + { + "Id": 3788, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-01-20T16:01:03", + "TransactionId": 45951500, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 420, + "CustomerInfo": 88942970, + "PaymentType": "Cash" + }, + { + "Id": 3789, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-09-28T07:46:42", + "TransactionId": 17506009, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 254, + "CustomerInfo": 17212291, + "PaymentType": "Cash" + }, + { + "Id": 3790, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-06-13T11:47:28", + "TransactionId": 10584219, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 779, + "CustomerInfo": 73773164, + "PaymentType": "Cash" + }, + { + "Id": 3791, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-03-10T14:07:52", + "TransactionId": 49059526, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 146, + "CustomerInfo": 82388754, + "PaymentType": "Credit Card" + }, + { + "Id": 3792, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2016-04-20T08:36:58", + "TransactionId": 47855504, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 764, + "CustomerInfo": 63273216, + "PaymentType": "Cash" + }, + { + "Id": 3793, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-09-29T07:27:33", + "TransactionId": 57886705, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 83, + "CustomerInfo": 13424198, + "PaymentType": "Cash" + }, + { + "Id": 3794, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2017-07-21T07:12:26", + "TransactionId": 14749962, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 184, + "CustomerInfo": 23267421, + "PaymentType": "Cash" + }, + { + "Id": 3795, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-08-28T08:01:49", + "TransactionId": 45483417, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 304, + "CustomerInfo": 15432383, + "PaymentType": "Cash" + }, + { + "Id": 3796, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-07-26T11:32:47", + "TransactionId": 50461196, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 857, + "CustomerInfo": 40790994, + "PaymentType": "Debit Card" + }, + { + "Id": 3797, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2018-10-01T09:07:21", + "TransactionId": 27462791, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 354, + "CustomerInfo": 8771538, + "PaymentType": "Credit Card" + }, + { + "Id": 3798, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-09-25T11:53:23", + "TransactionId": 58290306, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 719, + "CustomerInfo": 23167893, + "PaymentType": "Credit Card" + }, + { + "Id": 3799, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2019-02-01T07:14:18", + "TransactionId": 11872188, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 761, + "CustomerInfo": 47256534, + "PaymentType": "Cash" + }, + { + "Id": 3800, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2017-05-17T08:53:31", + "TransactionId": 86464859, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 584, + "CustomerInfo": 4260735, + "PaymentType": "Debit Card" + }, + { + "Id": 3801, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-04-28T09:38:18", + "TransactionId": 24137247, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 407, + "CustomerInfo": 56289357, + "PaymentType": "Credit Card" + }, + { + "Id": 3802, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2018-01-27T15:45:48", + "TransactionId": 63204613, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 721, + "CustomerInfo": 84876788, + "PaymentType": "Debit Card" + }, + { + "Id": 3803, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-04-06T13:25:49", + "TransactionId": 93478675, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 625, + "CustomerInfo": 85667588, + "PaymentType": "Credit Card" + }, + { + "Id": 3804, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-03-16T11:46:45", + "TransactionId": 38179897, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 640, + "CustomerInfo": 64879653, + "PaymentType": "Credit Card" + }, + { + "Id": 3805, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-04-12T09:07:47", + "TransactionId": 67061431, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 366, + "CustomerInfo": 39707778, + "PaymentType": "Debit Card" + }, + { + "Id": 3806, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2019-01-17T13:27:24", + "TransactionId": 46579156, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 753, + "CustomerInfo": 12543383, + "PaymentType": "Debit Card" + }, + { + "Id": 3807, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-05-27T08:36:40", + "TransactionId": 25405849, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 821, + "CustomerInfo": 34223177, + "PaymentType": "Debit Card" + }, + { + "Id": 3808, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2017-01-15T07:53:54", + "TransactionId": 24979699, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 990, + "CustomerInfo": 67498999, + "PaymentType": "Credit Card" + }, + { + "Id": 3809, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2019-10-14T13:53:11", + "TransactionId": 50859625, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 502, + "CustomerInfo": 70767250, + "PaymentType": "Debit Card" + }, + { + "Id": 3810, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-09-11T09:12:58", + "TransactionId": 64520146, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 332, + "CustomerInfo": 38370246, + "PaymentType": "Cash" + }, + { + "Id": 3811, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-03-22T13:07:32", + "TransactionId": 53556141, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 223, + "CustomerInfo": 171113, + "PaymentType": "Debit Card" + }, + { + "Id": 3812, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2017-10-13T16:11:00", + "TransactionId": 15179117, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 769, + "CustomerInfo": 48446065, + "PaymentType": "Debit Card" + }, + { + "Id": 3813, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-03-12T09:41:11", + "TransactionId": 10211948, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 543, + "CustomerInfo": 54678903, + "PaymentType": "Debit Card" + }, + { + "Id": 3814, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2019-10-26T16:31:44", + "TransactionId": 85258955, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 148, + "CustomerInfo": 72438482, + "PaymentType": "Credit Card" + }, + { + "Id": 3815, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-08-19T14:02:50", + "TransactionId": 96311992, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 111, + "CustomerInfo": 77912647, + "PaymentType": "Credit Card" + }, + { + "Id": 3816, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2017-08-06T09:45:04", + "TransactionId": 62786718, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 297, + "CustomerInfo": 81131985, + "PaymentType": "Cash" + }, + { + "Id": 3817, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2019-12-25T17:51:22", + "TransactionId": 1114143, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 426, + "CustomerInfo": 61232653, + "PaymentType": "Debit Card" + }, + { + "Id": 3818, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2018-06-09T16:51:53", + "TransactionId": 33796655, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 16, + "CustomerInfo": 23478548, + "PaymentType": "Debit Card" + }, + { + "Id": 3819, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2016-12-31T08:05:34", + "TransactionId": 78414922, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 182, + "CustomerInfo": 52997333, + "PaymentType": "Debit Card" + }, + { + "Id": 3820, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2016-11-10T14:32:04", + "TransactionId": 57771216, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 229, + "CustomerInfo": 98900499, + "PaymentType": "Cash" + }, + { + "Id": 3821, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-05-06T16:39:30", + "TransactionId": 43869273, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 873, + "CustomerInfo": 44053664, + "PaymentType": "Debit Card" + }, + { + "Id": 3822, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-05-27T07:12:17", + "TransactionId": 96381428, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 17505564, + "PaymentType": "Credit Card" + }, + { + "Id": 3823, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-01-13T13:04:22", + "TransactionId": 32448321, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 858, + "CustomerInfo": 39514364, + "PaymentType": "Debit Card" + }, + { + "Id": 3824, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2016-10-18T14:56:24", + "TransactionId": 70839104, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 493, + "CustomerInfo": 22926904, + "PaymentType": "Cash" + }, + { + "Id": 3825, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-04-06T16:30:26", + "TransactionId": 25523867, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 347, + "CustomerInfo": 84234963, + "PaymentType": "Cash" + }, + { + "Id": 3826, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-07-04T12:14:59", + "TransactionId": 84590809, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 315, + "CustomerInfo": 78527958, + "PaymentType": "Credit Card" + }, + { + "Id": 3827, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-06-04T08:54:49", + "TransactionId": 13804678, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 626, + "CustomerInfo": 12160162, + "PaymentType": "Cash" + }, + { + "Id": 3828, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2018-11-09T08:45:10", + "TransactionId": 35552179, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 863, + "CustomerInfo": 33424981, + "PaymentType": "Debit Card" + }, + { + "Id": 3829, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-01-10T17:37:41", + "TransactionId": 67728439, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 492, + "CustomerInfo": 41064482, + "PaymentType": "Credit Card" + }, + { + "Id": 3830, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2017-07-19T15:24:20", + "TransactionId": 45479730, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 629, + "CustomerInfo": 67939071, + "PaymentType": "Debit Card" + }, + { + "Id": 3831, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2017-03-14T09:01:26", + "TransactionId": 52495390, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 595, + "CustomerInfo": 14549868, + "PaymentType": "Debit Card" + }, + { + "Id": 3832, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2018-07-14T10:41:05", + "TransactionId": 82716780, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 773, + "CustomerInfo": 37426904, + "PaymentType": "Credit Card" + }, + { + "Id": 3833, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-12-27T10:27:33", + "TransactionId": 20669392, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 10, + "CustomerInfo": 75548947, + "PaymentType": "Credit Card" + }, + { + "Id": 3834, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2018-02-01T16:39:13", + "TransactionId": 24448239, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 99, + "CustomerInfo": 93600365, + "PaymentType": "Debit Card" + }, + { + "Id": 3835, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-08-27T19:31:00", + "TransactionId": 2210638, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 316, + "CustomerInfo": 55281004, + "PaymentType": "Credit Card" + }, + { + "Id": 3836, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-04-14T07:33:45", + "TransactionId": 86977260, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 352, + "CustomerInfo": 79344331, + "PaymentType": "Debit Card" + }, + { + "Id": 3837, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2016-01-03T07:08:15", + "TransactionId": 72264982, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 134, + "CustomerInfo": 24370102, + "PaymentType": "Cash" + }, + { + "Id": 3838, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-04-14T17:30:29", + "TransactionId": 42118384, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 82, + "CustomerInfo": 61962896, + "PaymentType": "Credit Card" + }, + { + "Id": 3839, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-09-17T13:06:14", + "TransactionId": 51559803, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 842, + "CustomerInfo": 9866197, + "PaymentType": "Cash" + }, + { + "Id": 3840, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2017-04-26T12:32:50", + "TransactionId": 85671815, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 482, + "CustomerInfo": 60930132, + "PaymentType": "Debit Card" + }, + { + "Id": 3841, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-07-24T07:02:38", + "TransactionId": 93700684, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 251, + "CustomerInfo": 82279663, + "PaymentType": "Debit Card" + }, + { + "Id": 3842, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-04-04T16:24:32", + "TransactionId": 96577099, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 75948980, + "PaymentType": "Credit Card" + }, + { + "Id": 3843, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-11-26T14:23:34", + "TransactionId": 15190350, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 86, + "CustomerInfo": 61865966, + "PaymentType": "Credit Card" + }, + { + "Id": 3844, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-07-05T09:39:10", + "TransactionId": 47356973, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 547, + "CustomerInfo": 17358986, + "PaymentType": "Credit Card" + }, + { + "Id": 3845, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-10-20T19:52:02", + "TransactionId": 23856016, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 691, + "CustomerInfo": 66743221, + "PaymentType": "Cash" + }, + { + "Id": 3846, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-05-16T17:48:46", + "TransactionId": 7785795, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 713, + "CustomerInfo": 12994046, + "PaymentType": "Cash" + }, + { + "Id": 3847, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2017-06-20T14:00:49", + "TransactionId": 88314177, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 93, + "CustomerInfo": 15217980, + "PaymentType": "Credit Card" + }, + { + "Id": 3848, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-12-13T09:41:28", + "TransactionId": 84122383, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 873, + "CustomerInfo": 59038571, + "PaymentType": "Debit Card" + }, + { + "Id": 3849, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2016-11-24T10:09:16", + "TransactionId": 4349271, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 158, + "CustomerInfo": 61869230, + "PaymentType": "Cash" + }, + { + "Id": 3850, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2017-02-21T08:09:19", + "TransactionId": 14692234, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 434, + "CustomerInfo": 16314187, + "PaymentType": "Cash" + }, + { + "Id": 3851, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2019-09-26T13:38:04", + "TransactionId": 61579673, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 885, + "CustomerInfo": 69249142, + "PaymentType": "Cash" + }, + { + "Id": 3852, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-04-01T10:40:13", + "TransactionId": 21621006, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 377, + "CustomerInfo": 17706172, + "PaymentType": "Debit Card" + }, + { + "Id": 3853, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2018-09-01T12:05:20", + "TransactionId": 44913384, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 473, + "CustomerInfo": 41596026, + "PaymentType": "Credit Card" + }, + { + "Id": 3854, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2018-05-26T12:42:55", + "TransactionId": 30581515, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 943, + "CustomerInfo": 13064748, + "PaymentType": "Credit Card" + }, + { + "Id": 3855, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2019-09-11T13:01:21", + "TransactionId": 46324787, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 359, + "CustomerInfo": 43522816, + "PaymentType": "Debit Card" + }, + { + "Id": 3856, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-01-31T14:04:51", + "TransactionId": 57288448, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 328, + "CustomerInfo": 93810789, + "PaymentType": "Debit Card" + }, + { + "Id": 3857, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-04-25T10:49:44", + "TransactionId": 53684961, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 783, + "CustomerInfo": 67796393, + "PaymentType": "Cash" + }, + { + "Id": 3858, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-08-28T17:32:21", + "TransactionId": 34528961, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 732, + "CustomerInfo": 47248487, + "PaymentType": "Cash" + }, + { + "Id": 3859, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2017-05-14T08:40:08", + "TransactionId": 54984098, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 111, + "CustomerInfo": 80782811, + "PaymentType": "Debit Card" + }, + { + "Id": 3860, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2017-10-22T18:45:39", + "TransactionId": 58613589, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 733, + "CustomerInfo": 6294439, + "PaymentType": "Debit Card" + }, + { + "Id": 3861, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2016-01-12T11:00:23", + "TransactionId": 69236548, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 317, + "CustomerInfo": 90303453, + "PaymentType": "Credit Card" + }, + { + "Id": 3862, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2016-03-13T13:41:31", + "TransactionId": 37083706, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 215, + "CustomerInfo": 39523933, + "PaymentType": "Cash" + }, + { + "Id": 3863, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2018-04-11T07:04:31", + "TransactionId": 21976846, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 53, + "CustomerInfo": 65671686, + "PaymentType": "Cash" + }, + { + "Id": 3864, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-11-22T13:37:12", + "TransactionId": 77838834, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 613, + "CustomerInfo": 51712175, + "PaymentType": "Cash" + }, + { + "Id": 3865, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2018-12-10T13:53:54", + "TransactionId": 8311156, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 359, + "CustomerInfo": 70114942, + "PaymentType": "Debit Card" + }, + { + "Id": 3866, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2019-01-06T07:36:03", + "TransactionId": 86497377, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 849, + "CustomerInfo": 46587407, + "PaymentType": "Debit Card" + }, + { + "Id": 3867, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2019-07-31T16:35:46", + "TransactionId": 96813945, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 411, + "CustomerInfo": 21929914, + "PaymentType": "Cash" + }, + { + "Id": 3868, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2018-08-05T08:11:02", + "TransactionId": 31786234, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 670, + "CustomerInfo": 35932994, + "PaymentType": "Cash" + }, + { + "Id": 3869, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2016-02-20T18:00:26", + "TransactionId": 31651315, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 495, + "CustomerInfo": 6685792, + "PaymentType": "Credit Card" + }, + { + "Id": 3870, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2018-10-18T15:15:42", + "TransactionId": 24850883, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 895, + "CustomerInfo": 87624181, + "PaymentType": "Debit Card" + }, + { + "Id": 3871, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-05-07T16:29:25", + "TransactionId": 24948248, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 471, + "CustomerInfo": 31884982, + "PaymentType": "Credit Card" + }, + { + "Id": 3872, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2017-05-12T15:36:09", + "TransactionId": 17382354, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 466, + "CustomerInfo": 52873581, + "PaymentType": "Debit Card" + }, + { + "Id": 3873, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2017-03-02T16:07:06", + "TransactionId": 36748630, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 102, + "CustomerInfo": 90433887, + "PaymentType": "Cash" + }, + { + "Id": 3874, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2019-11-09T14:32:30", + "TransactionId": 47831263, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 484, + "CustomerInfo": 20082105, + "PaymentType": "Cash" + }, + { + "Id": 3875, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-04-11T09:27:39", + "TransactionId": 71745343, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 274, + "CustomerInfo": 95641185, + "PaymentType": "Debit Card" + }, + { + "Id": 3876, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-06-20T17:06:17", + "TransactionId": 96505623, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 716, + "CustomerInfo": 84234473, + "PaymentType": "Cash" + }, + { + "Id": 3877, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2016-10-24T17:13:55", + "TransactionId": 92097310, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 31, + "CustomerInfo": 54317683, + "PaymentType": "Cash" + }, + { + "Id": 3878, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2016-03-30T16:21:56", + "TransactionId": 54055408, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 582, + "CustomerInfo": 99427162, + "PaymentType": "Cash" + }, + { + "Id": 3879, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-12-29T14:18:14", + "TransactionId": 52418396, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 602, + "CustomerInfo": 99938343, + "PaymentType": "Credit Card" + }, + { + "Id": 3880, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2017-11-03T08:39:16", + "TransactionId": 78603439, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 874, + "CustomerInfo": 14404750, + "PaymentType": "Cash" + }, + { + "Id": 3881, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-03-19T13:17:54", + "TransactionId": 73372769, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 618, + "CustomerInfo": 56897933, + "PaymentType": "Credit Card" + }, + { + "Id": 3882, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2016-09-07T17:35:05", + "TransactionId": 66902934, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 630, + "CustomerInfo": 48329359, + "PaymentType": "Cash" + }, + { + "Id": 3883, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2017-08-21T09:24:03", + "TransactionId": 42926623, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 179, + "CustomerInfo": 55320785, + "PaymentType": "Cash" + }, + { + "Id": 3884, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-01-27T13:49:09", + "TransactionId": 23831761, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 256, + "CustomerInfo": 27415693, + "PaymentType": "Credit Card" + }, + { + "Id": 3885, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2017-05-17T11:14:12", + "TransactionId": 81200376, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 435, + "CustomerInfo": 56400461, + "PaymentType": "Cash" + }, + { + "Id": 3886, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2017-11-06T09:46:31", + "TransactionId": 31512552, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 713, + "CustomerInfo": 81781705, + "PaymentType": "Debit Card" + }, + { + "Id": 3887, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-07-04T13:28:08", + "TransactionId": 35745003, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 685, + "CustomerInfo": 4369207, + "PaymentType": "Debit Card" + }, + { + "Id": 3888, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2019-03-16T16:22:31", + "TransactionId": 60034500, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 185, + "CustomerInfo": 29591206, + "PaymentType": "Cash" + }, + { + "Id": 3889, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2018-10-21T16:31:00", + "TransactionId": 17611939, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 99960013, + "PaymentType": "Debit Card" + }, + { + "Id": 3890, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2016-02-27T07:27:33", + "TransactionId": 75292775, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 212, + "CustomerInfo": 49225261, + "PaymentType": "Cash" + }, + { + "Id": 3891, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-01-06T08:17:48", + "TransactionId": 10852124, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 180, + "CustomerInfo": 14123338, + "PaymentType": "Credit Card" + }, + { + "Id": 3892, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-11-15T10:13:52", + "TransactionId": 35390124, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 787, + "CustomerInfo": 566603, + "PaymentType": "Debit Card" + }, + { + "Id": 3893, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-11-29T07:11:51", + "TransactionId": 87520083, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 437, + "CustomerInfo": 71630787, + "PaymentType": "Debit Card" + }, + { + "Id": 3894, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2018-05-16T15:14:59", + "TransactionId": 42772735, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 786, + "CustomerInfo": 45795693, + "PaymentType": "Credit Card" + }, + { + "Id": 3895, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2016-05-31T13:58:05", + "TransactionId": 83943884, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 277, + "CustomerInfo": 11035918, + "PaymentType": "Cash" + }, + { + "Id": 3896, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2016-06-27T11:15:13", + "TransactionId": 84119279, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 507, + "CustomerInfo": 93031637, + "PaymentType": "Credit Card" + }, + { + "Id": 3897, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-09-12T07:11:34", + "TransactionId": 79147486, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 95, + "CustomerInfo": 3643755, + "PaymentType": "Cash" + }, + { + "Id": 3898, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-08-21T17:17:57", + "TransactionId": 11999005, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 134, + "CustomerInfo": 28194321, + "PaymentType": "Debit Card" + }, + { + "Id": 3899, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-08-31T11:03:16", + "TransactionId": 52875512, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 730, + "CustomerInfo": 75216737, + "PaymentType": "Debit Card" + }, + { + "Id": 3900, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2016-04-16T09:22:45", + "TransactionId": 75859307, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 485, + "CustomerInfo": 13226783, + "PaymentType": "Debit Card" + }, + { + "Id": 3901, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2018-11-20T14:21:24", + "TransactionId": 64858992, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 257, + "CustomerInfo": 66751949, + "PaymentType": "Credit Card" + }, + { + "Id": 3902, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2019-02-20T13:31:35", + "TransactionId": 19145353, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 986, + "CustomerInfo": 48154473, + "PaymentType": "Debit Card" + }, + { + "Id": 3903, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2017-05-03T07:59:40", + "TransactionId": 36334447, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 79, + "CustomerInfo": 46619751, + "PaymentType": "Credit Card" + }, + { + "Id": 3904, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2018-01-15T16:16:19", + "TransactionId": 65706511, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 98, + "CustomerInfo": 23383864, + "PaymentType": "Cash" + }, + { + "Id": 3905, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2017-07-06T10:44:33", + "TransactionId": 91778010, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 630, + "CustomerInfo": 58330510, + "PaymentType": "Cash" + }, + { + "Id": 3906, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2019-04-22T17:53:05", + "TransactionId": 84361556, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 558, + "CustomerInfo": 95330849, + "PaymentType": "Credit Card" + }, + { + "Id": 3907, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2017-11-21T08:56:33", + "TransactionId": 48214219, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 210, + "CustomerInfo": 34606272, + "PaymentType": "Debit Card" + }, + { + "Id": 3908, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-12-17T07:57:22", + "TransactionId": 95280366, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 571, + "CustomerInfo": 88601911, + "PaymentType": "Cash" + }, + { + "Id": 3909, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-03-19T07:06:23", + "TransactionId": 7244495, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 423, + "CustomerInfo": 93560973, + "PaymentType": "Debit Card" + }, + { + "Id": 3910, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2016-08-28T11:19:24", + "TransactionId": 28905872, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 558, + "CustomerInfo": 23005970, + "PaymentType": "Credit Card" + }, + { + "Id": 3911, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-07-31T18:16:42", + "TransactionId": 15498311, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 102, + "CustomerInfo": 93322153, + "PaymentType": "Debit Card" + }, + { + "Id": 3912, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2017-07-08T09:43:03", + "TransactionId": 71850629, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 742, + "CustomerInfo": 90973449, + "PaymentType": "Cash" + }, + { + "Id": 3913, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2018-08-01T19:36:03", + "TransactionId": 60560154, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 643, + "CustomerInfo": 29656212, + "PaymentType": "Credit Card" + }, + { + "Id": 3914, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2016-10-04T07:49:26", + "TransactionId": 19935448, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 369, + "CustomerInfo": 99269527, + "PaymentType": "Cash" + }, + { + "Id": 3915, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-04-14T08:42:43", + "TransactionId": 18597698, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 926, + "CustomerInfo": 25917281, + "PaymentType": "Debit Card" + }, + { + "Id": 3916, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-07-23T17:23:43", + "TransactionId": 89289710, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 986, + "CustomerInfo": 89714969, + "PaymentType": "Credit Card" + }, + { + "Id": 3917, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2017-05-17T18:52:08", + "TransactionId": 8973315, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 5350757, + "PaymentType": "Credit Card" + }, + { + "Id": 3918, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2016-01-31T16:31:09", + "TransactionId": 80215489, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 799, + "CustomerInfo": 10867805, + "PaymentType": "Cash" + }, + { + "Id": 3919, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2018-11-27T08:45:10", + "TransactionId": 29402034, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 205, + "CustomerInfo": 55325859, + "PaymentType": "Cash" + }, + { + "Id": 3920, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-09-14T10:00:12", + "TransactionId": 38036222, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 321, + "CustomerInfo": 12016304, + "PaymentType": "Debit Card" + }, + { + "Id": 3921, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-09-02T14:22:42", + "TransactionId": 51823241, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 622, + "CustomerInfo": 82697847, + "PaymentType": "Debit Card" + }, + { + "Id": 3922, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2019-03-29T19:59:40", + "TransactionId": 82375604, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 844, + "CustomerInfo": 26863729, + "PaymentType": "Debit Card" + }, + { + "Id": 3923, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2016-05-08T09:40:45", + "TransactionId": 63894772, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 10297391, + "PaymentType": "Debit Card" + }, + { + "Id": 3924, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2018-04-11T11:56:24", + "TransactionId": 39804459, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 410, + "CustomerInfo": 12624268, + "PaymentType": "Debit Card" + }, + { + "Id": 3925, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2019-01-29T17:42:52", + "TransactionId": 36310287, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 328, + "CustomerInfo": 17902894, + "PaymentType": "Cash" + }, + { + "Id": 3926, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-02-15T14:16:39", + "TransactionId": 53692946, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 208, + "CustomerInfo": 13052050, + "PaymentType": "Cash" + }, + { + "Id": 3927, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2018-02-17T17:07:09", + "TransactionId": 40976381, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 533, + "CustomerInfo": 67336947, + "PaymentType": "Debit Card" + }, + { + "Id": 3928, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-05-13T16:37:29", + "TransactionId": 30493418, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 552, + "CustomerInfo": 79807574, + "PaymentType": "Credit Card" + }, + { + "Id": 3929, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2016-12-25T07:06:58", + "TransactionId": 17469524, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 979, + "CustomerInfo": 66058957, + "PaymentType": "Cash" + }, + { + "Id": 3930, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2016-10-13T14:41:08", + "TransactionId": 65046478, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 572, + "CustomerInfo": 82572947, + "PaymentType": "Debit Card" + }, + { + "Id": 3931, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2018-10-25T19:53:28", + "TransactionId": 81217465, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 778, + "CustomerInfo": 52429938, + "PaymentType": "Debit Card" + }, + { + "Id": 3932, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-04-17T07:37:12", + "TransactionId": 22855115, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 640, + "CustomerInfo": 82064980, + "PaymentType": "Cash" + }, + { + "Id": 3933, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-10-19T14:14:47", + "TransactionId": 6327619, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 53, + "CustomerInfo": 45399948, + "PaymentType": "Credit Card" + }, + { + "Id": 3934, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2017-01-19T19:38:21", + "TransactionId": 35517487, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 513, + "CustomerInfo": 63273265, + "PaymentType": "Cash" + }, + { + "Id": 3935, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-09-19T09:28:05", + "TransactionId": 43769928, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 371, + "CustomerInfo": 53147527, + "PaymentType": "Credit Card" + }, + { + "Id": 3936, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2016-05-31T07:42:14", + "TransactionId": 98607746, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 174, + "CustomerInfo": 78486349, + "PaymentType": "Cash" + }, + { + "Id": 3937, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-05-27T14:11:02", + "TransactionId": 3722825, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 25343426, + "PaymentType": "Debit Card" + }, + { + "Id": 3938, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2016-08-05T08:56:15", + "TransactionId": 24958033, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 676, + "CustomerInfo": 22670091, + "PaymentType": "Credit Card" + }, + { + "Id": 3939, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-09-16T07:38:12", + "TransactionId": 90088882, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 235, + "CustomerInfo": 98631446, + "PaymentType": "Cash" + }, + { + "Id": 3940, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2019-01-15T11:04:34", + "TransactionId": 44948962, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 471, + "CustomerInfo": 8570045, + "PaymentType": "Debit Card" + }, + { + "Id": 3941, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-01-29T14:46:36", + "TransactionId": 38370873, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 335, + "CustomerInfo": 13453912, + "PaymentType": "Debit Card" + }, + { + "Id": 3942, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2019-07-09T19:16:19", + "TransactionId": 94326815, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 870, + "CustomerInfo": 46906330, + "PaymentType": "Cash" + }, + { + "Id": 3943, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2018-03-07T18:32:41", + "TransactionId": 88317960, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 686, + "CustomerInfo": 60308075, + "PaymentType": "Cash" + }, + { + "Id": 3944, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2017-07-15T10:24:23", + "TransactionId": 85568602, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 621, + "CustomerInfo": 67240482, + "PaymentType": "Debit Card" + }, + { + "Id": 3945, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2016-12-14T13:05:05", + "TransactionId": 18931386, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 170, + "CustomerInfo": 71085774, + "PaymentType": "Debit Card" + }, + { + "Id": 3946, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2019-08-18T15:44:04", + "TransactionId": 96024572, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 414, + "CustomerInfo": 306253, + "PaymentType": "Cash" + }, + { + "Id": 3947, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2019-06-04T14:53:57", + "TransactionId": 82605876, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 526, + "CustomerInfo": 21708208, + "PaymentType": "Cash" + }, + { + "Id": 3948, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2017-08-19T14:56:33", + "TransactionId": 63106656, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 868, + "CustomerInfo": 76749931, + "PaymentType": "Credit Card" + }, + { + "Id": 3949, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-11-19T18:26:47", + "TransactionId": 33266928, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 828, + "CustomerInfo": 99814729, + "PaymentType": "Cash" + }, + { + "Id": 3950, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2019-08-09T18:06:03", + "TransactionId": 64724971, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 370, + "CustomerInfo": 61997049, + "PaymentType": "Debit Card" + }, + { + "Id": 3951, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2019-05-17T15:14:33", + "TransactionId": 12241438, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 512, + "CustomerInfo": 67446875, + "PaymentType": "Credit Card" + }, + { + "Id": 3952, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2018-07-28T16:33:45", + "TransactionId": 65533566, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 854, + "CustomerInfo": 89910008, + "PaymentType": "Cash" + }, + { + "Id": 3953, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-11-02T19:59:14", + "TransactionId": 9560160, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 589, + "CustomerInfo": 96050466, + "PaymentType": "Debit Card" + }, + { + "Id": 3954, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-04-02T18:56:44", + "TransactionId": 91721691, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 85, + "CustomerInfo": 85538936, + "PaymentType": "Cash" + }, + { + "Id": 3955, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2018-05-03T12:01:00", + "TransactionId": 4182464, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 377, + "CustomerInfo": 47045039, + "PaymentType": "Cash" + }, + { + "Id": 3956, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-10-22T14:44:44", + "TransactionId": 95277192, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 149, + "CustomerInfo": 7471760, + "PaymentType": "Debit Card" + }, + { + "Id": 3957, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2016-07-02T11:10:11", + "TransactionId": 59655499, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 485, + "CustomerInfo": 17349397, + "PaymentType": "Credit Card" + }, + { + "Id": 3958, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2018-01-15T16:23:48", + "TransactionId": 41402284, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 795, + "CustomerInfo": 61264597, + "PaymentType": "Debit Card" + }, + { + "Id": 3959, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2017-03-28T17:29:20", + "TransactionId": 53622459, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 84684721, + "PaymentType": "Credit Card" + }, + { + "Id": 3960, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2017-08-14T15:12:06", + "TransactionId": 78827737, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 216, + "CustomerInfo": 36461120, + "PaymentType": "Debit Card" + }, + { + "Id": 3961, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-08-18T14:35:48", + "TransactionId": 18782911, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 892, + "CustomerInfo": 43929114, + "PaymentType": "Credit Card" + }, + { + "Id": 3962, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2017-10-17T11:16:31", + "TransactionId": 56872963, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 816, + "CustomerInfo": 98323891, + "PaymentType": "Debit Card" + }, + { + "Id": 3963, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2019-01-01T08:56:59", + "TransactionId": 83690302, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 789, + "CustomerInfo": 6827473, + "PaymentType": "Cash" + }, + { + "Id": 3964, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2019-02-24T14:05:00", + "TransactionId": 28689466, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 830, + "CustomerInfo": 83049639, + "PaymentType": "Credit Card" + }, + { + "Id": 3965, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2019-10-20T08:14:38", + "TransactionId": 72915852, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 19, + "CustomerInfo": 30470706, + "PaymentType": "Credit Card" + }, + { + "Id": 3966, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2019-05-28T19:06:40", + "TransactionId": 95697068, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 753, + "CustomerInfo": 62292506, + "PaymentType": "Debit Card" + }, + { + "Id": 3967, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-05-10T08:50:47", + "TransactionId": 62358799, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 379, + "CustomerInfo": 78582244, + "PaymentType": "Debit Card" + }, + { + "Id": 3968, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-02-27T11:16:31", + "TransactionId": 83155071, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 571, + "CustomerInfo": 35429977, + "PaymentType": "Credit Card" + }, + { + "Id": 3969, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-05-09T15:20:27", + "TransactionId": 85884390, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 413, + "CustomerInfo": 19341233, + "PaymentType": "Debit Card" + }, + { + "Id": 3970, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2019-11-08T19:16:02", + "TransactionId": 27888715, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 655, + "CustomerInfo": 9122202, + "PaymentType": "Cash" + }, + { + "Id": 3971, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-10-06T09:06:55", + "TransactionId": 61181457, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 761, + "CustomerInfo": 45505140, + "PaymentType": "Debit Card" + }, + { + "Id": 3972, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-05-03T08:14:30", + "TransactionId": 88176734, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 936, + "CustomerInfo": 32658005, + "PaymentType": "Debit Card" + }, + { + "Id": 3973, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-06-25T13:50:36", + "TransactionId": 48956096, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 292, + "CustomerInfo": 11935698, + "PaymentType": "Credit Card" + }, + { + "Id": 3974, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-03-18T12:33:33", + "TransactionId": 12509321, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 144, + "CustomerInfo": 64750098, + "PaymentType": "Cash" + }, + { + "Id": 3975, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2018-07-30T19:41:14", + "TransactionId": 29079723, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 460, + "CustomerInfo": 90633726, + "PaymentType": "Credit Card" + }, + { + "Id": 3976, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-02-05T12:16:42", + "TransactionId": 89038187, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 509, + "CustomerInfo": 89548878, + "PaymentType": "Credit Card" + }, + { + "Id": 3977, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2016-08-10T12:18:43", + "TransactionId": 9384336, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 363, + "CustomerInfo": 7553638, + "PaymentType": "Credit Card" + }, + { + "Id": 3978, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2016-02-18T07:58:39", + "TransactionId": 80451515, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 514, + "CustomerInfo": 11861922, + "PaymentType": "Cash" + }, + { + "Id": 3979, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-04-28T18:14:41", + "TransactionId": 5835238, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 480, + "CustomerInfo": 28812599, + "PaymentType": "Cash" + }, + { + "Id": 3980, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2016-09-27T19:44:15", + "TransactionId": 7881469, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 352, + "CustomerInfo": 32504761, + "PaymentType": "Debit Card" + }, + { + "Id": 3981, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-09-08T14:37:06", + "TransactionId": 85978531, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 732, + "CustomerInfo": 66747064, + "PaymentType": "Credit Card" + }, + { + "Id": 3982, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-02-21T10:36:46", + "TransactionId": 49798851, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 843, + "CustomerInfo": 38022400, + "PaymentType": "Cash" + }, + { + "Id": 3983, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-06-14T15:32:50", + "TransactionId": 75681083, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 84, + "CustomerInfo": 55444341, + "PaymentType": "Debit Card" + }, + { + "Id": 3984, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-01-11T19:16:28", + "TransactionId": 76579504, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 59606370, + "PaymentType": "Credit Card" + }, + { + "Id": 3985, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2016-02-20T17:11:02", + "TransactionId": 22313449, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 80, + "CustomerInfo": 89974002, + "PaymentType": "Cash" + }, + { + "Id": 3986, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-07-05T11:48:12", + "TransactionId": 69718171, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 61, + "CustomerInfo": 24508109, + "PaymentType": "Cash" + }, + { + "Id": 3987, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2017-12-08T13:13:26", + "TransactionId": 69988962, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 160, + "CustomerInfo": 9114097, + "PaymentType": "Debit Card" + }, + { + "Id": 3988, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2016-09-25T11:19:06", + "TransactionId": 29573510, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 134, + "CustomerInfo": 89883099, + "PaymentType": "Credit Card" + }, + { + "Id": 3989, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2018-03-10T09:53:08", + "TransactionId": 1500135, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 246, + "CustomerInfo": 17037067, + "PaymentType": "Credit Card" + }, + { + "Id": 3990, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-11-14T14:06:52", + "TransactionId": 69096621, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 61, + "CustomerInfo": 61788803, + "PaymentType": "Credit Card" + }, + { + "Id": 3991, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-05-05T13:52:28", + "TransactionId": 62326129, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 93, + "CustomerInfo": 51462206, + "PaymentType": "Cash" + }, + { + "Id": 3992, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2016-07-08T14:22:25", + "TransactionId": 57838164, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 146, + "CustomerInfo": 77648869, + "PaymentType": "Debit Card" + }, + { + "Id": 3993, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-03-26T10:41:31", + "TransactionId": 60576697, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 143, + "CustomerInfo": 30573634, + "PaymentType": "Cash" + }, + { + "Id": 3994, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-03-05T19:23:05", + "TransactionId": 65289882, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 760, + "CustomerInfo": 12485786, + "PaymentType": "Credit Card" + }, + { + "Id": 3995, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2016-06-24T13:04:05", + "TransactionId": 6410239, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 827, + "CustomerInfo": 3242310, + "PaymentType": "Debit Card" + }, + { + "Id": 3996, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2016-10-29T12:20:10", + "TransactionId": 49625046, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 626, + "CustomerInfo": 7265135, + "PaymentType": "Credit Card" + }, + { + "Id": 3997, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2018-10-28T07:10:08", + "TransactionId": 1218396, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 851, + "CustomerInfo": 86503016, + "PaymentType": "Debit Card" + }, + { + "Id": 3998, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-02-06T07:58:39", + "TransactionId": 11354293, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 186, + "CustomerInfo": 4378386, + "PaymentType": "Cash" + }, + { + "Id": 3999, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-09-24T11:36:23", + "TransactionId": 78715641, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 248, + "CustomerInfo": 21743810, + "PaymentType": "Cash" + }, + { + "Id": 4000, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2018-12-05T09:40:54", + "TransactionId": 10650387, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 81, + "CustomerInfo": 31004310, + "PaymentType": "Credit Card" + }, + { + "Id": 4001, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-05-21T18:25:21", + "TransactionId": 30842409, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 252, + "CustomerInfo": 55706344, + "PaymentType": "Cash" + }, + { + "Id": 4002, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2017-08-06T18:13:58", + "TransactionId": 97294533, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 456, + "CustomerInfo": 45387339, + "PaymentType": "Debit Card" + }, + { + "Id": 4003, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-04-30T18:57:19", + "TransactionId": 49027005, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 143, + "CustomerInfo": 14966679, + "PaymentType": "Debit Card" + }, + { + "Id": 4004, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-06-09T16:20:56", + "TransactionId": 44325176, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 823, + "CustomerInfo": 72472943, + "PaymentType": "Credit Card" + }, + { + "Id": 4005, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-02-02T13:59:31", + "TransactionId": 15313952, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 71195010, + "PaymentType": "Credit Card" + }, + { + "Id": 4006, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-03-28T10:57:39", + "TransactionId": 68061936, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 842, + "CustomerInfo": 50491682, + "PaymentType": "Cash" + }, + { + "Id": 4007, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2018-09-04T13:43:15", + "TransactionId": 49241583, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 512, + "CustomerInfo": 84173526, + "PaymentType": "Cash" + }, + { + "Id": 4008, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2019-10-26T17:17:14", + "TransactionId": 81273525, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 565, + "CustomerInfo": 89600965, + "PaymentType": "Debit Card" + }, + { + "Id": 4009, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-08-23T15:12:14", + "TransactionId": 6769065, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 768, + "CustomerInfo": 36954459, + "PaymentType": "Credit Card" + }, + { + "Id": 4010, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2019-02-21T13:16:19", + "TransactionId": 93733586, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 828, + "CustomerInfo": 16831198, + "PaymentType": "Credit Card" + }, + { + "Id": 4011, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-10-22T18:41:02", + "TransactionId": 40041591, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 995, + "CustomerInfo": 79430081, + "PaymentType": "Cash" + }, + { + "Id": 4012, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2017-03-13T17:39:50", + "TransactionId": 36313027, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 198, + "CustomerInfo": 80588338, + "PaymentType": "Cash" + }, + { + "Id": 4013, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2019-02-04T07:50:27", + "TransactionId": 54455632, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 794, + "CustomerInfo": 11083604, + "PaymentType": "Cash" + }, + { + "Id": 4014, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2019-07-07T12:07:55", + "TransactionId": 21672388, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 61346262, + "PaymentType": "Credit Card" + }, + { + "Id": 4015, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2016-07-01T07:56:04", + "TransactionId": 98263306, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 706, + "CustomerInfo": 27003527, + "PaymentType": "Cash" + }, + { + "Id": 4016, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2018-01-11T18:09:48", + "TransactionId": 38819494, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 480, + "CustomerInfo": 75093098, + "PaymentType": "Credit Card" + }, + { + "Id": 4017, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2017-03-03T12:03:45", + "TransactionId": 77583510, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 642, + "CustomerInfo": 59173426, + "PaymentType": "Cash" + }, + { + "Id": 4018, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2016-08-11T13:20:04", + "TransactionId": 92750926, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 908, + "CustomerInfo": 23905530, + "PaymentType": "Debit Card" + }, + { + "Id": 4019, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-05-17T11:40:51", + "TransactionId": 79665516, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 121, + "CustomerInfo": 26863206, + "PaymentType": "Debit Card" + }, + { + "Id": 4020, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-07-31T09:15:59", + "TransactionId": 75679709, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 464, + "CustomerInfo": 76158412, + "PaymentType": "Credit Card" + }, + { + "Id": 4021, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-11-07T08:10:36", + "TransactionId": 69769348, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 382, + "CustomerInfo": 370358, + "PaymentType": "Debit Card" + }, + { + "Id": 4022, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-06-09T19:03:04", + "TransactionId": 69553712, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 30, + "CustomerInfo": 46868386, + "PaymentType": "Credit Card" + }, + { + "Id": 4023, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-06-12T12:01:18", + "TransactionId": 4973272, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 63, + "CustomerInfo": 11777290, + "PaymentType": "Cash" + }, + { + "Id": 4024, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2016-01-08T17:32:47", + "TransactionId": 49956854, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 592, + "CustomerInfo": 48468126, + "PaymentType": "Cash" + }, + { + "Id": 4025, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-10-15T08:11:37", + "TransactionId": 47606852, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 504, + "CustomerInfo": 66450509, + "PaymentType": "Cash" + }, + { + "Id": 4026, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2019-02-11T17:19:32", + "TransactionId": 47149943, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 293, + "CustomerInfo": 46942635, + "PaymentType": "Debit Card" + }, + { + "Id": 4027, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2016-12-06T19:21:04", + "TransactionId": 66440083, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 849, + "CustomerInfo": 18707446, + "PaymentType": "Credit Card" + }, + { + "Id": 4028, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2019-09-07T08:39:50", + "TransactionId": 6247645, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 927, + "CustomerInfo": 28603446, + "PaymentType": "Credit Card" + }, + { + "Id": 4029, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-03-13T12:45:48", + "TransactionId": 3460320, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 617, + "CustomerInfo": 68376024, + "PaymentType": "Cash" + }, + { + "Id": 4030, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2019-04-27T07:39:04", + "TransactionId": 66265683, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 960, + "CustomerInfo": 98414710, + "PaymentType": "Credit Card" + }, + { + "Id": 4031, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2019-05-14T17:34:13", + "TransactionId": 12280304, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 102, + "CustomerInfo": 36717198, + "PaymentType": "Credit Card" + }, + { + "Id": 4032, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-12-16T15:57:01", + "TransactionId": 95611530, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 102, + "CustomerInfo": 76237674, + "PaymentType": "Cash" + }, + { + "Id": 4033, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2017-04-22T07:18:37", + "TransactionId": 68914446, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 25, + "CustomerInfo": 66493530, + "PaymentType": "Cash" + }, + { + "Id": 4034, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-09-07T15:03:01", + "TransactionId": 95162552, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 535, + "CustomerInfo": 42315276, + "PaymentType": "Credit Card" + }, + { + "Id": 4035, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2017-02-12T15:01:09", + "TransactionId": 42534917, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 48, + "CustomerInfo": 456257, + "PaymentType": "Credit Card" + }, + { + "Id": 4036, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-08-13T19:06:14", + "TransactionId": 68859282, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 194, + "CustomerInfo": 63173699, + "PaymentType": "Debit Card" + }, + { + "Id": 4037, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-06-07T17:26:10", + "TransactionId": 77299233, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 195, + "CustomerInfo": 56943854, + "PaymentType": "Debit Card" + }, + { + "Id": 4038, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-12-28T17:12:03", + "TransactionId": 28396819, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 182, + "CustomerInfo": 33152509, + "PaymentType": "Debit Card" + }, + { + "Id": 4039, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-09-19T10:40:22", + "TransactionId": 77650999, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 76632759, + "PaymentType": "Debit Card" + }, + { + "Id": 4040, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2017-11-01T10:22:31", + "TransactionId": 27699273, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 236, + "CustomerInfo": 31033403, + "PaymentType": "Debit Card" + }, + { + "Id": 4041, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2016-06-08T17:13:21", + "TransactionId": 80684572, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 399, + "CustomerInfo": 94500341, + "PaymentType": "Cash" + }, + { + "Id": 4042, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2017-01-10T19:17:20", + "TransactionId": 82655529, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 557, + "CustomerInfo": 96247881, + "PaymentType": "Credit Card" + }, + { + "Id": 4043, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-10-26T17:28:19", + "TransactionId": 98197128, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 892, + "CustomerInfo": 32137668, + "PaymentType": "Credit Card" + }, + { + "Id": 4044, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-03-12T15:35:17", + "TransactionId": 95990694, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 323, + "CustomerInfo": 61510740, + "PaymentType": "Debit Card" + }, + { + "Id": 4045, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-07-17T13:46:25", + "TransactionId": 97430624, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 37008597, + "PaymentType": "Credit Card" + }, + { + "Id": 4046, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2018-04-11T14:53:31", + "TransactionId": 52327591, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 311, + "CustomerInfo": 13840728, + "PaymentType": "Cash" + }, + { + "Id": 4047, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2019-09-14T15:30:23", + "TransactionId": 54346119, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 245, + "CustomerInfo": 17762256, + "PaymentType": "Credit Card" + }, + { + "Id": 4048, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2019-09-29T15:46:31", + "TransactionId": 82415581, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 532, + "CustomerInfo": 87092760, + "PaymentType": "Cash" + }, + { + "Id": 4049, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-01-16T18:36:17", + "TransactionId": 31503254, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 836, + "CustomerInfo": 33112223, + "PaymentType": "Debit Card" + }, + { + "Id": 4050, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2018-05-01T19:57:39", + "TransactionId": 26885879, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 301, + "CustomerInfo": 21127771, + "PaymentType": "Credit Card" + }, + { + "Id": 4051, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-02-18T12:40:11", + "TransactionId": 68567847, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 653, + "CustomerInfo": 16882734, + "PaymentType": "Credit Card" + }, + { + "Id": 4052, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2018-08-24T16:26:07", + "TransactionId": 94716670, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 308, + "CustomerInfo": 10085486, + "PaymentType": "Credit Card" + }, + { + "Id": 4053, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2018-01-21T19:30:17", + "TransactionId": 33697973, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 914, + "CustomerInfo": 41650001, + "PaymentType": "Credit Card" + }, + { + "Id": 4054, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2019-05-24T17:22:16", + "TransactionId": 72809890, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 223, + "CustomerInfo": 42790894, + "PaymentType": "Cash" + }, + { + "Id": 4055, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-01-30T14:13:12", + "TransactionId": 62360257, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 408, + "CustomerInfo": 1376107, + "PaymentType": "Cash" + }, + { + "Id": 4056, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2019-11-18T08:10:45", + "TransactionId": 39533823, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 991, + "CustomerInfo": 12982111, + "PaymentType": "Credit Card" + }, + { + "Id": 4057, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2019-04-20T15:23:11", + "TransactionId": 88878084, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 988, + "CustomerInfo": 6276440, + "PaymentType": "Credit Card" + }, + { + "Id": 4058, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-04-12T09:25:03", + "TransactionId": 3359722, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 605, + "CustomerInfo": 67837666, + "PaymentType": "Credit Card" + }, + { + "Id": 4059, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2018-08-31T14:54:32", + "TransactionId": 22784781, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 499, + "CustomerInfo": 93077559, + "PaymentType": "Credit Card" + }, + { + "Id": 4060, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-11-07T16:53:11", + "TransactionId": 74524335, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 759, + "CustomerInfo": 86981694, + "PaymentType": "Debit Card" + }, + { + "Id": 4061, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2016-10-31T11:14:38", + "TransactionId": 70573365, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 527, + "CustomerInfo": 41082716, + "PaymentType": "Cash" + }, + { + "Id": 4062, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2018-06-03T13:09:50", + "TransactionId": 95445825, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 114, + "CustomerInfo": 79313873, + "PaymentType": "Debit Card" + }, + { + "Id": 4063, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2017-04-29T10:20:30", + "TransactionId": 18236872, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 465, + "CustomerInfo": 7158539, + "PaymentType": "Cash" + }, + { + "Id": 4064, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2016-05-11T16:02:47", + "TransactionId": 52129010, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 629, + "CustomerInfo": 23303111, + "PaymentType": "Credit Card" + }, + { + "Id": 4065, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2016-08-10T16:56:38", + "TransactionId": 79783090, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 455, + "CustomerInfo": 15709711, + "PaymentType": "Debit Card" + }, + { + "Id": 4066, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2018-06-28T17:10:54", + "TransactionId": 49948180, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 66, + "CustomerInfo": 28400554, + "PaymentType": "Credit Card" + }, + { + "Id": 4067, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-09-29T16:48:09", + "TransactionId": 62759650, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 396, + "CustomerInfo": 15017085, + "PaymentType": "Credit Card" + }, + { + "Id": 4068, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-09-01T12:27:48", + "TransactionId": 2182363, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 551, + "CustomerInfo": 3324232, + "PaymentType": "Credit Card" + }, + { + "Id": 4069, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2019-04-27T16:50:18", + "TransactionId": 17549204, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 450, + "CustomerInfo": 57425712, + "PaymentType": "Cash" + }, + { + "Id": 4070, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-03-03T09:17:17", + "TransactionId": 84259236, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 131, + "CustomerInfo": 58326739, + "PaymentType": "Credit Card" + }, + { + "Id": 4071, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-10-19T15:16:16", + "TransactionId": 74964067, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 841, + "CustomerInfo": 20941194, + "PaymentType": "Debit Card" + }, + { + "Id": 4072, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-12-22T11:09:19", + "TransactionId": 87188115, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 133, + "CustomerInfo": 1659006, + "PaymentType": "Credit Card" + }, + { + "Id": 4073, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2018-05-20T19:46:51", + "TransactionId": 77490385, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 85092377, + "PaymentType": "Debit Card" + }, + { + "Id": 4074, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2018-06-23T13:25:58", + "TransactionId": 93932429, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 60, + "CustomerInfo": 65151176, + "PaymentType": "Credit Card" + }, + { + "Id": 4075, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2018-09-27T09:08:21", + "TransactionId": 8856362, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 45971500, + "PaymentType": "Cash" + }, + { + "Id": 4076, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2017-09-01T16:21:04", + "TransactionId": 29877525, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 961, + "CustomerInfo": 49280714, + "PaymentType": "Debit Card" + }, + { + "Id": 4077, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2016-03-03T19:57:56", + "TransactionId": 17889308, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 52, + "CustomerInfo": 6406375, + "PaymentType": "Credit Card" + }, + { + "Id": 4078, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-05-04T18:51:33", + "TransactionId": 92143716, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 467, + "CustomerInfo": 93739865, + "PaymentType": "Credit Card" + }, + { + "Id": 4079, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-11-11T17:19:06", + "TransactionId": 42664015, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 617, + "CustomerInfo": 567804, + "PaymentType": "Cash" + }, + { + "Id": 4080, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-12-02T15:16:08", + "TransactionId": 96677806, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 818, + "CustomerInfo": 90386245, + "PaymentType": "Credit Card" + }, + { + "Id": 4081, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2016-03-05T13:27:42", + "TransactionId": 16640837, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 10, + "CustomerInfo": 38385724, + "PaymentType": "Credit Card" + }, + { + "Id": 4082, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-05-06T11:13:47", + "TransactionId": 39857691, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 894, + "CustomerInfo": 35430702, + "PaymentType": "Cash" + }, + { + "Id": 4083, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2017-03-05T10:09:50", + "TransactionId": 25033537, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 291, + "CustomerInfo": 68289450, + "PaymentType": "Cash" + }, + { + "Id": 4084, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-01-10T11:54:58", + "TransactionId": 42440189, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 946, + "CustomerInfo": 48785055, + "PaymentType": "Debit Card" + }, + { + "Id": 4085, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-10-02T07:51:10", + "TransactionId": 19377682, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 970, + "CustomerInfo": 59466206, + "PaymentType": "Debit Card" + }, + { + "Id": 4086, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-03-12T14:54:58", + "TransactionId": 27501112, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 766, + "CustomerInfo": 49722708, + "PaymentType": "Debit Card" + }, + { + "Id": 4087, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-03-03T15:29:57", + "TransactionId": 60845334, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 279, + "CustomerInfo": 1367028, + "PaymentType": "Debit Card" + }, + { + "Id": 4088, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-08-02T10:06:06", + "TransactionId": 74082668, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 179, + "CustomerInfo": 27737699, + "PaymentType": "Credit Card" + }, + { + "Id": 4089, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2017-08-09T09:29:40", + "TransactionId": 40478873, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 548, + "CustomerInfo": 2869231, + "PaymentType": "Debit Card" + }, + { + "Id": 4090, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-02-18T11:12:12", + "TransactionId": 53002665, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 996, + "CustomerInfo": 98807738, + "PaymentType": "Debit Card" + }, + { + "Id": 4091, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-05-05T10:52:45", + "TransactionId": 53163288, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 241, + "CustomerInfo": 17834541, + "PaymentType": "Credit Card" + }, + { + "Id": 4092, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2019-11-19T08:06:26", + "TransactionId": 44462669, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 908, + "CustomerInfo": 22127957, + "PaymentType": "Cash" + }, + { + "Id": 4093, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2016-04-13T08:35:05", + "TransactionId": 74958415, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 731, + "CustomerInfo": 38148464, + "PaymentType": "Credit Card" + }, + { + "Id": 4094, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-01-29T11:58:25", + "TransactionId": 43067578, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 591, + "CustomerInfo": 93468791, + "PaymentType": "Cash" + }, + { + "Id": 4095, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2017-08-06T13:45:33", + "TransactionId": 67842030, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 153, + "CustomerInfo": 17043396, + "PaymentType": "Debit Card" + }, + { + "Id": 4096, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-01-19T13:43:24", + "TransactionId": 12358992, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 391, + "CustomerInfo": 80706871, + "PaymentType": "Cash" + }, + { + "Id": 4097, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2017-07-29T12:08:12", + "TransactionId": 4984298, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 242, + "CustomerInfo": 21559086, + "PaymentType": "Credit Card" + }, + { + "Id": 4098, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-07-16T14:50:04", + "TransactionId": 90789821, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 578, + "CustomerInfo": 68869550, + "PaymentType": "Cash" + }, + { + "Id": 4099, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2017-09-15T17:59:17", + "TransactionId": 81749377, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 295, + "CustomerInfo": 81681436, + "PaymentType": "Credit Card" + }, + { + "Id": 4100, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-05-20T18:00:43", + "TransactionId": 54093016, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 589, + "CustomerInfo": 4119090, + "PaymentType": "Debit Card" + }, + { + "Id": 4101, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-11-11T07:25:24", + "TransactionId": 87903959, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 611, + "CustomerInfo": 59081654, + "PaymentType": "Cash" + }, + { + "Id": 4102, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-04-30T14:04:51", + "TransactionId": 57000850, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 287, + "CustomerInfo": 59972062, + "PaymentType": "Cash" + }, + { + "Id": 4103, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-08-28T18:25:12", + "TransactionId": 7292990, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 447, + "CustomerInfo": 79005354, + "PaymentType": "Debit Card" + }, + { + "Id": 4104, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-10-07T19:45:07", + "TransactionId": 52088274, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 630, + "CustomerInfo": 6038548, + "PaymentType": "Credit Card" + }, + { + "Id": 4105, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2019-08-18T11:32:47", + "TransactionId": 19819733, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 858, + "CustomerInfo": 83118639, + "PaymentType": "Debit Card" + }, + { + "Id": 4106, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-02-28T13:51:10", + "TransactionId": 16470183, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 355, + "CustomerInfo": 23919333, + "PaymentType": "Credit Card" + }, + { + "Id": 4107, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2016-05-25T15:10:22", + "TransactionId": 28404782, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 770, + "CustomerInfo": 74033990, + "PaymentType": "Debit Card" + }, + { + "Id": 4108, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-09-12T13:07:41", + "TransactionId": 14830793, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 479, + "CustomerInfo": 96112380, + "PaymentType": "Debit Card" + }, + { + "Id": 4109, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-07-19T08:07:52", + "TransactionId": 3879113, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 298, + "CustomerInfo": 86167901, + "PaymentType": "Debit Card" + }, + { + "Id": 4110, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-02-19T13:20:56", + "TransactionId": 22211229, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 83, + "CustomerInfo": 51291551, + "PaymentType": "Cash" + }, + { + "Id": 4111, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2018-10-11T09:33:59", + "TransactionId": 66465885, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 926, + "CustomerInfo": 68367067, + "PaymentType": "Cash" + }, + { + "Id": 4112, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2017-04-30T09:44:04", + "TransactionId": 93050472, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 96, + "CustomerInfo": 86240850, + "PaymentType": "Cash" + }, + { + "Id": 4113, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2018-12-26T09:06:55", + "TransactionId": 80219258, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 471, + "CustomerInfo": 90691159, + "PaymentType": "Debit Card" + }, + { + "Id": 4114, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2017-02-28T14:33:04", + "TransactionId": 52980167, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 685, + "CustomerInfo": 69186516, + "PaymentType": "Cash" + }, + { + "Id": 4115, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-08-16T11:43:26", + "TransactionId": 55679933, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 978, + "CustomerInfo": 88731013, + "PaymentType": "Credit Card" + }, + { + "Id": 4116, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-05-05T08:07:00", + "TransactionId": 2311136, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 36, + "CustomerInfo": 15656008, + "PaymentType": "Credit Card" + }, + { + "Id": 4117, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2019-04-02T08:40:08", + "TransactionId": 55779645, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 912, + "CustomerInfo": 94275298, + "PaymentType": "Cash" + }, + { + "Id": 4118, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-06-06T17:10:28", + "TransactionId": 15546519, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 111, + "CustomerInfo": 34241379, + "PaymentType": "Credit Card" + }, + { + "Id": 4119, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2017-05-14T11:26:18", + "TransactionId": 23152329, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 298, + "CustomerInfo": 61989841, + "PaymentType": "Debit Card" + }, + { + "Id": 4120, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-10-03T18:12:14", + "TransactionId": 8744800, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 111, + "CustomerInfo": 60358832, + "PaymentType": "Debit Card" + }, + { + "Id": 4121, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2017-01-23T19:13:26", + "TransactionId": 95240389, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 795, + "CustomerInfo": 98680371, + "PaymentType": "Credit Card" + }, + { + "Id": 4122, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2018-01-28T08:37:24", + "TransactionId": 18477958, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 835, + "CustomerInfo": 16107120, + "PaymentType": "Credit Card" + }, + { + "Id": 4123, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2018-09-11T14:01:58", + "TransactionId": 90163920, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 995, + "CustomerInfo": 71480765, + "PaymentType": "Cash" + }, + { + "Id": 4124, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2017-04-13T08:46:11", + "TransactionId": 36016548, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 753, + "CustomerInfo": 33875700, + "PaymentType": "Debit Card" + }, + { + "Id": 4125, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-12-08T10:31:35", + "TransactionId": 42229365, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 88037144, + "PaymentType": "Cash" + }, + { + "Id": 4126, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2016-06-13T09:38:18", + "TransactionId": 80887096, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 719, + "CustomerInfo": 82229494, + "PaymentType": "Cash" + }, + { + "Id": 4127, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-03-15T10:55:29", + "TransactionId": 89203820, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 958, + "CustomerInfo": 12318950, + "PaymentType": "Credit Card" + }, + { + "Id": 4128, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-04-09T08:48:03", + "TransactionId": 5304808, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 728, + "CustomerInfo": 88976666, + "PaymentType": "Debit Card" + }, + { + "Id": 4129, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2017-02-16T14:53:40", + "TransactionId": 51686184, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 876, + "CustomerInfo": 64805038, + "PaymentType": "Cash" + }, + { + "Id": 4130, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2018-08-04T09:21:10", + "TransactionId": 35499049, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 277, + "CustomerInfo": 84293437, + "PaymentType": "Cash" + }, + { + "Id": 4131, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-03-26T11:02:50", + "TransactionId": 71846354, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 947, + "CustomerInfo": 56465101, + "PaymentType": "Debit Card" + }, + { + "Id": 4132, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-09-01T07:57:04", + "TransactionId": 47886135, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 183, + "CustomerInfo": 55540354, + "PaymentType": "Credit Card" + }, + { + "Id": 4133, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2019-06-02T07:17:54", + "TransactionId": 49638702, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 955, + "CustomerInfo": 54006770, + "PaymentType": "Cash" + }, + { + "Id": 4134, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-04-12T15:33:24", + "TransactionId": 24885361, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 890, + "CustomerInfo": 20820852, + "PaymentType": "Cash" + }, + { + "Id": 4135, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2017-11-21T07:34:36", + "TransactionId": 76491437, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 344, + "CustomerInfo": 82008145, + "PaymentType": "Cash" + }, + { + "Id": 4136, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2017-04-01T08:21:59", + "TransactionId": 78482004, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 691, + "CustomerInfo": 65770019, + "PaymentType": "Cash" + }, + { + "Id": 4137, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-12-01T12:25:29", + "TransactionId": 29254936, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 655, + "CustomerInfo": 78445138, + "PaymentType": "Debit Card" + }, + { + "Id": 4138, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2019-05-31T14:55:15", + "TransactionId": 26640732, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 117, + "CustomerInfo": 34391145, + "PaymentType": "Cash" + }, + { + "Id": 4139, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-02-19T16:48:43", + "TransactionId": 59814638, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 488, + "CustomerInfo": 80470985, + "PaymentType": "Cash" + }, + { + "Id": 4140, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-01-17T15:20:44", + "TransactionId": 74214506, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 667, + "CustomerInfo": 59135629, + "PaymentType": "Cash" + }, + { + "Id": 4141, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2019-07-20T12:25:47", + "TransactionId": 39094541, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 833, + "CustomerInfo": 5876736, + "PaymentType": "Debit Card" + }, + { + "Id": 4142, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2019-02-03T11:53:48", + "TransactionId": 32648691, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 220, + "CustomerInfo": 27790948, + "PaymentType": "Debit Card" + }, + { + "Id": 4143, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2018-12-23T10:57:04", + "TransactionId": 81493096, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 375, + "CustomerInfo": 11389920, + "PaymentType": "Cash" + }, + { + "Id": 4144, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2016-10-20T12:26:04", + "TransactionId": 25698507, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 994, + "CustomerInfo": 13448541, + "PaymentType": "Debit Card" + }, + { + "Id": 4145, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-02-01T07:45:07", + "TransactionId": 70795375, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 52, + "CustomerInfo": 44669581, + "PaymentType": "Credit Card" + }, + { + "Id": 4146, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2019-03-07T15:14:24", + "TransactionId": 30575445, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 921, + "CustomerInfo": 51706608, + "PaymentType": "Credit Card" + }, + { + "Id": 4147, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-07-11T13:33:01", + "TransactionId": 10942342, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 48, + "CustomerInfo": 44041842, + "PaymentType": "Debit Card" + }, + { + "Id": 4148, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-08-30T07:44:50", + "TransactionId": 51696850, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 953, + "CustomerInfo": 8723888, + "PaymentType": "Cash" + }, + { + "Id": 4149, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2017-09-12T10:43:41", + "TransactionId": 70811920, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 962, + "CustomerInfo": 87327949, + "PaymentType": "Cash" + }, + { + "Id": 4150, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2016-03-07T07:20:56", + "TransactionId": 53886193, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 937, + "CustomerInfo": 67068212, + "PaymentType": "Credit Card" + }, + { + "Id": 4151, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2018-04-26T19:54:03", + "TransactionId": 9241545, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 732, + "CustomerInfo": 80296567, + "PaymentType": "Debit Card" + }, + { + "Id": 4152, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-01-17T12:51:50", + "TransactionId": 4353184, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 50, + "CustomerInfo": 94233683, + "PaymentType": "Credit Card" + }, + { + "Id": 4153, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2016-01-20T07:30:26", + "TransactionId": 77369891, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 487, + "CustomerInfo": 28936056, + "PaymentType": "Credit Card" + }, + { + "Id": 4154, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-12-27T12:00:17", + "TransactionId": 36032405, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 89, + "CustomerInfo": 48718296, + "PaymentType": "Cash" + }, + { + "Id": 4155, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2017-02-15T11:22:25", + "TransactionId": 37333818, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 687, + "CustomerInfo": 33165924, + "PaymentType": "Debit Card" + }, + { + "Id": 4156, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-06-17T07:26:24", + "TransactionId": 76741128, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 723, + "CustomerInfo": 18182581, + "PaymentType": "Credit Card" + }, + { + "Id": 4157, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2016-02-26T17:28:28", + "TransactionId": 76977787, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 23, + "CustomerInfo": 68068511, + "PaymentType": "Cash" + }, + { + "Id": 4158, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-06-16T13:05:31", + "TransactionId": 31507995, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 51348341, + "PaymentType": "Cash" + }, + { + "Id": 4159, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-05-31T10:48:09", + "TransactionId": 17897971, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 792, + "CustomerInfo": 92045720, + "PaymentType": "Debit Card" + }, + { + "Id": 4160, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-04-29T17:53:48", + "TransactionId": 41219684, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 787, + "CustomerInfo": 70008201, + "PaymentType": "Debit Card" + }, + { + "Id": 4161, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2019-10-15T08:00:32", + "TransactionId": 96430325, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 467, + "CustomerInfo": 8475889, + "PaymentType": "Cash" + }, + { + "Id": 4162, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2019-12-21T13:53:28", + "TransactionId": 82023387, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 397, + "CustomerInfo": 14430588, + "PaymentType": "Debit Card" + }, + { + "Id": 4163, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2016-01-12T09:27:22", + "TransactionId": 28177113, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 996, + "CustomerInfo": 11710204, + "PaymentType": "Debit Card" + }, + { + "Id": 4164, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-09-24T18:55:00", + "TransactionId": 18326027, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 864, + "CustomerInfo": 95361970, + "PaymentType": "Cash" + }, + { + "Id": 4165, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2017-11-11T18:50:50", + "TransactionId": 94099004, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 634, + "CustomerInfo": 14263885, + "PaymentType": "Debit Card" + }, + { + "Id": 4166, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2019-06-19T17:41:25", + "TransactionId": 82526668, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 552, + "CustomerInfo": 48744180, + "PaymentType": "Cash" + }, + { + "Id": 4167, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2017-07-13T09:48:06", + "TransactionId": 24879956, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 254, + "CustomerInfo": 77056495, + "PaymentType": "Credit Card" + }, + { + "Id": 4168, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2018-08-20T18:34:51", + "TransactionId": 38694545, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 676, + "CustomerInfo": 72516793, + "PaymentType": "Debit Card" + }, + { + "Id": 4169, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2019-03-31T13:38:38", + "TransactionId": 44947289, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 765, + "CustomerInfo": 28719638, + "PaymentType": "Cash" + }, + { + "Id": 4170, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2016-02-07T13:42:14", + "TransactionId": 19272217, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 257, + "CustomerInfo": 93252525, + "PaymentType": "Cash" + }, + { + "Id": 4171, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2019-10-20T12:29:05", + "TransactionId": 34383592, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 485, + "CustomerInfo": 90646810, + "PaymentType": "Cash" + }, + { + "Id": 4172, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-11-30T11:53:31", + "TransactionId": 51115431, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 386, + "CustomerInfo": 98324260, + "PaymentType": "Cash" + }, + { + "Id": 4173, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-09-29T11:46:19", + "TransactionId": 83273717, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 817, + "CustomerInfo": 79354541, + "PaymentType": "Cash" + }, + { + "Id": 4174, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2018-02-06T15:06:37", + "TransactionId": 48680543, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 345, + "CustomerInfo": 74263851, + "PaymentType": "Cash" + }, + { + "Id": 4175, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2018-07-18T17:12:20", + "TransactionId": 80264434, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 172, + "CustomerInfo": 60045399, + "PaymentType": "Cash" + }, + { + "Id": 4176, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2019-06-01T15:38:36", + "TransactionId": 70400381, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 638, + "CustomerInfo": 99752614, + "PaymentType": "Credit Card" + }, + { + "Id": 4177, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2018-10-23T15:06:20", + "TransactionId": 92424763, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 820, + "CustomerInfo": 33980670, + "PaymentType": "Debit Card" + }, + { + "Id": 4178, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-01-02T16:23:23", + "TransactionId": 41994038, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 748, + "CustomerInfo": 5889376, + "PaymentType": "Credit Card" + }, + { + "Id": 4179, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2018-06-13T14:20:59", + "TransactionId": 49230068, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 360, + "CustomerInfo": 43674400, + "PaymentType": "Credit Card" + }, + { + "Id": 4180, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2018-09-08T09:38:53", + "TransactionId": 38155265, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 84, + "CustomerInfo": 12326193, + "PaymentType": "Debit Card" + }, + { + "Id": 4181, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-08-10T09:58:02", + "TransactionId": 56281413, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 190, + "CustomerInfo": 85207588, + "PaymentType": "Credit Card" + }, + { + "Id": 4182, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2018-12-09T13:52:19", + "TransactionId": 91188422, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 682, + "CustomerInfo": 57246013, + "PaymentType": "Credit Card" + }, + { + "Id": 4183, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2017-05-10T11:27:53", + "TransactionId": 68571112, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 250, + "CustomerInfo": 37098121, + "PaymentType": "Cash" + }, + { + "Id": 4184, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-11-26T11:27:01", + "TransactionId": 59108654, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 160, + "CustomerInfo": 323537, + "PaymentType": "Debit Card" + }, + { + "Id": 4185, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-12-17T16:42:58", + "TransactionId": 11506906, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 475, + "CustomerInfo": 12927986, + "PaymentType": "Credit Card" + }, + { + "Id": 4186, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-06-22T10:53:54", + "TransactionId": 35181577, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 538, + "CustomerInfo": 73387320, + "PaymentType": "Credit Card" + }, + { + "Id": 4187, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-04-06T13:32:10", + "TransactionId": 64793882, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 179, + "CustomerInfo": 51007505, + "PaymentType": "Debit Card" + }, + { + "Id": 4188, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-07-25T09:23:28", + "TransactionId": 29204373, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 911, + "CustomerInfo": 20845670, + "PaymentType": "Cash" + }, + { + "Id": 4189, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-06-14T16:00:03", + "TransactionId": 94400424, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 2, + "CustomerInfo": 79091614, + "PaymentType": "Cash" + }, + { + "Id": 4190, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2016-07-28T13:12:26", + "TransactionId": 85551216, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 914, + "CustomerInfo": 34860402, + "PaymentType": "Debit Card" + }, + { + "Id": 4191, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2017-09-06T09:21:19", + "TransactionId": 44089129, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 350, + "CustomerInfo": 93690410, + "PaymentType": "Debit Card" + }, + { + "Id": 4192, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2017-08-17T13:48:09", + "TransactionId": 11859224, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 218, + "CustomerInfo": 87557697, + "PaymentType": "Credit Card" + }, + { + "Id": 4193, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2018-11-24T13:43:24", + "TransactionId": 57755460, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 93, + "CustomerInfo": 49267729, + "PaymentType": "Credit Card" + }, + { + "Id": 4194, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-10-24T10:25:41", + "TransactionId": 18211330, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 426, + "CustomerInfo": 76072683, + "PaymentType": "Debit Card" + }, + { + "Id": 4195, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2018-02-25T07:32:44", + "TransactionId": 84835957, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 815, + "CustomerInfo": 18355317, + "PaymentType": "Credit Card" + }, + { + "Id": 4196, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2016-11-03T19:49:09", + "TransactionId": 90497004, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 889, + "CustomerInfo": 13252078, + "PaymentType": "Debit Card" + }, + { + "Id": 4197, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2018-03-26T09:27:39", + "TransactionId": 56173782, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 189, + "CustomerInfo": 97537157, + "PaymentType": "Credit Card" + }, + { + "Id": 4198, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2017-12-08T13:43:58", + "TransactionId": 1696283, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 927, + "CustomerInfo": 78245020, + "PaymentType": "Debit Card" + }, + { + "Id": 4199, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-01-23T11:33:56", + "TransactionId": 32829071, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 915, + "CustomerInfo": 51724440, + "PaymentType": "Debit Card" + }, + { + "Id": 4200, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2017-07-25T19:12:26", + "TransactionId": 16394979, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 862, + "CustomerInfo": 41203833, + "PaymentType": "Cash" + }, + { + "Id": 4201, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2016-02-03T07:47:34", + "TransactionId": 56390814, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 493, + "CustomerInfo": 77385477, + "PaymentType": "Credit Card" + }, + { + "Id": 4202, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2017-09-06T17:55:06", + "TransactionId": 56689326, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 110, + "CustomerInfo": 89244219, + "PaymentType": "Cash" + }, + { + "Id": 4203, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-01-22T10:38:56", + "TransactionId": 58315318, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 955, + "CustomerInfo": 88930981, + "PaymentType": "Cash" + }, + { + "Id": 4204, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-04-12T19:52:19", + "TransactionId": 33452708, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 523, + "CustomerInfo": 69140662, + "PaymentType": "Credit Card" + }, + { + "Id": 4205, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-09-23T08:24:09", + "TransactionId": 12308274, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 159, + "CustomerInfo": 24057027, + "PaymentType": "Credit Card" + }, + { + "Id": 4206, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2016-10-01T17:03:07", + "TransactionId": 9659232, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 533, + "CustomerInfo": 83958452, + "PaymentType": "Debit Card" + }, + { + "Id": 4207, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-04-19T17:24:35", + "TransactionId": 47194239, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 734, + "CustomerInfo": 58453243, + "PaymentType": "Cash" + }, + { + "Id": 4208, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2017-11-25T09:10:39", + "TransactionId": 62874429, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 197, + "CustomerInfo": 44797550, + "PaymentType": "Credit Card" + }, + { + "Id": 4209, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2016-02-01T15:04:36", + "TransactionId": 66942781, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 122, + "CustomerInfo": 24602777, + "PaymentType": "Debit Card" + }, + { + "Id": 4210, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2018-07-26T18:03:53", + "TransactionId": 52259772, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 260, + "CustomerInfo": 22773427, + "PaymentType": "Cash" + }, + { + "Id": 4211, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-11-17T19:21:39", + "TransactionId": 42121088, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 805, + "CustomerInfo": 64942942, + "PaymentType": "Cash" + }, + { + "Id": 4212, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-05-03T19:26:07", + "TransactionId": 80729296, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 419, + "CustomerInfo": 52477847, + "PaymentType": "Debit Card" + }, + { + "Id": 4213, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2017-06-01T14:44:53", + "TransactionId": 20461256, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 72, + "CustomerInfo": 95425691, + "PaymentType": "Credit Card" + }, + { + "Id": 4214, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-08-29T17:26:44", + "TransactionId": 78022582, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 132, + "CustomerInfo": 81394462, + "PaymentType": "Cash" + }, + { + "Id": 4215, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2016-10-13T08:44:53", + "TransactionId": 37840501, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 402, + "CustomerInfo": 13517604, + "PaymentType": "Credit Card" + }, + { + "Id": 4216, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2016-01-02T11:40:25", + "TransactionId": 72921015, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 168, + "CustomerInfo": 19396219, + "PaymentType": "Cash" + }, + { + "Id": 4217, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-03-11T14:53:14", + "TransactionId": 45845096, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 425, + "CustomerInfo": 2253457, + "PaymentType": "Cash" + }, + { + "Id": 4218, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2016-12-16T16:07:15", + "TransactionId": 8808600, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 18, + "CustomerInfo": 80897388, + "PaymentType": "Credit Card" + }, + { + "Id": 4219, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-06-19T09:47:14", + "TransactionId": 56329306, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 216, + "CustomerInfo": 16448980, + "PaymentType": "Credit Card" + }, + { + "Id": 4220, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2019-03-29T15:54:43", + "TransactionId": 5654500, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 978, + "CustomerInfo": 1088057, + "PaymentType": "Debit Card" + }, + { + "Id": 4221, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-07-16T13:19:03", + "TransactionId": 38421043, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 292, + "CustomerInfo": 24428401, + "PaymentType": "Debit Card" + }, + { + "Id": 4222, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2017-12-25T10:24:23", + "TransactionId": 93236276, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 60178463, + "PaymentType": "Cash" + }, + { + "Id": 4223, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2016-09-18T12:54:52", + "TransactionId": 1797973, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 793, + "CustomerInfo": 37779311, + "PaymentType": "Credit Card" + }, + { + "Id": 4224, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-05-19T19:50:27", + "TransactionId": 27240366, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 352, + "CustomerInfo": 9880215, + "PaymentType": "Credit Card" + }, + { + "Id": 4225, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-10-08T08:08:53", + "TransactionId": 59090377, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 157, + "CustomerInfo": 28697778, + "PaymentType": "Cash" + }, + { + "Id": 4226, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2019-10-04T13:04:22", + "TransactionId": 59920362, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 742, + "CustomerInfo": 7574181, + "PaymentType": "Credit Card" + }, + { + "Id": 4227, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2018-01-16T14:09:01", + "TransactionId": 29911977, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 594, + "CustomerInfo": 34852818, + "PaymentType": "Debit Card" + }, + { + "Id": 4228, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2017-02-21T13:04:48", + "TransactionId": 79760039, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 575, + "CustomerInfo": 11591773, + "PaymentType": "Credit Card" + }, + { + "Id": 4229, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2016-03-06T09:57:27", + "TransactionId": 52363803, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 604, + "CustomerInfo": 49276631, + "PaymentType": "Debit Card" + }, + { + "Id": 4230, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-08-24T09:58:11", + "TransactionId": 57787267, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 776, + "CustomerInfo": 59995104, + "PaymentType": "Debit Card" + }, + { + "Id": 4231, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2019-02-01T16:21:04", + "TransactionId": 37630887, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 520, + "CustomerInfo": 90470826, + "PaymentType": "Cash" + }, + { + "Id": 4232, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-08-19T16:58:31", + "TransactionId": 342496, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 425, + "CustomerInfo": 67054396, + "PaymentType": "Credit Card" + }, + { + "Id": 4233, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2016-06-25T12:17:25", + "TransactionId": 9168894, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 66659443, + "PaymentType": "Credit Card" + }, + { + "Id": 4234, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-01-04T09:28:39", + "TransactionId": 46455409, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 112, + "CustomerInfo": 82529453, + "PaymentType": "Debit Card" + }, + { + "Id": 4235, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2017-04-03T08:19:58", + "TransactionId": 9364988, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 285, + "CustomerInfo": 61432084, + "PaymentType": "Debit Card" + }, + { + "Id": 4236, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2017-10-21T12:23:28", + "TransactionId": 84629449, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 494, + "CustomerInfo": 43169995, + "PaymentType": "Debit Card" + }, + { + "Id": 4237, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-05-02T08:48:46", + "TransactionId": 25616379, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 877, + "CustomerInfo": 36550979, + "PaymentType": "Cash" + }, + { + "Id": 4238, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-01-17T15:12:06", + "TransactionId": 70084524, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 602, + "CustomerInfo": 37097523, + "PaymentType": "Cash" + }, + { + "Id": 4239, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-01-31T15:23:02", + "TransactionId": 11268215, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 872, + "CustomerInfo": 19782015, + "PaymentType": "Debit Card" + }, + { + "Id": 4240, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-04-30T14:01:41", + "TransactionId": 58822256, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 845, + "CustomerInfo": 63720855, + "PaymentType": "Credit Card" + }, + { + "Id": 4241, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-12-05T19:16:02", + "TransactionId": 74379912, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 396, + "CustomerInfo": 9392063, + "PaymentType": "Debit Card" + }, + { + "Id": 4242, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2018-08-22T14:24:09", + "TransactionId": 6556386, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 193, + "CustomerInfo": 52135812, + "PaymentType": "Credit Card" + }, + { + "Id": 4243, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2018-09-21T09:07:47", + "TransactionId": 42405692, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 495, + "CustomerInfo": 22288289, + "PaymentType": "Debit Card" + }, + { + "Id": 4244, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2018-02-11T17:11:02", + "TransactionId": 98589031, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 36360766, + "PaymentType": "Credit Card" + }, + { + "Id": 4245, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-05-31T14:45:01", + "TransactionId": 94244049, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 648, + "CustomerInfo": 2590455, + "PaymentType": "Credit Card" + }, + { + "Id": 4246, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-08-03T13:03:56", + "TransactionId": 5386573, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 825, + "CustomerInfo": 82397072, + "PaymentType": "Credit Card" + }, + { + "Id": 4247, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2016-02-17T15:34:16", + "TransactionId": 84001092, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 307, + "CustomerInfo": 90143538, + "PaymentType": "Credit Card" + }, + { + "Id": 4248, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2016-11-17T19:09:50", + "TransactionId": 23806907, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 423, + "CustomerInfo": 29428958, + "PaymentType": "Credit Card" + }, + { + "Id": 4249, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-09-30T16:40:31", + "TransactionId": 41888580, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 2, + "CustomerInfo": 9091206, + "PaymentType": "Credit Card" + }, + { + "Id": 4250, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-06-30T19:42:06", + "TransactionId": 31907409, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 636, + "CustomerInfo": 37670943, + "PaymentType": "Cash" + }, + { + "Id": 4251, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2017-07-03T17:55:15", + "TransactionId": 8016178, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 275, + "CustomerInfo": 69212077, + "PaymentType": "Debit Card" + }, + { + "Id": 4252, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2017-12-12T16:59:31", + "TransactionId": 99070140, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 716, + "CustomerInfo": 79485965, + "PaymentType": "Debit Card" + }, + { + "Id": 4253, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2019-12-16T12:07:55", + "TransactionId": 2030615, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 927, + "CustomerInfo": 7359987, + "PaymentType": "Credit Card" + }, + { + "Id": 4254, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-04-04T17:42:00", + "TransactionId": 89878846, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 549, + "CustomerInfo": 93248911, + "PaymentType": "Debit Card" + }, + { + "Id": 4255, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2017-09-16T11:59:25", + "TransactionId": 92936983, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 161, + "CustomerInfo": 31788978, + "PaymentType": "Credit Card" + }, + { + "Id": 4256, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2019-11-22T10:40:22", + "TransactionId": 78905966, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 108, + "CustomerInfo": 78712334, + "PaymentType": "Credit Card" + }, + { + "Id": 4257, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2016-09-29T15:42:46", + "TransactionId": 54271616, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 532, + "CustomerInfo": 93725365, + "PaymentType": "Debit Card" + }, + { + "Id": 4258, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2016-04-21T10:06:14", + "TransactionId": 43328309, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 538, + "CustomerInfo": 67497082, + "PaymentType": "Cash" + }, + { + "Id": 4259, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2017-07-31T17:03:24", + "TransactionId": 17915, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 890, + "CustomerInfo": 51823944, + "PaymentType": "Debit Card" + }, + { + "Id": 4260, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-08-25T16:41:31", + "TransactionId": 29393372, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 597, + "CustomerInfo": 44906333, + "PaymentType": "Cash" + }, + { + "Id": 4261, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2016-06-26T19:14:01", + "TransactionId": 34026694, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 828, + "CustomerInfo": 30897811, + "PaymentType": "Cash" + }, + { + "Id": 4262, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-04-20T12:04:36", + "TransactionId": 24977048, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 982, + "CustomerInfo": 52518261, + "PaymentType": "Debit Card" + }, + { + "Id": 4263, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2017-08-08T13:32:53", + "TransactionId": 70040993, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 15, + "CustomerInfo": 24846287, + "PaymentType": "Debit Card" + }, + { + "Id": 4264, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2017-04-18T11:52:05", + "TransactionId": 8472666, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 894, + "CustomerInfo": 34835837, + "PaymentType": "Debit Card" + }, + { + "Id": 4265, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-02-23T07:19:47", + "TransactionId": 98476199, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 28, + "CustomerInfo": 89454627, + "PaymentType": "Credit Card" + }, + { + "Id": 4266, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2016-02-16T07:27:16", + "TransactionId": 5859706, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 422, + "CustomerInfo": 9333804, + "PaymentType": "Credit Card" + }, + { + "Id": 4267, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2019-04-13T08:49:47", + "TransactionId": 9907812, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 163, + "CustomerInfo": 84303365, + "PaymentType": "Cash" + }, + { + "Id": 4268, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2019-03-14T08:59:08", + "TransactionId": 75473759, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 942, + "CustomerInfo": 73058247, + "PaymentType": "Cash" + }, + { + "Id": 4269, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2017-11-16T15:52:08", + "TransactionId": 67780707, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 522, + "CustomerInfo": 86868451, + "PaymentType": "Debit Card" + }, + { + "Id": 4270, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2016-04-10T11:48:03", + "TransactionId": 6371261, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 109, + "CustomerInfo": 32778625, + "PaymentType": "Cash" + }, + { + "Id": 4271, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2018-12-03T10:13:00", + "TransactionId": 12064674, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 847, + "CustomerInfo": 89397100, + "PaymentType": "Credit Card" + }, + { + "Id": 4272, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-11-20T12:59:28", + "TransactionId": 12989260, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 685, + "CustomerInfo": 69061989, + "PaymentType": "Debit Card" + }, + { + "Id": 4273, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2018-09-02T16:55:47", + "TransactionId": 12820232, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 285, + "CustomerInfo": 75683859, + "PaymentType": "Credit Card" + }, + { + "Id": 4274, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2017-09-15T13:21:13", + "TransactionId": 1619933, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 459, + "CustomerInfo": 13411061, + "PaymentType": "Cash" + }, + { + "Id": 4275, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-11-13T11:04:25", + "TransactionId": 16321721, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 677, + "CustomerInfo": 75479620, + "PaymentType": "Cash" + }, + { + "Id": 4276, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-04-22T17:27:53", + "TransactionId": 54640811, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 950, + "CustomerInfo": 99713177, + "PaymentType": "Debit Card" + }, + { + "Id": 4277, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2017-04-05T10:43:58", + "TransactionId": 83628875, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 484, + "CustomerInfo": 78113127, + "PaymentType": "Credit Card" + }, + { + "Id": 4278, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-01-22T15:12:32", + "TransactionId": 97157024, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 409, + "CustomerInfo": 32618678, + "PaymentType": "Cash" + }, + { + "Id": 4279, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-07-20T09:26:56", + "TransactionId": 12439121, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 59, + "CustomerInfo": 37850755, + "PaymentType": "Credit Card" + }, + { + "Id": 4280, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2018-02-13T18:19:18", + "TransactionId": 44255400, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 647, + "CustomerInfo": 30406367, + "PaymentType": "Cash" + }, + { + "Id": 4281, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-06-17T18:15:50", + "TransactionId": 34340885, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 434, + "CustomerInfo": 28797795, + "PaymentType": "Cash" + }, + { + "Id": 4282, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2018-04-17T08:30:20", + "TransactionId": 30935614, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 28783571, + "PaymentType": "Debit Card" + }, + { + "Id": 4283, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-02-15T10:20:21", + "TransactionId": 54261205, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 14, + "CustomerInfo": 39068368, + "PaymentType": "Debit Card" + }, + { + "Id": 4284, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2019-08-21T15:14:59", + "TransactionId": 38568843, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 501, + "CustomerInfo": 32850853, + "PaymentType": "Cash" + }, + { + "Id": 4285, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-06-07T18:02:27", + "TransactionId": 4716185, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 918, + "CustomerInfo": 53003729, + "PaymentType": "Cash" + }, + { + "Id": 4286, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2017-03-03T18:22:02", + "TransactionId": 88392821, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 288, + "CustomerInfo": 42576947, + "PaymentType": "Cash" + }, + { + "Id": 4287, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-11-13T11:31:55", + "TransactionId": 38135824, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 814, + "CustomerInfo": 99406627, + "PaymentType": "Credit Card" + }, + { + "Id": 4288, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-07-30T09:26:21", + "TransactionId": 37371489, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 255, + "CustomerInfo": 98856984, + "PaymentType": "Cash" + }, + { + "Id": 4289, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2016-04-03T15:13:49", + "TransactionId": 58353370, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 20, + "CustomerInfo": 54078490, + "PaymentType": "Cash" + }, + { + "Id": 4290, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2016-03-12T08:31:55", + "TransactionId": 8317399, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 221, + "CustomerInfo": 31689429, + "PaymentType": "Credit Card" + }, + { + "Id": 4291, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-08-25T07:07:15", + "TransactionId": 46339688, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 652, + "CustomerInfo": 68714478, + "PaymentType": "Debit Card" + }, + { + "Id": 4292, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-02-21T13:04:48", + "TransactionId": 47854530, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 564, + "CustomerInfo": 96303010, + "PaymentType": "Credit Card" + }, + { + "Id": 4293, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2019-09-26T09:13:41", + "TransactionId": 73557791, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 252, + "CustomerInfo": 91678075, + "PaymentType": "Debit Card" + }, + { + "Id": 4294, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-04-25T15:41:11", + "TransactionId": 38446182, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 252, + "CustomerInfo": 82646458, + "PaymentType": "Credit Card" + }, + { + "Id": 4295, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2018-12-29T07:24:58", + "TransactionId": 8053307, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 62, + "CustomerInfo": 38786405, + "PaymentType": "Cash" + }, + { + "Id": 4296, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-01-06T16:52:28", + "TransactionId": 55649885, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 471, + "CustomerInfo": 5365330, + "PaymentType": "Cash" + }, + { + "Id": 4297, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2017-02-10T14:03:59", + "TransactionId": 79786504, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 421, + "CustomerInfo": 56801931, + "PaymentType": "Cash" + }, + { + "Id": 4298, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2017-09-19T07:43:58", + "TransactionId": 98057623, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 29, + "CustomerInfo": 65753517, + "PaymentType": "Debit Card" + }, + { + "Id": 4299, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2016-01-28T16:55:55", + "TransactionId": 21679108, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 287, + "CustomerInfo": 53345114, + "PaymentType": "Debit Card" + }, + { + "Id": 4300, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2016-08-06T11:37:32", + "TransactionId": 86806728, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 39, + "CustomerInfo": 33251225, + "PaymentType": "Credit Card" + }, + { + "Id": 4301, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2018-04-15T08:40:25", + "TransactionId": 80488998, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 575, + "CustomerInfo": 20898368, + "PaymentType": "Debit Card" + }, + { + "Id": 4302, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2017-05-08T15:28:22", + "TransactionId": 41049927, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 922, + "CustomerInfo": 46657766, + "PaymentType": "Credit Card" + }, + { + "Id": 4303, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2016-03-09T14:22:51", + "TransactionId": 86578791, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 722, + "CustomerInfo": 47891425, + "PaymentType": "Credit Card" + }, + { + "Id": 4304, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2016-06-12T11:11:11", + "TransactionId": 44844268, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 823, + "CustomerInfo": 70327068, + "PaymentType": "Credit Card" + }, + { + "Id": 4305, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2019-03-05T19:34:11", + "TransactionId": 4685210, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 58, + "CustomerInfo": 95126295, + "PaymentType": "Cash" + }, + { + "Id": 4306, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2019-01-11T13:51:01", + "TransactionId": 48056521, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 974, + "CustomerInfo": 83402384, + "PaymentType": "Credit Card" + }, + { + "Id": 4307, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-09-11T17:29:28", + "TransactionId": 21383642, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 948, + "CustomerInfo": 60367575, + "PaymentType": "Credit Card" + }, + { + "Id": 4308, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2019-02-23T09:15:50", + "TransactionId": 3166579, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 89, + "CustomerInfo": 77174618, + "PaymentType": "Debit Card" + }, + { + "Id": 4309, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-10-06T18:55:18", + "TransactionId": 31760827, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 987, + "CustomerInfo": 43975736, + "PaymentType": "Debit Card" + }, + { + "Id": 4310, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2018-09-10T11:27:45", + "TransactionId": 82467709, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 663, + "CustomerInfo": 53133980, + "PaymentType": "Cash" + }, + { + "Id": 4311, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-12-06T09:16:25", + "TransactionId": 55379116, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 382, + "CustomerInfo": 39872230, + "PaymentType": "Credit Card" + }, + { + "Id": 4312, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2016-02-15T10:47:17", + "TransactionId": 88486469, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 454, + "CustomerInfo": 83593609, + "PaymentType": "Credit Card" + }, + { + "Id": 4313, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-04-11T18:18:17", + "TransactionId": 10115130, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 983, + "CustomerInfo": 17803336, + "PaymentType": "Debit Card" + }, + { + "Id": 4314, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-02-23T14:52:05", + "TransactionId": 39855379, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 941, + "CustomerInfo": 67293549, + "PaymentType": "Cash" + }, + { + "Id": 4315, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-12-26T09:13:41", + "TransactionId": 60835929, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 940, + "CustomerInfo": 33821729, + "PaymentType": "Cash" + }, + { + "Id": 4316, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-03-21T10:48:35", + "TransactionId": 67066776, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 254, + "CustomerInfo": 56133468, + "PaymentType": "Cash" + }, + { + "Id": 4317, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2016-02-16T08:30:46", + "TransactionId": 27151002, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 802, + "CustomerInfo": 11401832, + "PaymentType": "Cash" + }, + { + "Id": 4318, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2017-03-08T12:12:58", + "TransactionId": 99768992, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 216, + "CustomerInfo": 70564672, + "PaymentType": "Cash" + }, + { + "Id": 4319, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-08-04T08:29:37", + "TransactionId": 65853237, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 353, + "CustomerInfo": 30104375, + "PaymentType": "Debit Card" + }, + { + "Id": 4320, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2016-08-20T11:11:46", + "TransactionId": 59960764, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 336, + "CustomerInfo": 86961522, + "PaymentType": "Credit Card" + }, + { + "Id": 4321, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-03-22T07:02:12", + "TransactionId": 80093100, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 651, + "CustomerInfo": 70465864, + "PaymentType": "Debit Card" + }, + { + "Id": 4322, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2018-08-23T17:50:56", + "TransactionId": 78877356, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 250, + "CustomerInfo": 58903129, + "PaymentType": "Debit Card" + }, + { + "Id": 4323, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2019-02-13T07:43:32", + "TransactionId": 33570255, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 498, + "CustomerInfo": 44679254, + "PaymentType": "Cash" + }, + { + "Id": 4324, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-07-10T18:49:49", + "TransactionId": 29174338, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 544, + "CustomerInfo": 60388285, + "PaymentType": "Credit Card" + }, + { + "Id": 4325, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-04-17T19:12:43", + "TransactionId": 56625476, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 768, + "CustomerInfo": 58531643, + "PaymentType": "Credit Card" + }, + { + "Id": 4326, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2017-10-08T08:26:18", + "TransactionId": 41755583, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 512, + "CustomerInfo": 28636924, + "PaymentType": "Debit Card" + }, + { + "Id": 4327, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2016-02-15T14:25:26", + "TransactionId": 45204281, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 147, + "CustomerInfo": 71770881, + "PaymentType": "Credit Card" + }, + { + "Id": 4328, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2018-06-24T16:55:03", + "TransactionId": 26110823, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 654, + "CustomerInfo": 17897497, + "PaymentType": "Credit Card" + }, + { + "Id": 4329, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2019-02-27T13:14:27", + "TransactionId": 95391772, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 636, + "CustomerInfo": 91085826, + "PaymentType": "Debit Card" + }, + { + "Id": 4330, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2017-02-15T14:57:42", + "TransactionId": 52547267, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 645, + "CustomerInfo": 71477863, + "PaymentType": "Debit Card" + }, + { + "Id": 4331, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2018-10-10T19:00:37", + "TransactionId": 25800573, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 66, + "CustomerInfo": 44751669, + "PaymentType": "Debit Card" + }, + { + "Id": 4332, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-10-31T07:53:20", + "TransactionId": 46064890, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 897, + "CustomerInfo": 70254012, + "PaymentType": "Credit Card" + }, + { + "Id": 4333, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-02-15T16:51:10", + "TransactionId": 46628353, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 748, + "CustomerInfo": 45108435, + "PaymentType": "Debit Card" + }, + { + "Id": 4334, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-05-30T13:30:00", + "TransactionId": 22741686, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 905, + "CustomerInfo": 32299274, + "PaymentType": "Debit Card" + }, + { + "Id": 4335, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-04-14T16:13:00", + "TransactionId": 97961266, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 105, + "CustomerInfo": 91254537, + "PaymentType": "Credit Card" + }, + { + "Id": 4336, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2017-05-07T19:52:02", + "TransactionId": 11364286, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 617, + "CustomerInfo": 30438951, + "PaymentType": "Cash" + }, + { + "Id": 4337, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2018-04-18T19:48:35", + "TransactionId": 27132943, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 19531948, + "PaymentType": "Credit Card" + }, + { + "Id": 4338, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2017-09-20T16:34:11", + "TransactionId": 80276082, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 50, + "CustomerInfo": 16257777, + "PaymentType": "Cash" + }, + { + "Id": 4339, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-03-30T09:48:49", + "TransactionId": 4702273, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 564, + "CustomerInfo": 31559254, + "PaymentType": "Cash" + }, + { + "Id": 4340, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2018-02-10T09:39:10", + "TransactionId": 1164860, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 188, + "CustomerInfo": 22111595, + "PaymentType": "Debit Card" + }, + { + "Id": 4341, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-10-24T13:22:05", + "TransactionId": 70375109, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 690, + "CustomerInfo": 17590178, + "PaymentType": "Cash" + }, + { + "Id": 4342, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2016-10-29T08:05:08", + "TransactionId": 69181338, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 848, + "CustomerInfo": 31838828, + "PaymentType": "Credit Card" + }, + { + "Id": 4343, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2019-10-23T17:08:36", + "TransactionId": 95235251, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 47820939, + "PaymentType": "Cash" + }, + { + "Id": 4344, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2017-02-02T10:59:31", + "TransactionId": 57538218, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 46247022, + "PaymentType": "Debit Card" + }, + { + "Id": 4345, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-03-16T15:27:30", + "TransactionId": 71621238, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 774, + "CustomerInfo": 39257103, + "PaymentType": "Credit Card" + }, + { + "Id": 4346, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2019-08-28T09:07:55", + "TransactionId": 49940830, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 290, + "CustomerInfo": 67299293, + "PaymentType": "Debit Card" + }, + { + "Id": 4347, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-11-01T19:12:17", + "TransactionId": 18415836, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 948, + "CustomerInfo": 34198156, + "PaymentType": "Debit Card" + }, + { + "Id": 4348, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-09-17T18:23:37", + "TransactionId": 58223885, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 165, + "CustomerInfo": 48751220, + "PaymentType": "Cash" + }, + { + "Id": 4349, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2016-03-16T13:16:36", + "TransactionId": 54619010, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 700, + "CustomerInfo": 64257295, + "PaymentType": "Cash" + }, + { + "Id": 4350, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2017-08-28T19:26:07", + "TransactionId": 24944964, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 629, + "CustomerInfo": 13772387, + "PaymentType": "Cash" + }, + { + "Id": 4351, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-04-14T10:50:36", + "TransactionId": 41347338, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 524, + "CustomerInfo": 32093410, + "PaymentType": "Debit Card" + }, + { + "Id": 4352, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2019-02-03T07:15:53", + "TransactionId": 68940852, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 720, + "CustomerInfo": 68601837, + "PaymentType": "Cash" + }, + { + "Id": 4353, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2018-11-19T16:38:04", + "TransactionId": 94157164, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 842, + "CustomerInfo": 37785716, + "PaymentType": "Debit Card" + }, + { + "Id": 4354, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2019-02-19T10:36:03", + "TransactionId": 30466576, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 702, + "CustomerInfo": 11960401, + "PaymentType": "Cash" + }, + { + "Id": 4355, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2019-02-11T14:31:55", + "TransactionId": 39070661, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 355, + "CustomerInfo": 26134378, + "PaymentType": "Debit Card" + }, + { + "Id": 4356, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-04-10T08:25:18", + "TransactionId": 23691043, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 63, + "CustomerInfo": 34822049, + "PaymentType": "Credit Card" + }, + { + "Id": 4357, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-07-16T19:54:03", + "TransactionId": 51355900, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 442, + "CustomerInfo": 31811280, + "PaymentType": "Cash" + }, + { + "Id": 4358, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2017-11-28T17:06:43", + "TransactionId": 28941113, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 628, + "CustomerInfo": 626292, + "PaymentType": "Debit Card" + }, + { + "Id": 4359, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2019-04-04T19:25:06", + "TransactionId": 1244472, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 226, + "CustomerInfo": 58559226, + "PaymentType": "Debit Card" + }, + { + "Id": 4360, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-10-15T10:21:48", + "TransactionId": 62225121, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 948, + "CustomerInfo": 21203759, + "PaymentType": "Credit Card" + }, + { + "Id": 4361, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-04-09T18:01:18", + "TransactionId": 4824531, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 44486456, + "PaymentType": "Cash" + }, + { + "Id": 4362, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-05-29T13:34:02", + "TransactionId": 57888190, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 210, + "CustomerInfo": 20089966, + "PaymentType": "Debit Card" + }, + { + "Id": 4363, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2018-03-06T08:58:08", + "TransactionId": 77669012, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 838, + "CustomerInfo": 3034854, + "PaymentType": "Cash" + }, + { + "Id": 4364, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2016-01-24T07:40:13", + "TransactionId": 43871098, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 114, + "CustomerInfo": 62624537, + "PaymentType": "Cash" + }, + { + "Id": 4365, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-01-22T10:31:26", + "TransactionId": 67493758, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 677, + "CustomerInfo": 2312986, + "PaymentType": "Cash" + }, + { + "Id": 4366, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-05-31T08:00:32", + "TransactionId": 61304636, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 551, + "CustomerInfo": 8919792, + "PaymentType": "Cash" + }, + { + "Id": 4367, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2018-06-25T10:15:01", + "TransactionId": 65414779, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 351, + "CustomerInfo": 13815394, + "PaymentType": "Debit Card" + }, + { + "Id": 4368, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-05-19T14:13:12", + "TransactionId": 53139950, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 502, + "CustomerInfo": 39748548, + "PaymentType": "Debit Card" + }, + { + "Id": 4369, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-08-01T09:00:17", + "TransactionId": 85699340, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 95, + "CustomerInfo": 63474153, + "PaymentType": "Credit Card" + }, + { + "Id": 4370, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2019-12-03T11:05:43", + "TransactionId": 63816256, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 612, + "CustomerInfo": 6437683, + "PaymentType": "Debit Card" + }, + { + "Id": 4371, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2016-06-10T10:40:48", + "TransactionId": 36476379, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 970, + "CustomerInfo": 29427843, + "PaymentType": "Cash" + }, + { + "Id": 4372, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2016-04-11T11:49:21", + "TransactionId": 90360519, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 173, + "CustomerInfo": 4453939, + "PaymentType": "Cash" + }, + { + "Id": 4373, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2019-07-14T09:31:06", + "TransactionId": 82239945, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 455, + "CustomerInfo": 29982896, + "PaymentType": "Cash" + }, + { + "Id": 4374, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2016-10-26T19:58:05", + "TransactionId": 87561211, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 15, + "CustomerInfo": 23985373, + "PaymentType": "Credit Card" + }, + { + "Id": 4375, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2016-03-04T17:01:15", + "TransactionId": 37163860, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 416, + "CustomerInfo": 45143246, + "PaymentType": "Debit Card" + }, + { + "Id": 4376, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-04-11T14:46:19", + "TransactionId": 28203506, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 21485139, + "PaymentType": "Debit Card" + }, + { + "Id": 4377, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2016-09-20T17:38:41", + "TransactionId": 61476558, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 576, + "CustomerInfo": 95756557, + "PaymentType": "Debit Card" + }, + { + "Id": 4378, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-04-27T14:52:13", + "TransactionId": 29071561, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 761, + "CustomerInfo": 86494553, + "PaymentType": "Cash" + }, + { + "Id": 4379, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2016-01-16T18:02:01", + "TransactionId": 49034069, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 434, + "CustomerInfo": 2334729, + "PaymentType": "Cash" + }, + { + "Id": 4380, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-08-13T16:07:24", + "TransactionId": 71064809, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 125, + "CustomerInfo": 83577507, + "PaymentType": "Debit Card" + }, + { + "Id": 4381, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-09-22T16:12:35", + "TransactionId": 22512990, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 104, + "CustomerInfo": 69837190, + "PaymentType": "Credit Card" + }, + { + "Id": 4382, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-12-06T10:15:45", + "TransactionId": 64871109, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 337, + "CustomerInfo": 43028170, + "PaymentType": "Debit Card" + }, + { + "Id": 4383, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-06-03T07:14:44", + "TransactionId": 17883446, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 626, + "CustomerInfo": 28164729, + "PaymentType": "Cash" + }, + { + "Id": 4384, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2017-03-14T09:02:44", + "TransactionId": 30159560, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 576, + "CustomerInfo": 39868512, + "PaymentType": "Credit Card" + }, + { + "Id": 4385, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2016-01-01T10:12:17", + "TransactionId": 7810720, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 500, + "CustomerInfo": 48669597, + "PaymentType": "Cash" + }, + { + "Id": 4386, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-11-14T13:25:24", + "TransactionId": 96399008, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 936, + "CustomerInfo": 9619450, + "PaymentType": "Debit Card" + }, + { + "Id": 4387, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2017-05-06T13:48:43", + "TransactionId": 25662161, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 64419403, + "PaymentType": "Cash" + }, + { + "Id": 4388, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-06-17T10:29:51", + "TransactionId": 33902487, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 297, + "CustomerInfo": 47060525, + "PaymentType": "Debit Card" + }, + { + "Id": 4389, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-03-03T17:58:25", + "TransactionId": 34991230, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 84, + "CustomerInfo": 34022536, + "PaymentType": "Debit Card" + }, + { + "Id": 4390, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2018-06-27T11:54:06", + "TransactionId": 93313627, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 826, + "CustomerInfo": 83465203, + "PaymentType": "Debit Card" + }, + { + "Id": 4391, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2019-10-04T11:01:41", + "TransactionId": 76712014, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 461, + "CustomerInfo": 56734045, + "PaymentType": "Debit Card" + }, + { + "Id": 4392, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2016-06-04T10:20:21", + "TransactionId": 41480456, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 928, + "CustomerInfo": 28801471, + "PaymentType": "Debit Card" + }, + { + "Id": 4393, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-02-28T17:18:14", + "TransactionId": 78312597, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 65, + "CustomerInfo": 56681687, + "PaymentType": "Debit Card" + }, + { + "Id": 4394, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-05-15T19:41:05", + "TransactionId": 59388887, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 164, + "CustomerInfo": 94026992, + "PaymentType": "Cash" + }, + { + "Id": 4395, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-08-12T15:03:36", + "TransactionId": 46895734, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 952, + "CustomerInfo": 85191165, + "PaymentType": "Cash" + }, + { + "Id": 4396, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2018-09-11T12:08:56", + "TransactionId": 4050682, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 885, + "CustomerInfo": 31172287, + "PaymentType": "Credit Card" + }, + { + "Id": 4397, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-05-10T08:42:35", + "TransactionId": 78248316, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 187, + "CustomerInfo": 93147509, + "PaymentType": "Debit Card" + }, + { + "Id": 4398, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2017-08-12T11:50:30", + "TransactionId": 11397394, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 960, + "CustomerInfo": 32646080, + "PaymentType": "Cash" + }, + { + "Id": 4399, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-05-04T09:03:10", + "TransactionId": 20856497, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 449, + "CustomerInfo": 27089895, + "PaymentType": "Debit Card" + }, + { + "Id": 4400, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2019-06-30T15:07:47", + "TransactionId": 57972563, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 70, + "CustomerInfo": 67926112, + "PaymentType": "Credit Card" + }, + { + "Id": 4401, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2017-01-04T13:49:52", + "TransactionId": 13700416, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 248, + "CustomerInfo": 63970089, + "PaymentType": "Credit Card" + }, + { + "Id": 4402, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2017-03-06T10:49:18", + "TransactionId": 12145241, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 292, + "CustomerInfo": 52697880, + "PaymentType": "Cash" + }, + { + "Id": 4403, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2017-05-25T10:23:57", + "TransactionId": 42870815, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 969, + "CustomerInfo": 47007090, + "PaymentType": "Debit Card" + }, + { + "Id": 4404, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2019-02-22T15:05:11", + "TransactionId": 22710245, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 573, + "CustomerInfo": 19903543, + "PaymentType": "Debit Card" + }, + { + "Id": 4405, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-11-11T07:45:59", + "TransactionId": 7897712, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 385, + "CustomerInfo": 80761678, + "PaymentType": "Credit Card" + }, + { + "Id": 4406, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-07-07T08:54:23", + "TransactionId": 47106181, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 506, + "CustomerInfo": 73569647, + "PaymentType": "Credit Card" + }, + { + "Id": 4407, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-09-30T13:05:40", + "TransactionId": 41475646, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 913, + "CustomerInfo": 82689820, + "PaymentType": "Debit Card" + }, + { + "Id": 4408, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2016-08-16T11:46:02", + "TransactionId": 19024954, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 506, + "CustomerInfo": 15513257, + "PaymentType": "Credit Card" + }, + { + "Id": 4409, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-02-14T12:26:56", + "TransactionId": 79832854, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 550, + "CustomerInfo": 61693330, + "PaymentType": "Credit Card" + }, + { + "Id": 4410, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-02-02T19:04:31", + "TransactionId": 79374518, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 670, + "CustomerInfo": 78677102, + "PaymentType": "Debit Card" + }, + { + "Id": 4411, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2016-10-11T16:04:48", + "TransactionId": 99872726, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 410, + "CustomerInfo": 38558423, + "PaymentType": "Debit Card" + }, + { + "Id": 4412, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2016-01-18T14:18:32", + "TransactionId": 94274678, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 951, + "CustomerInfo": 3224771, + "PaymentType": "Cash" + }, + { + "Id": 4413, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-12-23T16:15:36", + "TransactionId": 26660225, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 51041803, + "PaymentType": "Credit Card" + }, + { + "Id": 4414, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-07-19T14:50:38", + "TransactionId": 6549173, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 106, + "CustomerInfo": 89078281, + "PaymentType": "Debit Card" + }, + { + "Id": 4415, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-12-16T07:32:18", + "TransactionId": 5475600, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 177, + "CustomerInfo": 97358749, + "PaymentType": "Debit Card" + }, + { + "Id": 4416, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-01-27T18:48:58", + "TransactionId": 61085025, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 106, + "CustomerInfo": 97780685, + "PaymentType": "Debit Card" + }, + { + "Id": 4417, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2017-12-03T14:54:40", + "TransactionId": 12408537, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 390, + "CustomerInfo": 29541564, + "PaymentType": "Cash" + }, + { + "Id": 4418, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-01-19T11:03:24", + "TransactionId": 79529511, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 401, + "CustomerInfo": 94576821, + "PaymentType": "Debit Card" + }, + { + "Id": 4419, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-01-15T16:57:13", + "TransactionId": 7950718, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 54, + "CustomerInfo": 91881075, + "PaymentType": "Cash" + }, + { + "Id": 4420, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2016-12-08T15:07:38", + "TransactionId": 24278587, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 159, + "CustomerInfo": 19472999, + "PaymentType": "Cash" + }, + { + "Id": 4421, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-09-17T12:30:40", + "TransactionId": 43434123, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 697, + "CustomerInfo": 34082663, + "PaymentType": "Cash" + }, + { + "Id": 4422, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2017-10-05T13:33:36", + "TransactionId": 50613541, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 289, + "CustomerInfo": 90170981, + "PaymentType": "Debit Card" + }, + { + "Id": 4423, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-02-18T08:39:07", + "TransactionId": 26675724, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 306, + "CustomerInfo": 46699978, + "PaymentType": "Debit Card" + }, + { + "Id": 4424, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2017-07-09T11:54:23", + "TransactionId": 26223510, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 101, + "CustomerInfo": 39676328, + "PaymentType": "Debit Card" + }, + { + "Id": 4425, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-04-29T13:24:06", + "TransactionId": 34660622, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 32, + "CustomerInfo": 2853094, + "PaymentType": "Credit Card" + }, + { + "Id": 4426, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2019-07-23T16:13:09", + "TransactionId": 66705181, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 250, + "CustomerInfo": 78983989, + "PaymentType": "Credit Card" + }, + { + "Id": 4427, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-09-26T07:10:16", + "TransactionId": 7623928, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 654, + "CustomerInfo": 66826359, + "PaymentType": "Cash" + }, + { + "Id": 4428, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2017-04-10T12:07:29", + "TransactionId": 43687858, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 121, + "CustomerInfo": 68640105, + "PaymentType": "Credit Card" + }, + { + "Id": 4429, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2016-07-22T07:35:54", + "TransactionId": 6994776, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 785, + "CustomerInfo": 57006825, + "PaymentType": "Credit Card" + }, + { + "Id": 4430, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2016-04-01T18:15:07", + "TransactionId": 68455792, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 815, + "CustomerInfo": 69787128, + "PaymentType": "Cash" + }, + { + "Id": 4431, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-08-16T12:52:16", + "TransactionId": 82641546, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 386, + "CustomerInfo": 33102058, + "PaymentType": "Credit Card" + }, + { + "Id": 4432, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2018-12-07T10:02:30", + "TransactionId": 82425199, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 789, + "CustomerInfo": 71017048, + "PaymentType": "Debit Card" + }, + { + "Id": 4433, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-01-31T13:00:20", + "TransactionId": 24567191, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 816, + "CustomerInfo": 9990922, + "PaymentType": "Credit Card" + }, + { + "Id": 4434, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-01-08T08:50:21", + "TransactionId": 77832833, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 540, + "CustomerInfo": 54655248, + "PaymentType": "Cash" + }, + { + "Id": 4435, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-12-04T14:35:57", + "TransactionId": 41377257, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 25264914, + "PaymentType": "Credit Card" + }, + { + "Id": 4436, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2017-02-26T18:56:01", + "TransactionId": 91997333, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 331, + "CustomerInfo": 82885984, + "PaymentType": "Cash" + }, + { + "Id": 4437, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-07-12T17:02:41", + "TransactionId": 25812663, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 694, + "CustomerInfo": 74619261, + "PaymentType": "Cash" + }, + { + "Id": 4438, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-07-31T14:34:48", + "TransactionId": 38736747, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 10962714, + "PaymentType": "Credit Card" + }, + { + "Id": 4439, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-01-25T08:54:14", + "TransactionId": 97665566, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 286, + "CustomerInfo": 31379314, + "PaymentType": "Cash" + }, + { + "Id": 4440, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-02-11T18:46:48", + "TransactionId": 72081354, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 215, + "CustomerInfo": 2933588, + "PaymentType": "Debit Card" + }, + { + "Id": 4441, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2017-10-17T09:10:48", + "TransactionId": 56141823, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 134, + "CustomerInfo": 89693574, + "PaymentType": "Credit Card" + }, + { + "Id": 4442, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-06-23T12:19:18", + "TransactionId": 25104934, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 648, + "CustomerInfo": 81374051, + "PaymentType": "Debit Card" + }, + { + "Id": 4443, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2019-03-25T12:49:06", + "TransactionId": 72955141, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 686, + "CustomerInfo": 81969298, + "PaymentType": "Debit Card" + }, + { + "Id": 4444, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2018-03-19T19:30:35", + "TransactionId": 56746436, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 954, + "CustomerInfo": 58616971, + "PaymentType": "Cash" + }, + { + "Id": 4445, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2018-07-22T18:39:45", + "TransactionId": 8263899, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 160, + "CustomerInfo": 48749524, + "PaymentType": "Credit Card" + }, + { + "Id": 4446, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-12-12T09:23:28", + "TransactionId": 59781160, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 641, + "CustomerInfo": 84294107, + "PaymentType": "Cash" + }, + { + "Id": 4447, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2019-04-17T19:06:14", + "TransactionId": 21269532, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 513, + "CustomerInfo": 93442169, + "PaymentType": "Cash" + }, + { + "Id": 4448, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2017-12-20T08:35:31", + "TransactionId": 42489301, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 896, + "CustomerInfo": 15652102, + "PaymentType": "Cash" + }, + { + "Id": 4449, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-01-08T08:03:16", + "TransactionId": 76273375, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 23, + "CustomerInfo": 32607072, + "PaymentType": "Debit Card" + }, + { + "Id": 4450, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-12-08T14:34:57", + "TransactionId": 71129100, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 316, + "CustomerInfo": 50847146, + "PaymentType": "Cash" + }, + { + "Id": 4451, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-05-17T15:15:07", + "TransactionId": 70832106, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 277, + "CustomerInfo": 65227606, + "PaymentType": "Debit Card" + }, + { + "Id": 4452, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2019-01-20T14:53:48", + "TransactionId": 23419506, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 735, + "CustomerInfo": 85747355, + "PaymentType": "Credit Card" + }, + { + "Id": 4453, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-11-03T10:41:05", + "TransactionId": 89755865, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 881, + "CustomerInfo": 39163890, + "PaymentType": "Debit Card" + }, + { + "Id": 4454, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-07-09T17:50:56", + "TransactionId": 84064167, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 693, + "CustomerInfo": 54908559, + "PaymentType": "Cash" + }, + { + "Id": 4455, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2018-03-04T08:26:18", + "TransactionId": 53906925, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 300, + "CustomerInfo": 23336557, + "PaymentType": "Cash" + }, + { + "Id": 4456, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-09-23T15:41:54", + "TransactionId": 9079399, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 799, + "CustomerInfo": 92243089, + "PaymentType": "Debit Card" + }, + { + "Id": 4457, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-04-02T09:44:12", + "TransactionId": 35554661, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 69767615, + "PaymentType": "Cash" + }, + { + "Id": 4458, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2019-10-15T12:56:18", + "TransactionId": 97530901, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 751, + "CustomerInfo": 44142445, + "PaymentType": "Debit Card" + }, + { + "Id": 4459, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-09-19T15:54:00", + "TransactionId": 65109848, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 411, + "CustomerInfo": 16710979, + "PaymentType": "Debit Card" + }, + { + "Id": 4460, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2018-05-03T10:48:52", + "TransactionId": 82305507, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 690, + "CustomerInfo": 28734476, + "PaymentType": "Credit Card" + }, + { + "Id": 4461, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2019-05-30T17:51:22", + "TransactionId": 22300631, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 721, + "CustomerInfo": 98825785, + "PaymentType": "Debit Card" + }, + { + "Id": 4462, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-08-08T12:58:36", + "TransactionId": 76326460, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 184, + "CustomerInfo": 88246397, + "PaymentType": "Cash" + }, + { + "Id": 4463, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-06-20T12:30:40", + "TransactionId": 39154278, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 705, + "CustomerInfo": 20348789, + "PaymentType": "Credit Card" + }, + { + "Id": 4464, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-02-13T12:18:00", + "TransactionId": 10435523, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 298, + "CustomerInfo": 46218100, + "PaymentType": "Cash" + }, + { + "Id": 4465, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2018-07-13T16:03:22", + "TransactionId": 46100968, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 999, + "CustomerInfo": 42158142, + "PaymentType": "Credit Card" + }, + { + "Id": 4466, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2017-03-13T19:54:46", + "TransactionId": 70432555, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 271, + "CustomerInfo": 32580527, + "PaymentType": "Credit Card" + }, + { + "Id": 4467, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-10-14T09:57:27", + "TransactionId": 87096858, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 454, + "CustomerInfo": 11924127, + "PaymentType": "Debit Card" + }, + { + "Id": 4468, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2019-04-02T16:03:30", + "TransactionId": 46624914, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 991, + "CustomerInfo": 46159613, + "PaymentType": "Debit Card" + }, + { + "Id": 4469, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2018-11-10T10:29:00", + "TransactionId": 1599917, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 109, + "CustomerInfo": 93920732, + "PaymentType": "Cash" + }, + { + "Id": 4470, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2017-05-22T18:54:00", + "TransactionId": 23928782, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 620, + "CustomerInfo": 7547954, + "PaymentType": "Credit Card" + }, + { + "Id": 4471, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-06-14T15:36:09", + "TransactionId": 60726024, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 797, + "CustomerInfo": 94358350, + "PaymentType": "Credit Card" + }, + { + "Id": 4472, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-08-30T10:34:54", + "TransactionId": 88384040, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 725, + "CustomerInfo": 90681114, + "PaymentType": "Debit Card" + }, + { + "Id": 4473, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-07-14T07:54:37", + "TransactionId": 42075552, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 280, + "CustomerInfo": 21828872, + "PaymentType": "Credit Card" + }, + { + "Id": 4474, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2019-02-20T11:41:17", + "TransactionId": 61979717, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 643, + "CustomerInfo": 24558079, + "PaymentType": "Debit Card" + }, + { + "Id": 4475, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-12-16T13:30:09", + "TransactionId": 47093186, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 934, + "CustomerInfo": 42677574, + "PaymentType": "Cash" + }, + { + "Id": 4476, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2018-06-16T14:02:07", + "TransactionId": 7964810, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 967, + "CustomerInfo": 61779507, + "PaymentType": "Debit Card" + }, + { + "Id": 4477, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2018-02-25T19:33:01", + "TransactionId": 85636317, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 486, + "CustomerInfo": 18246468, + "PaymentType": "Debit Card" + }, + { + "Id": 4478, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-03-29T15:11:05", + "TransactionId": 27939487, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 818, + "CustomerInfo": 91059280, + "PaymentType": "Debit Card" + }, + { + "Id": 4479, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2017-06-07T08:31:47", + "TransactionId": 41848251, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 612, + "CustomerInfo": 85367875, + "PaymentType": "Cash" + }, + { + "Id": 4480, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2016-07-27T17:46:54", + "TransactionId": 62768829, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 313, + "CustomerInfo": 86699089, + "PaymentType": "Cash" + }, + { + "Id": 4481, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2017-04-20T15:31:41", + "TransactionId": 56424246, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 546, + "CustomerInfo": 7935379, + "PaymentType": "Debit Card" + }, + { + "Id": 4482, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2018-06-27T15:44:47", + "TransactionId": 32500546, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 96, + "CustomerInfo": 31802866, + "PaymentType": "Credit Card" + }, + { + "Id": 4483, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-04-09T11:30:37", + "TransactionId": 43607599, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 186, + "CustomerInfo": 50282944, + "PaymentType": "Cash" + }, + { + "Id": 4484, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2017-04-27T14:28:45", + "TransactionId": 16724268, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 540, + "CustomerInfo": 24804971, + "PaymentType": "Debit Card" + }, + { + "Id": 4485, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2017-03-27T12:40:02", + "TransactionId": 47372339, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 914, + "CustomerInfo": 77763936, + "PaymentType": "Credit Card" + }, + { + "Id": 4486, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-07-01T08:27:19", + "TransactionId": 42262924, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 375, + "CustomerInfo": 29711714, + "PaymentType": "Cash" + }, + { + "Id": 4487, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-05-19T14:03:50", + "TransactionId": 62492184, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 932, + "CustomerInfo": 28368587, + "PaymentType": "Debit Card" + }, + { + "Id": 4488, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2017-06-10T11:04:51", + "TransactionId": 72000335, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 244, + "CustomerInfo": 26569408, + "PaymentType": "Cash" + }, + { + "Id": 4489, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2018-02-18T17:59:08", + "TransactionId": 22623614, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 710, + "CustomerInfo": 12133071, + "PaymentType": "Credit Card" + }, + { + "Id": 4490, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-04-26T14:37:41", + "TransactionId": 9898291, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 516, + "CustomerInfo": 33745054, + "PaymentType": "Cash" + }, + { + "Id": 4491, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-03-09T19:03:39", + "TransactionId": 4897447, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 449, + "CustomerInfo": 7745519, + "PaymentType": "Credit Card" + }, + { + "Id": 4492, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2019-12-24T16:09:50", + "TransactionId": 46269004, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 759, + "CustomerInfo": 35682032, + "PaymentType": "Debit Card" + }, + { + "Id": 4493, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-08-23T11:52:57", + "TransactionId": 46429781, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 259, + "CustomerInfo": 82970933, + "PaymentType": "Debit Card" + }, + { + "Id": 4494, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-03-13T16:05:14", + "TransactionId": 39577482, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 327, + "CustomerInfo": 22927701, + "PaymentType": "Credit Card" + }, + { + "Id": 4495, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2017-02-02T08:09:01", + "TransactionId": 53359180, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 24, + "CustomerInfo": 56887866, + "PaymentType": "Debit Card" + }, + { + "Id": 4496, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2016-07-31T17:12:20", + "TransactionId": 16644532, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 825, + "CustomerInfo": 56752328, + "PaymentType": "Cash" + }, + { + "Id": 4497, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2019-12-07T07:31:44", + "TransactionId": 37242786, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 418, + "CustomerInfo": 98397358, + "PaymentType": "Debit Card" + }, + { + "Id": 4498, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-04-11T17:32:12", + "TransactionId": 69804428, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 177, + "CustomerInfo": 93182326, + "PaymentType": "Credit Card" + }, + { + "Id": 4499, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-12-27T07:18:46", + "TransactionId": 58751353, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 97, + "CustomerInfo": 70274130, + "PaymentType": "Cash" + }, + { + "Id": 4500, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2017-01-27T10:13:52", + "TransactionId": 7458349, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 533, + "CustomerInfo": 9547107, + "PaymentType": "Cash" + }, + { + "Id": 4501, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2017-05-14T10:39:04", + "TransactionId": 57097886, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 885, + "CustomerInfo": 49599206, + "PaymentType": "Cash" + }, + { + "Id": 4502, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-10-23T12:36:35", + "TransactionId": 47061340, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 68, + "CustomerInfo": 33886822, + "PaymentType": "Cash" + }, + { + "Id": 4503, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2019-05-17T10:35:46", + "TransactionId": 36222735, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 172, + "CustomerInfo": 30914103, + "PaymentType": "Debit Card" + }, + { + "Id": 4504, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2016-12-22T10:20:38", + "TransactionId": 25278085, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 629, + "CustomerInfo": 44075886, + "PaymentType": "Debit Card" + }, + { + "Id": 4505, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2018-03-13T08:11:37", + "TransactionId": 5036745, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 180, + "CustomerInfo": 28574304, + "PaymentType": "Debit Card" + }, + { + "Id": 4506, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2017-03-08T08:17:31", + "TransactionId": 10575557, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 548, + "CustomerInfo": 98178070, + "PaymentType": "Debit Card" + }, + { + "Id": 4507, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2019-11-17T07:47:25", + "TransactionId": 59715326, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 872, + "CustomerInfo": 99807427, + "PaymentType": "Cash" + }, + { + "Id": 4508, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2019-03-15T10:40:48", + "TransactionId": 7897428, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 15, + "CustomerInfo": 5073986, + "PaymentType": "Debit Card" + }, + { + "Id": 4509, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-01-09T09:22:36", + "TransactionId": 63716493, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 904, + "CustomerInfo": 17276250, + "PaymentType": "Cash" + }, + { + "Id": 4510, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2016-03-11T16:42:23", + "TransactionId": 97215727, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 616, + "CustomerInfo": 87821929, + "PaymentType": "Cash" + }, + { + "Id": 4511, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2019-12-17T16:30:26", + "TransactionId": 71397942, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 708, + "CustomerInfo": 22050265, + "PaymentType": "Cash" + }, + { + "Id": 4512, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2017-02-20T08:23:43", + "TransactionId": 82941975, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 148, + "CustomerInfo": 66015829, + "PaymentType": "Cash" + }, + { + "Id": 4513, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2017-11-30T09:21:01", + "TransactionId": 5181461, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 74, + "CustomerInfo": 45603875, + "PaymentType": "Cash" + }, + { + "Id": 4514, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2019-08-13T07:52:02", + "TransactionId": 89790008, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 797, + "CustomerInfo": 89220475, + "PaymentType": "Cash" + }, + { + "Id": 4515, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2017-03-08T09:10:39", + "TransactionId": 62072772, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 578, + "CustomerInfo": 89848580, + "PaymentType": "Debit Card" + }, + { + "Id": 4516, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2018-02-04T07:56:12", + "TransactionId": 49203809, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 157, + "CustomerInfo": 40155309, + "PaymentType": "Cash" + }, + { + "Id": 4517, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2019-12-22T11:02:15", + "TransactionId": 5824194, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 227, + "CustomerInfo": 60145679, + "PaymentType": "Cash" + }, + { + "Id": 4518, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-09-12T14:49:55", + "TransactionId": 74339762, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 958, + "CustomerInfo": 76544167, + "PaymentType": "Credit Card" + }, + { + "Id": 4519, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2016-04-04T08:23:08", + "TransactionId": 54939114, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 79112858, + "PaymentType": "Cash" + }, + { + "Id": 4520, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-11-28T19:24:40", + "TransactionId": 83204666, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 864, + "CustomerInfo": 81940420, + "PaymentType": "Credit Card" + }, + { + "Id": 4521, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-12-03T10:44:15", + "TransactionId": 40427340, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 606, + "CustomerInfo": 9608809, + "PaymentType": "Cash" + }, + { + "Id": 4522, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2018-10-23T19:39:22", + "TransactionId": 74185018, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 570, + "CustomerInfo": 71284059, + "PaymentType": "Debit Card" + }, + { + "Id": 4523, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2017-07-08T19:43:24", + "TransactionId": 53121621, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 70660009, + "PaymentType": "Cash" + }, + { + "Id": 4524, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2017-04-17T11:39:07", + "TransactionId": 83490099, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 889, + "CustomerInfo": 55788796, + "PaymentType": "Credit Card" + }, + { + "Id": 4525, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-11-19T16:17:37", + "TransactionId": 22355888, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 743, + "CustomerInfo": 84840971, + "PaymentType": "Credit Card" + }, + { + "Id": 4526, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-06-01T17:23:51", + "TransactionId": 44556141, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 331, + "CustomerInfo": 8099972, + "PaymentType": "Credit Card" + }, + { + "Id": 4527, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-11-11T07:53:46", + "TransactionId": 56779352, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 218, + "CustomerInfo": 89813776, + "PaymentType": "Cash" + }, + { + "Id": 4528, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2017-07-30T08:15:39", + "TransactionId": 3362943, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 328, + "CustomerInfo": 29402764, + "PaymentType": "Debit Card" + }, + { + "Id": 4529, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-05-10T10:17:02", + "TransactionId": 87103337, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 518, + "CustomerInfo": 54715746, + "PaymentType": "Cash" + }, + { + "Id": 4530, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-08-06T07:05:57", + "TransactionId": 83494229, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 661, + "CustomerInfo": 26205229, + "PaymentType": "Cash" + }, + { + "Id": 4531, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2017-06-07T07:22:31", + "TransactionId": 62217186, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 731, + "CustomerInfo": 69947030, + "PaymentType": "Debit Card" + }, + { + "Id": 4532, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-05-21T13:30:43", + "TransactionId": 3868622, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 4214730, + "PaymentType": "Debit Card" + }, + { + "Id": 4533, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2016-03-14T16:54:55", + "TransactionId": 153724, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 295, + "CustomerInfo": 31296536, + "PaymentType": "Credit Card" + }, + { + "Id": 4534, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-03-27T08:58:51", + "TransactionId": 50279638, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 778, + "CustomerInfo": 20047128, + "PaymentType": "Cash" + }, + { + "Id": 4535, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2017-09-18T08:41:08", + "TransactionId": 74592827, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 573, + "CustomerInfo": 58731439, + "PaymentType": "Cash" + }, + { + "Id": 4536, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-08-21T13:44:33", + "TransactionId": 86743125, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 596, + "CustomerInfo": 22076766, + "PaymentType": "Credit Card" + }, + { + "Id": 4537, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-01-12T13:55:21", + "TransactionId": 79648611, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 58, + "CustomerInfo": 60708496, + "PaymentType": "Cash" + }, + { + "Id": 4538, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2019-09-04T18:37:18", + "TransactionId": 39348979, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 94192538, + "PaymentType": "Cash" + }, + { + "Id": 4539, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2018-01-13T08:07:44", + "TransactionId": 57595380, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 57, + "CustomerInfo": 83378826, + "PaymentType": "Debit Card" + }, + { + "Id": 4540, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-05-11T08:49:12", + "TransactionId": 899769, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 787, + "CustomerInfo": 21237863, + "PaymentType": "Debit Card" + }, + { + "Id": 4541, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2016-02-23T15:08:56", + "TransactionId": 970233, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 57221261, + "PaymentType": "Credit Card" + }, + { + "Id": 4542, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2016-05-06T08:48:29", + "TransactionId": 17475493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 751, + "CustomerInfo": 39500558, + "PaymentType": "Cash" + }, + { + "Id": 4543, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2019-04-27T18:08:56", + "TransactionId": 57667254, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 895, + "CustomerInfo": 96052637, + "PaymentType": "Cash" + }, + { + "Id": 4544, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-06-17T10:19:55", + "TransactionId": 11827757, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 862, + "CustomerInfo": 71746718, + "PaymentType": "Credit Card" + }, + { + "Id": 4545, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2018-02-22T10:28:51", + "TransactionId": 32408176, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 905, + "CustomerInfo": 35450600, + "PaymentType": "Cash" + }, + { + "Id": 4546, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2016-07-02T14:49:21", + "TransactionId": 52496576, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 816, + "CustomerInfo": 86651541, + "PaymentType": "Cash" + }, + { + "Id": 4547, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2016-09-16T19:19:29", + "TransactionId": 61130799, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 19, + "CustomerInfo": 81191402, + "PaymentType": "Credit Card" + }, + { + "Id": 4548, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2017-06-06T16:50:10", + "TransactionId": 48170509, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 13388615, + "PaymentType": "Debit Card" + }, + { + "Id": 4549, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2019-03-18T12:56:01", + "TransactionId": 39374977, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 492, + "CustomerInfo": 16389086, + "PaymentType": "Debit Card" + }, + { + "Id": 4550, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2016-07-07T08:44:44", + "TransactionId": 69198120, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 476, + "CustomerInfo": 81579403, + "PaymentType": "Cash" + }, + { + "Id": 4551, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-05-16T10:41:14", + "TransactionId": 24392129, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 477, + "CustomerInfo": 71812080, + "PaymentType": "Debit Card" + }, + { + "Id": 4552, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2016-12-26T08:00:06", + "TransactionId": 26349073, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 13106104, + "PaymentType": "Credit Card" + }, + { + "Id": 4553, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2016-10-11T15:47:23", + "TransactionId": 62934801, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 29, + "CustomerInfo": 13615232, + "PaymentType": "Debit Card" + }, + { + "Id": 4554, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2016-10-30T16:32:10", + "TransactionId": 17201284, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 887, + "CustomerInfo": 98514800, + "PaymentType": "Cash" + }, + { + "Id": 4555, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2017-01-19T18:57:27", + "TransactionId": 67041793, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 138, + "CustomerInfo": 29853911, + "PaymentType": "Cash" + }, + { + "Id": 4556, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2019-05-02T10:38:12", + "TransactionId": 35149745, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 434, + "CustomerInfo": 76718131, + "PaymentType": "Cash" + }, + { + "Id": 4557, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2018-04-20T13:22:31", + "TransactionId": 25394900, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 990, + "CustomerInfo": 43109793, + "PaymentType": "Credit Card" + }, + { + "Id": 4558, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-08-26T09:30:58", + "TransactionId": 72150768, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 722, + "CustomerInfo": 21275661, + "PaymentType": "Debit Card" + }, + { + "Id": 4559, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2019-03-11T16:55:55", + "TransactionId": 80160374, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 197, + "CustomerInfo": 7826745, + "PaymentType": "Credit Card" + }, + { + "Id": 4560, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-10-17T07:51:36", + "TransactionId": 53488295, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 970, + "CustomerInfo": 15759273, + "PaymentType": "Debit Card" + }, + { + "Id": 4561, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-01-01T07:12:35", + "TransactionId": 56211658, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 21154783, + "PaymentType": "Debit Card" + }, + { + "Id": 4562, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-03-03T10:02:30", + "TransactionId": 31865796, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 283, + "CustomerInfo": 30482977, + "PaymentType": "Debit Card" + }, + { + "Id": 4563, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-05-14T10:27:16", + "TransactionId": 48478812, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 83, + "CustomerInfo": 61765435, + "PaymentType": "Credit Card" + }, + { + "Id": 4564, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-07-01T15:23:20", + "TransactionId": 63045706, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 105, + "CustomerInfo": 26567949, + "PaymentType": "Cash" + }, + { + "Id": 4565, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2017-04-07T11:34:48", + "TransactionId": 43645254, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 859, + "CustomerInfo": 7319226, + "PaymentType": "Debit Card" + }, + { + "Id": 4566, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-12-06T09:36:00", + "TransactionId": 84533921, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 786, + "CustomerInfo": 79018428, + "PaymentType": "Credit Card" + }, + { + "Id": 4567, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2016-09-21T19:20:12", + "TransactionId": 84346507, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 354, + "CustomerInfo": 5748267, + "PaymentType": "Credit Card" + }, + { + "Id": 4568, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2019-03-21T16:10:16", + "TransactionId": 9122656, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 687, + "CustomerInfo": 33248373, + "PaymentType": "Cash" + }, + { + "Id": 4569, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-09-22T11:00:23", + "TransactionId": 50576400, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 579, + "CustomerInfo": 6256598, + "PaymentType": "Debit Card" + }, + { + "Id": 4570, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2019-06-16T13:41:05", + "TransactionId": 40000076, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 526, + "CustomerInfo": 12816846, + "PaymentType": "Debit Card" + }, + { + "Id": 4571, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-11-07T16:16:36", + "TransactionId": 42421730, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 521, + "CustomerInfo": 14109981, + "PaymentType": "Debit Card" + }, + { + "Id": 4572, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-05-11T18:26:04", + "TransactionId": 31837062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 514, + "CustomerInfo": 70169041, + "PaymentType": "Cash" + }, + { + "Id": 4573, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2017-11-07T17:08:18", + "TransactionId": 94267937, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 276, + "CustomerInfo": 85805656, + "PaymentType": "Credit Card" + }, + { + "Id": 4574, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-08-12T16:01:12", + "TransactionId": 39374091, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 193, + "CustomerInfo": 49765580, + "PaymentType": "Debit Card" + }, + { + "Id": 4575, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2017-02-20T19:27:33", + "TransactionId": 8255249, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 773, + "CustomerInfo": 96232564, + "PaymentType": "Credit Card" + }, + { + "Id": 4576, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-05-15T15:52:25", + "TransactionId": 85030133, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 572, + "CustomerInfo": 20241205, + "PaymentType": "Debit Card" + }, + { + "Id": 4577, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-03-14T13:50:10", + "TransactionId": 90474287, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 903, + "CustomerInfo": 22559215, + "PaymentType": "Debit Card" + }, + { + "Id": 4578, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-07-07T08:33:56", + "TransactionId": 91206324, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 196, + "CustomerInfo": 83918659, + "PaymentType": "Debit Card" + }, + { + "Id": 4579, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-01-05T18:38:18", + "TransactionId": 63834115, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 603, + "CustomerInfo": 53743518, + "PaymentType": "Debit Card" + }, + { + "Id": 4580, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-12-01T08:45:45", + "TransactionId": 58041226, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 754, + "CustomerInfo": 78134812, + "PaymentType": "Cash" + }, + { + "Id": 4581, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2018-01-23T17:13:29", + "TransactionId": 46702664, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 44, + "CustomerInfo": 81920564, + "PaymentType": "Debit Card" + }, + { + "Id": 4582, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2017-05-10T19:39:04", + "TransactionId": 51719351, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 865, + "CustomerInfo": 17923861, + "PaymentType": "Debit Card" + }, + { + "Id": 4583, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-05-13T17:39:16", + "TransactionId": 11362828, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 61434975, + "PaymentType": "Cash" + }, + { + "Id": 4584, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2016-03-18T07:34:28", + "TransactionId": 25523156, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 503, + "CustomerInfo": 36943873, + "PaymentType": "Cash" + }, + { + "Id": 4585, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2019-04-30T11:12:46", + "TransactionId": 20354199, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 593, + "CustomerInfo": 7885606, + "PaymentType": "Debit Card" + }, + { + "Id": 4586, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2016-05-06T14:44:01", + "TransactionId": 76538424, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 260, + "CustomerInfo": 30845585, + "PaymentType": "Cash" + }, + { + "Id": 4587, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-07-02T07:37:29", + "TransactionId": 14935866, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 323, + "CustomerInfo": 134982, + "PaymentType": "Cash" + }, + { + "Id": 4588, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2019-06-27T08:13:47", + "TransactionId": 41040638, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 255, + "CustomerInfo": 75877875, + "PaymentType": "Debit Card" + }, + { + "Id": 4589, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-01-18T08:56:24", + "TransactionId": 88365624, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 811, + "CustomerInfo": 86929149, + "PaymentType": "Debit Card" + }, + { + "Id": 4590, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2016-07-29T08:38:33", + "TransactionId": 87883119, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 172, + "CustomerInfo": 54139028, + "PaymentType": "Credit Card" + }, + { + "Id": 4591, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2018-09-27T10:49:00", + "TransactionId": 68930009, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 454, + "CustomerInfo": 62647093, + "PaymentType": "Cash" + }, + { + "Id": 4592, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-11-17T09:45:56", + "TransactionId": 14193635, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 456, + "CustomerInfo": 19590111, + "PaymentType": "Cash" + }, + { + "Id": 4593, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2017-05-19T17:02:59", + "TransactionId": 81245425, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 609, + "CustomerInfo": 14724801, + "PaymentType": "Debit Card" + }, + { + "Id": 4594, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2016-07-14T14:00:49", + "TransactionId": 79876638, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 150, + "CustomerInfo": 18549111, + "PaymentType": "Credit Card" + }, + { + "Id": 4595, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2017-01-05T18:19:18", + "TransactionId": 16393931, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 596, + "CustomerInfo": 92937932, + "PaymentType": "Credit Card" + }, + { + "Id": 4596, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2018-12-18T10:54:55", + "TransactionId": 76388805, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 951, + "CustomerInfo": 61529211, + "PaymentType": "Cash" + }, + { + "Id": 4597, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-09-24T09:32:59", + "TransactionId": 83866475, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 10521853, + "PaymentType": "Credit Card" + }, + { + "Id": 4598, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2019-04-16T07:54:29", + "TransactionId": 15883764, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 622, + "CustomerInfo": 50126437, + "PaymentType": "Cash" + }, + { + "Id": 4599, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-08-08T11:54:58", + "TransactionId": 35502164, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 57, + "CustomerInfo": 65003947, + "PaymentType": "Debit Card" + }, + { + "Id": 4600, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2018-10-07T07:09:07", + "TransactionId": 95331162, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 480, + "CustomerInfo": 59505129, + "PaymentType": "Debit Card" + }, + { + "Id": 4601, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2018-09-14T12:02:27", + "TransactionId": 29475962, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 8, + "CustomerInfo": 71013950, + "PaymentType": "Cash" + }, + { + "Id": 4602, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2016-12-02T18:43:03", + "TransactionId": 80546868, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 156, + "CustomerInfo": 52358272, + "PaymentType": "Cash" + }, + { + "Id": 4603, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-10-19T14:03:07", + "TransactionId": 56054640, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 813, + "CustomerInfo": 55641267, + "PaymentType": "Credit Card" + }, + { + "Id": 4604, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-09-26T14:02:15", + "TransactionId": 70407679, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 797, + "CustomerInfo": 5234628, + "PaymentType": "Cash" + }, + { + "Id": 4605, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2019-02-17T14:20:50", + "TransactionId": 10186284, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 618, + "CustomerInfo": 4105739, + "PaymentType": "Cash" + }, + { + "Id": 4606, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-11-02T10:04:39", + "TransactionId": 61090089, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 758, + "CustomerInfo": 4847510, + "PaymentType": "Cash" + }, + { + "Id": 4607, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-06-29T12:44:21", + "TransactionId": 57524399, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 743, + "CustomerInfo": 73045871, + "PaymentType": "Cash" + }, + { + "Id": 4608, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-01-09T08:50:12", + "TransactionId": 62989893, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 327, + "CustomerInfo": 27633749, + "PaymentType": "Credit Card" + }, + { + "Id": 4609, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-10-19T08:10:11", + "TransactionId": 92779082, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 568, + "CustomerInfo": 96316546, + "PaymentType": "Cash" + }, + { + "Id": 4610, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-11-28T13:29:43", + "TransactionId": 30980111, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 560, + "CustomerInfo": 84758958, + "PaymentType": "Cash" + }, + { + "Id": 4611, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2017-01-09T07:18:03", + "TransactionId": 3748561, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 628, + "CustomerInfo": 19595869, + "PaymentType": "Debit Card" + }, + { + "Id": 4612, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-05-23T07:26:24", + "TransactionId": 57720326, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 652, + "CustomerInfo": 27414636, + "PaymentType": "Debit Card" + }, + { + "Id": 4613, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-03-09T07:43:32", + "TransactionId": 85301684, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 283, + "CustomerInfo": 30832546, + "PaymentType": "Credit Card" + }, + { + "Id": 4614, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-06-21T10:01:03", + "TransactionId": 62592659, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 413, + "CustomerInfo": 15519633, + "PaymentType": "Credit Card" + }, + { + "Id": 4615, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-07-02T07:02:12", + "TransactionId": 91743373, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 616, + "CustomerInfo": 7917909, + "PaymentType": "Debit Card" + }, + { + "Id": 4616, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2017-07-14T14:12:37", + "TransactionId": 65407537, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 628, + "CustomerInfo": 66376508, + "PaymentType": "Debit Card" + }, + { + "Id": 4617, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-05-06T09:55:35", + "TransactionId": 17063274, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 850, + "CustomerInfo": 85708530, + "PaymentType": "Cash" + }, + { + "Id": 4618, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2017-09-21T17:00:40", + "TransactionId": 87231749, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 2, + "CustomerInfo": 13431473, + "PaymentType": "Credit Card" + }, + { + "Id": 4619, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-10-17T14:07:09", + "TransactionId": 94864330, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 2708130, + "PaymentType": "Credit Card" + }, + { + "Id": 4620, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-11-17T14:27:45", + "TransactionId": 609236, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 909, + "CustomerInfo": 10120925, + "PaymentType": "Credit Card" + }, + { + "Id": 4621, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2018-04-30T13:53:46", + "TransactionId": 72056215, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 774, + "CustomerInfo": 56531725, + "PaymentType": "Cash" + }, + { + "Id": 4622, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2017-06-18T10:16:28", + "TransactionId": 45625493, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 120, + "CustomerInfo": 50457778, + "PaymentType": "Cash" + }, + { + "Id": 4623, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2018-06-05T16:25:41", + "TransactionId": 23127301, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 220, + "CustomerInfo": 35940682, + "PaymentType": "Debit Card" + }, + { + "Id": 4624, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2016-08-01T11:47:54", + "TransactionId": 89406298, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 369, + "CustomerInfo": 81067031, + "PaymentType": "Credit Card" + }, + { + "Id": 4625, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-04-12T17:53:05", + "TransactionId": 99294277, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 585, + "CustomerInfo": 72128551, + "PaymentType": "Cash" + }, + { + "Id": 4626, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-02-29T12:36:17", + "TransactionId": 39547350, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 653, + "CustomerInfo": 46458376, + "PaymentType": "Cash" + }, + { + "Id": 4627, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2017-09-09T14:40:34", + "TransactionId": 30678902, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 494, + "CustomerInfo": 43489924, + "PaymentType": "Credit Card" + }, + { + "Id": 4628, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2017-01-03T10:50:27", + "TransactionId": 27860047, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 861, + "CustomerInfo": 10196929, + "PaymentType": "Cash" + }, + { + "Id": 4629, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2019-02-05T12:04:19", + "TransactionId": 45431815, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 230, + "CustomerInfo": 75879750, + "PaymentType": "Debit Card" + }, + { + "Id": 4630, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-12-06T13:33:19", + "TransactionId": 27379574, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 564, + "CustomerInfo": 81041667, + "PaymentType": "Credit Card" + }, + { + "Id": 4631, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2019-10-14T19:34:45", + "TransactionId": 73500509, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 830, + "CustomerInfo": 76409253, + "PaymentType": "Credit Card" + }, + { + "Id": 4632, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2017-11-02T19:37:38", + "TransactionId": 46662823, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 116, + "CustomerInfo": 26298219, + "PaymentType": "Credit Card" + }, + { + "Id": 4633, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2019-10-15T17:30:03", + "TransactionId": 66581690, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 890, + "CustomerInfo": 29803692, + "PaymentType": "Credit Card" + }, + { + "Id": 4634, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-05-20T18:33:42", + "TransactionId": 20844042, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 403, + "CustomerInfo": 23055734, + "PaymentType": "Debit Card" + }, + { + "Id": 4635, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2019-06-09T18:54:26", + "TransactionId": 81307737, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 546, + "CustomerInfo": 30196744, + "PaymentType": "Credit Card" + }, + { + "Id": 4636, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2016-05-01T12:02:53", + "TransactionId": 28714118, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 117, + "CustomerInfo": 4361269, + "PaymentType": "Debit Card" + }, + { + "Id": 4637, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2018-11-15T13:39:04", + "TransactionId": 70741603, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 280, + "CustomerInfo": 94030711, + "PaymentType": "Cash" + }, + { + "Id": 4638, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-03-26T18:04:28", + "TransactionId": 77391517, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 918, + "CustomerInfo": 38846947, + "PaymentType": "Cash" + }, + { + "Id": 4639, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-07-21T12:31:49", + "TransactionId": 83339210, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 317, + "CustomerInfo": 99906039, + "PaymentType": "Debit Card" + }, + { + "Id": 4640, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-02-05T12:16:08", + "TransactionId": 76554998, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 629, + "CustomerInfo": 46459083, + "PaymentType": "Debit Card" + }, + { + "Id": 4641, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-09-28T13:58:22", + "TransactionId": 62060904, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 956, + "CustomerInfo": 71808307, + "PaymentType": "Debit Card" + }, + { + "Id": 4642, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2017-08-25T09:37:18", + "TransactionId": 9540960, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 6932334, + "PaymentType": "Cash" + }, + { + "Id": 4643, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-05-26T17:01:58", + "TransactionId": 87701030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 983, + "CustomerInfo": 760446, + "PaymentType": "Credit Card" + }, + { + "Id": 4644, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-08-22T17:48:03", + "TransactionId": 74923153, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 142, + "CustomerInfo": 82442614, + "PaymentType": "Credit Card" + }, + { + "Id": 4645, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-11-10T17:29:28", + "TransactionId": 14401241, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 816, + "CustomerInfo": 49869965, + "PaymentType": "Credit Card" + }, + { + "Id": 4646, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2017-07-03T18:10:57", + "TransactionId": 9703207, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 981, + "CustomerInfo": 24963743, + "PaymentType": "Debit Card" + }, + { + "Id": 4647, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-09-23T10:01:55", + "TransactionId": 12701320, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 172, + "CustomerInfo": 69439386, + "PaymentType": "Debit Card" + }, + { + "Id": 4648, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2016-01-27T08:11:46", + "TransactionId": 62892407, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 30, + "CustomerInfo": 22005440, + "PaymentType": "Credit Card" + }, + { + "Id": 4649, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-02-03T15:59:37", + "TransactionId": 29136864, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 978, + "CustomerInfo": 24657027, + "PaymentType": "Credit Card" + }, + { + "Id": 4650, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2017-12-24T15:27:39", + "TransactionId": 48023870, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 891, + "CustomerInfo": 82154557, + "PaymentType": "Debit Card" + }, + { + "Id": 4651, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-02-07T08:02:07", + "TransactionId": 29681394, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 506, + "CustomerInfo": 31738265, + "PaymentType": "Debit Card" + }, + { + "Id": 4652, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2018-07-11T19:05:23", + "TransactionId": 24541674, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 709, + "CustomerInfo": 67544875, + "PaymentType": "Debit Card" + }, + { + "Id": 4653, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-02-07T17:18:32", + "TransactionId": 9133783, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 575, + "CustomerInfo": 72812245, + "PaymentType": "Debit Card" + }, + { + "Id": 4654, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2018-02-22T16:42:40", + "TransactionId": 61359714, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 205, + "CustomerInfo": 98132220, + "PaymentType": "Cash" + }, + { + "Id": 4655, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-12-08T10:04:39", + "TransactionId": 55916628, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 167, + "CustomerInfo": 94488726, + "PaymentType": "Credit Card" + }, + { + "Id": 4656, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-05-29T15:40:19", + "TransactionId": 50661759, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 995, + "CustomerInfo": 30409355, + "PaymentType": "Debit Card" + }, + { + "Id": 4657, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2018-01-30T15:40:11", + "TransactionId": 2176097, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 95598344, + "PaymentType": "Debit Card" + }, + { + "Id": 4658, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-02-06T12:06:03", + "TransactionId": 29093749, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 587, + "CustomerInfo": 13121782, + "PaymentType": "Cash" + }, + { + "Id": 4659, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-12-23T12:00:09", + "TransactionId": 52913075, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 147, + "CustomerInfo": 19286260, + "PaymentType": "Credit Card" + }, + { + "Id": 4660, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2018-01-01T19:59:23", + "TransactionId": 41229320, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 165, + "CustomerInfo": 28304419, + "PaymentType": "Credit Card" + }, + { + "Id": 4661, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2018-03-03T12:03:36", + "TransactionId": 10376314, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 416, + "CustomerInfo": 33048240, + "PaymentType": "Debit Card" + }, + { + "Id": 4662, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2017-12-01T10:55:03", + "TransactionId": 32490269, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 858, + "CustomerInfo": 80758791, + "PaymentType": "Credit Card" + }, + { + "Id": 4663, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-02-02T09:19:52", + "TransactionId": 32109053, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 398, + "CustomerInfo": 13318526, + "PaymentType": "Cash" + }, + { + "Id": 4664, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-08-29T10:03:39", + "TransactionId": 85858039, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 715, + "CustomerInfo": 76790801, + "PaymentType": "Credit Card" + }, + { + "Id": 4665, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2017-08-02T19:23:48", + "TransactionId": 74410985, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 586, + "CustomerInfo": 63779545, + "PaymentType": "Cash" + }, + { + "Id": 4666, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2016-06-30T13:06:32", + "TransactionId": 75493517, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 63, + "CustomerInfo": 3521776, + "PaymentType": "Credit Card" + }, + { + "Id": 4667, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2017-08-31T17:47:20", + "TransactionId": 2038335, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 36, + "CustomerInfo": 26764459, + "PaymentType": "Debit Card" + }, + { + "Id": 4668, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-11-18T09:41:20", + "TransactionId": 9772681, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 461, + "CustomerInfo": 69341858, + "PaymentType": "Cash" + }, + { + "Id": 4669, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2017-06-16T17:36:14", + "TransactionId": 47460449, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 13, + "CustomerInfo": 81465856, + "PaymentType": "Debit Card" + }, + { + "Id": 4670, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-10-29T18:58:28", + "TransactionId": 91188217, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 398, + "CustomerInfo": 44552449, + "PaymentType": "Debit Card" + }, + { + "Id": 4671, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2017-10-04T07:44:50", + "TransactionId": 83920596, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 905, + "CustomerInfo": 82888576, + "PaymentType": "Debit Card" + }, + { + "Id": 4672, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-08-26T17:39:33", + "TransactionId": 27060398, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 987, + "CustomerInfo": 71856840, + "PaymentType": "Debit Card" + }, + { + "Id": 4673, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2019-04-16T12:42:29", + "TransactionId": 11079606, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 36167788, + "PaymentType": "Cash" + }, + { + "Id": 4674, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-06-30T16:04:48", + "TransactionId": 41771582, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 194, + "CustomerInfo": 69327403, + "PaymentType": "Debit Card" + }, + { + "Id": 4675, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2018-10-11T15:18:09", + "TransactionId": 91863499, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 466, + "CustomerInfo": 47224419, + "PaymentType": "Credit Card" + }, + { + "Id": 4676, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-04-22T09:06:29", + "TransactionId": 76955982, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 723, + "CustomerInfo": 54088, + "PaymentType": "Debit Card" + }, + { + "Id": 4677, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-11-24T07:00:46", + "TransactionId": 82485839, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 214, + "CustomerInfo": 95302695, + "PaymentType": "Debit Card" + }, + { + "Id": 4678, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2016-02-11T19:50:53", + "TransactionId": 54078588, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 86, + "CustomerInfo": 98215557, + "PaymentType": "Debit Card" + }, + { + "Id": 4679, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-06-07T11:29:28", + "TransactionId": 56038887, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 831, + "CustomerInfo": 48727980, + "PaymentType": "Cash" + }, + { + "Id": 4680, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2017-08-08T08:33:22", + "TransactionId": 45637892, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 385, + "CustomerInfo": 25743029, + "PaymentType": "Credit Card" + }, + { + "Id": 4681, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-08-22T13:33:53", + "TransactionId": 59518532, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 141, + "CustomerInfo": 53374731, + "PaymentType": "Credit Card" + }, + { + "Id": 4682, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2018-10-12T18:54:17", + "TransactionId": 94495289, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 98, + "CustomerInfo": 12690337, + "PaymentType": "Cash" + }, + { + "Id": 4683, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2019-05-30T19:11:51", + "TransactionId": 13462548, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 421, + "CustomerInfo": 12878175, + "PaymentType": "Cash" + }, + { + "Id": 4684, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2016-10-01T16:49:52", + "TransactionId": 57703140, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 925, + "CustomerInfo": 49946953, + "PaymentType": "Debit Card" + }, + { + "Id": 4685, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2019-09-28T08:19:58", + "TransactionId": 83061825, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 834, + "CustomerInfo": 18870123, + "PaymentType": "Credit Card" + }, + { + "Id": 4686, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2017-07-14T12:44:30", + "TransactionId": 33200409, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 32, + "CustomerInfo": 72276220, + "PaymentType": "Credit Card" + }, + { + "Id": 4687, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-02-10T11:05:51", + "TransactionId": 15939775, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 428, + "CustomerInfo": 51607561, + "PaymentType": "Credit Card" + }, + { + "Id": 4688, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2018-03-18T19:55:29", + "TransactionId": 5463585, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 133, + "CustomerInfo": 30367862, + "PaymentType": "Cash" + }, + { + "Id": 4689, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2018-03-13T17:48:20", + "TransactionId": 13557703, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 333, + "CustomerInfo": 57625745, + "PaymentType": "Credit Card" + }, + { + "Id": 4690, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-08-17T18:28:22", + "TransactionId": 90257628, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 935, + "CustomerInfo": 80995607, + "PaymentType": "Debit Card" + }, + { + "Id": 4691, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2019-05-07T17:15:22", + "TransactionId": 7197501, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 690, + "CustomerInfo": 85710744, + "PaymentType": "Credit Card" + }, + { + "Id": 4692, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-10-11T11:28:54", + "TransactionId": 88323766, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 124, + "CustomerInfo": 2433725, + "PaymentType": "Credit Card" + }, + { + "Id": 4693, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2018-04-04T15:01:35", + "TransactionId": 11566622, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 160, + "CustomerInfo": 77482513, + "PaymentType": "Cash" + }, + { + "Id": 4694, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2016-01-23T09:12:06", + "TransactionId": 18266631, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 739, + "CustomerInfo": 21244763, + "PaymentType": "Cash" + }, + { + "Id": 4695, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-10-03T10:59:57", + "TransactionId": 96504351, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 223, + "CustomerInfo": 76655945, + "PaymentType": "Debit Card" + }, + { + "Id": 4696, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-03-05T07:52:11", + "TransactionId": 11934846, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 588, + "CustomerInfo": 70637839, + "PaymentType": "Debit Card" + }, + { + "Id": 4697, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-02-08T12:06:55", + "TransactionId": 34419612, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 26, + "CustomerInfo": 67836881, + "PaymentType": "Debit Card" + }, + { + "Id": 4698, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-05-20T17:50:47", + "TransactionId": 12858667, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 482, + "CustomerInfo": 46767300, + "PaymentType": "Debit Card" + }, + { + "Id": 4699, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-12-02T14:19:41", + "TransactionId": 30772304, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 653, + "CustomerInfo": 52047593, + "PaymentType": "Debit Card" + }, + { + "Id": 4700, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-07-14T09:20:27", + "TransactionId": 80600976, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 934, + "CustomerInfo": 44805855, + "PaymentType": "Debit Card" + }, + { + "Id": 4701, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2019-10-21T08:06:43", + "TransactionId": 64527640, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 447, + "CustomerInfo": 35355705, + "PaymentType": "Debit Card" + }, + { + "Id": 4702, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2017-01-10T07:02:21", + "TransactionId": 28750713, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 949, + "CustomerInfo": 66790296, + "PaymentType": "Cash" + }, + { + "Id": 4703, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2016-09-16T09:12:06", + "TransactionId": 15271458, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 90487971, + "PaymentType": "Credit Card" + }, + { + "Id": 4704, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-03-18T15:53:51", + "TransactionId": 87594474, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 585, + "CustomerInfo": 81705303, + "PaymentType": "Debit Card" + }, + { + "Id": 4705, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2019-02-04T13:50:10", + "TransactionId": 83436642, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 556, + "CustomerInfo": 58446101, + "PaymentType": "Credit Card" + }, + { + "Id": 4706, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-05-16T17:43:18", + "TransactionId": 59921804, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 166, + "CustomerInfo": 37770330, + "PaymentType": "Debit Card" + }, + { + "Id": 4707, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2018-07-23T15:39:01", + "TransactionId": 4030493, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 363, + "CustomerInfo": 90733602, + "PaymentType": "Debit Card" + }, + { + "Id": 4708, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-09-25T16:58:22", + "TransactionId": 75639565, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 951, + "CustomerInfo": 77828807, + "PaymentType": "Cash" + }, + { + "Id": 4709, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2018-02-20T09:26:12", + "TransactionId": 28948469, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 317, + "CustomerInfo": 69709994, + "PaymentType": "Cash" + }, + { + "Id": 4710, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-06-04T09:39:27", + "TransactionId": 36381598, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 480, + "CustomerInfo": 26781425, + "PaymentType": "Credit Card" + }, + { + "Id": 4711, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2019-10-07T15:10:22", + "TransactionId": 60941500, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 430, + "CustomerInfo": 69806981, + "PaymentType": "Cash" + }, + { + "Id": 4712, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-06-15T15:46:57", + "TransactionId": 73259825, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 182, + "CustomerInfo": 15943327, + "PaymentType": "Debit Card" + }, + { + "Id": 4713, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2017-03-28T18:38:18", + "TransactionId": 38746467, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 397, + "CustomerInfo": 97662586, + "PaymentType": "Credit Card" + }, + { + "Id": 4714, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-01-21T16:53:20", + "TransactionId": 40498627, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 619, + "CustomerInfo": 6942486, + "PaymentType": "Cash" + }, + { + "Id": 4715, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-07-24T12:21:53", + "TransactionId": 6351868, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 305, + "CustomerInfo": 16506375, + "PaymentType": "Cash" + }, + { + "Id": 4716, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2019-02-14T19:39:48", + "TransactionId": 81746338, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 516, + "CustomerInfo": 63701698, + "PaymentType": "Credit Card" + }, + { + "Id": 4717, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2018-10-18T15:04:54", + "TransactionId": 52333977, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 652, + "CustomerInfo": 60299647, + "PaymentType": "Debit Card" + }, + { + "Id": 4718, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2018-07-26T08:11:54", + "TransactionId": 98470697, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 587, + "CustomerInfo": 7390797, + "PaymentType": "Debit Card" + }, + { + "Id": 4719, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2018-01-07T14:05:00", + "TransactionId": 99176744, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 476, + "CustomerInfo": 86534196, + "PaymentType": "Credit Card" + }, + { + "Id": 4720, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-09-02T13:49:00", + "TransactionId": 8896430, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 396, + "CustomerInfo": 59779087, + "PaymentType": "Cash" + }, + { + "Id": 4721, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2017-10-22T17:15:04", + "TransactionId": 9069276, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 923, + "CustomerInfo": 86917246, + "PaymentType": "Debit Card" + }, + { + "Id": 4722, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-04-28T12:14:07", + "TransactionId": 5200180, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 376, + "CustomerInfo": 64794333, + "PaymentType": "Debit Card" + }, + { + "Id": 4723, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2018-01-01T07:31:26", + "TransactionId": 3553033, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 487, + "CustomerInfo": 974592, + "PaymentType": "Cash" + }, + { + "Id": 4724, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2019-01-31T12:50:50", + "TransactionId": 21670986, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 528, + "CustomerInfo": 77782138, + "PaymentType": "Credit Card" + }, + { + "Id": 4725, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-07-09T10:26:24", + "TransactionId": 41477088, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 851, + "CustomerInfo": 80471335, + "PaymentType": "Credit Card" + }, + { + "Id": 4726, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-11-12T12:25:29", + "TransactionId": 91807638, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 257, + "CustomerInfo": 80058526, + "PaymentType": "Credit Card" + }, + { + "Id": 4727, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2019-03-28T17:21:50", + "TransactionId": 20885282, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 248, + "CustomerInfo": 22383041, + "PaymentType": "Credit Card" + }, + { + "Id": 4728, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2019-11-08T13:23:14", + "TransactionId": 32448727, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 973, + "CustomerInfo": 60446373, + "PaymentType": "Cash" + }, + { + "Id": 4729, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-06-01T07:16:45", + "TransactionId": 20588458, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 991, + "CustomerInfo": 40562055, + "PaymentType": "Debit Card" + }, + { + "Id": 4730, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2018-05-21T17:00:49", + "TransactionId": 62923815, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 496, + "CustomerInfo": 58998257, + "PaymentType": "Debit Card" + }, + { + "Id": 4731, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2017-11-24T17:08:53", + "TransactionId": 50122135, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 701, + "CustomerInfo": 60366457, + "PaymentType": "Debit Card" + }, + { + "Id": 4732, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-11-03T12:28:48", + "TransactionId": 99744081, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 341, + "CustomerInfo": 59906441, + "PaymentType": "Debit Card" + }, + { + "Id": 4733, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2016-10-15T13:18:03", + "TransactionId": 79834454, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 71, + "CustomerInfo": 9744098, + "PaymentType": "Credit Card" + }, + { + "Id": 4734, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2019-09-12T10:09:42", + "TransactionId": 83495912, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 226, + "CustomerInfo": 52539403, + "PaymentType": "Credit Card" + }, + { + "Id": 4735, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2016-06-09T09:49:58", + "TransactionId": 46874258, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 774, + "CustomerInfo": 64921792, + "PaymentType": "Debit Card" + }, + { + "Id": 4736, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-06-30T19:27:24", + "TransactionId": 3281075, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 498, + "CustomerInfo": 3831967, + "PaymentType": "Debit Card" + }, + { + "Id": 4737, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-12-28T19:29:51", + "TransactionId": 85369499, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 330, + "CustomerInfo": 57857716, + "PaymentType": "Cash" + }, + { + "Id": 4738, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2016-09-24T13:15:01", + "TransactionId": 32242649, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 80, + "CustomerInfo": 33927491, + "PaymentType": "Credit Card" + }, + { + "Id": 4739, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2016-06-26T10:11:51", + "TransactionId": 71356332, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 106, + "CustomerInfo": 53198499, + "PaymentType": "Cash" + }, + { + "Id": 4740, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2019-11-16T17:02:15", + "TransactionId": 90383714, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 99, + "CustomerInfo": 80014751, + "PaymentType": "Cash" + }, + { + "Id": 4741, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2019-10-09T16:49:35", + "TransactionId": 43184376, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 532, + "CustomerInfo": 8014101, + "PaymentType": "Debit Card" + }, + { + "Id": 4742, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2016-12-31T12:41:02", + "TransactionId": 92747340, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 991, + "CustomerInfo": 28012866, + "PaymentType": "Cash" + }, + { + "Id": 4743, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-02-25T16:06:49", + "TransactionId": 4980977, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 530, + "CustomerInfo": 34412922, + "PaymentType": "Debit Card" + }, + { + "Id": 4744, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-11-12T16:03:56", + "TransactionId": 20381503, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 717, + "CustomerInfo": 13033080, + "PaymentType": "Cash" + }, + { + "Id": 4745, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2016-06-04T09:59:11", + "TransactionId": 86408034, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 221, + "CustomerInfo": 74899312, + "PaymentType": "Debit Card" + }, + { + "Id": 4746, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-02-03T09:28:31", + "TransactionId": 23382645, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 949, + "CustomerInfo": 25969534, + "PaymentType": "Credit Card" + }, + { + "Id": 4747, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-02-16T17:08:36", + "TransactionId": 30998484, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 492, + "CustomerInfo": 64110008, + "PaymentType": "Cash" + }, + { + "Id": 4748, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2019-03-30T15:57:45", + "TransactionId": 59998288, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 807, + "CustomerInfo": 1018868, + "PaymentType": "Debit Card" + }, + { + "Id": 4749, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2016-02-07T17:05:43", + "TransactionId": 9335671, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 342, + "CustomerInfo": 43488288, + "PaymentType": "Debit Card" + }, + { + "Id": 4750, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-08-28T07:09:59", + "TransactionId": 49873714, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 598, + "CustomerInfo": 72798141, + "PaymentType": "Cash" + }, + { + "Id": 4751, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2017-04-16T14:47:37", + "TransactionId": 58466642, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 972, + "CustomerInfo": 36758812, + "PaymentType": "Cash" + }, + { + "Id": 4752, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-03-18T09:08:56", + "TransactionId": 68700202, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 86, + "CustomerInfo": 18775961, + "PaymentType": "Cash" + }, + { + "Id": 4753, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2016-08-21T07:27:33", + "TransactionId": 51445689, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 393, + "CustomerInfo": 76779999, + "PaymentType": "Credit Card" + }, + { + "Id": 4754, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2018-08-24T13:52:11", + "TransactionId": 2809819, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 154, + "CustomerInfo": 94935114, + "PaymentType": "Cash" + }, + { + "Id": 4755, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2018-04-23T16:54:03", + "TransactionId": 73721758, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 216, + "CustomerInfo": 50541297, + "PaymentType": "Cash" + }, + { + "Id": 4756, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-12-03T15:37:18", + "TransactionId": 52628030, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 822, + "CustomerInfo": 97693992, + "PaymentType": "Credit Card" + }, + { + "Id": 4757, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-03-25T17:49:21", + "TransactionId": 96530144, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 547, + "CustomerInfo": 60854873, + "PaymentType": "Debit Card" + }, + { + "Id": 4758, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-01-18T14:04:42", + "TransactionId": 24694436, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 92, + "CustomerInfo": 68773796, + "PaymentType": "Debit Card" + }, + { + "Id": 4759, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-08-14T15:39:53", + "TransactionId": 99944742, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 153, + "CustomerInfo": 75605176, + "PaymentType": "Cash" + }, + { + "Id": 4760, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2017-02-25T14:49:47", + "TransactionId": 87192786, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 841, + "CustomerInfo": 54619956, + "PaymentType": "Credit Card" + }, + { + "Id": 4761, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2016-05-16T16:41:48", + "TransactionId": 24077994, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 93, + "CustomerInfo": 48965469, + "PaymentType": "Cash" + }, + { + "Id": 4762, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2017-08-05T19:43:49", + "TransactionId": 73871866, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 774, + "CustomerInfo": 5962776, + "PaymentType": "Cash" + }, + { + "Id": 4763, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2019-02-21T12:26:21", + "TransactionId": 41048450, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 605, + "CustomerInfo": 40691685, + "PaymentType": "Credit Card" + }, + { + "Id": 4764, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-11-01T13:03:48", + "TransactionId": 21297012, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 246, + "CustomerInfo": 7658145, + "PaymentType": "Debit Card" + }, + { + "Id": 4765, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2016-02-25T16:47:34", + "TransactionId": 71202034, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 689, + "CustomerInfo": 62303724, + "PaymentType": "Cash" + }, + { + "Id": 4766, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-04-27T10:02:38", + "TransactionId": 41607020, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 401, + "CustomerInfo": 77480458, + "PaymentType": "Cash" + }, + { + "Id": 4767, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-08-01T17:47:02", + "TransactionId": 94769745, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 742, + "CustomerInfo": 47432758, + "PaymentType": "Cash" + }, + { + "Id": 4768, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2019-06-30T07:19:38", + "TransactionId": 60320609, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 589, + "CustomerInfo": 73451316, + "PaymentType": "Credit Card" + }, + { + "Id": 4769, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-05-04T09:22:28", + "TransactionId": 77545242, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 347, + "CustomerInfo": 93586502, + "PaymentType": "Credit Card" + }, + { + "Id": 4770, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2019-10-24T08:35:57", + "TransactionId": 94331081, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 447, + "CustomerInfo": 58373487, + "PaymentType": "Credit Card" + }, + { + "Id": 4771, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-01-21T09:12:49", + "TransactionId": 61948459, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 856, + "CustomerInfo": 86571836, + "PaymentType": "Cash" + }, + { + "Id": 4772, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2018-08-19T17:42:52", + "TransactionId": 49323113, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 371, + "CustomerInfo": 27578880, + "PaymentType": "Credit Card" + }, + { + "Id": 4773, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-09-27T08:14:21", + "TransactionId": 88746524, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 707, + "CustomerInfo": 20286398, + "PaymentType": "Debit Card" + }, + { + "Id": 4774, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-04-27T12:33:42", + "TransactionId": 55157429, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 228, + "CustomerInfo": 37473741, + "PaymentType": "Credit Card" + }, + { + "Id": 4775, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2017-05-22T16:28:51", + "TransactionId": 13796620, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 44, + "CustomerInfo": 96196484, + "PaymentType": "Credit Card" + }, + { + "Id": 4776, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-06-22T11:11:54", + "TransactionId": 51891380, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 872, + "CustomerInfo": 50424103, + "PaymentType": "Debit Card" + }, + { + "Id": 4777, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-10-27T19:18:03", + "TransactionId": 38977011, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 933, + "CustomerInfo": 50527521, + "PaymentType": "Cash" + }, + { + "Id": 4778, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-08-29T14:43:35", + "TransactionId": 20094120, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 180, + "CustomerInfo": 66138025, + "PaymentType": "Cash" + }, + { + "Id": 4779, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-07-01T19:40:39", + "TransactionId": 93924728, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 918, + "CustomerInfo": 10854635, + "PaymentType": "Cash" + }, + { + "Id": 4780, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-01-01T14:02:50", + "TransactionId": 78879374, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 236, + "CustomerInfo": 29918324, + "PaymentType": "Debit Card" + }, + { + "Id": 4781, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2017-08-10T12:25:12", + "TransactionId": 2720908, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 39573736, + "PaymentType": "Credit Card" + }, + { + "Id": 4782, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-08-06T12:19:09", + "TransactionId": 98908821, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 639, + "CustomerInfo": 68064971, + "PaymentType": "Cash" + }, + { + "Id": 4783, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-07-03T12:17:08", + "TransactionId": 69105345, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 543, + "CustomerInfo": 25048813, + "PaymentType": "Credit Card" + }, + { + "Id": 4784, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2019-02-25T09:10:05", + "TransactionId": 26543559, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 993, + "CustomerInfo": 64496082, + "PaymentType": "Credit Card" + }, + { + "Id": 4785, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2018-09-17T12:50:07", + "TransactionId": 8692833, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 549, + "CustomerInfo": 24448684, + "PaymentType": "Debit Card" + }, + { + "Id": 4786, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2017-04-01T15:16:42", + "TransactionId": 55831548, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 566, + "CustomerInfo": 12294759, + "PaymentType": "Credit Card" + }, + { + "Id": 4787, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-03-12T08:03:42", + "TransactionId": 96162897, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 63, + "CustomerInfo": 34858153, + "PaymentType": "Debit Card" + }, + { + "Id": 4788, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2019-10-10T15:08:30", + "TransactionId": 92989627, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 668, + "CustomerInfo": 51083504, + "PaymentType": "Debit Card" + }, + { + "Id": 4789, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-12-13T15:19:00", + "TransactionId": 84136995, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 209, + "CustomerInfo": 43667337, + "PaymentType": "Debit Card" + }, + { + "Id": 4790, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-09-30T13:57:48", + "TransactionId": 87846136, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 67, + "CustomerInfo": 51408306, + "PaymentType": "Cash" + }, + { + "Id": 4791, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2019-09-08T18:59:02", + "TransactionId": 27070039, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 189, + "CustomerInfo": 46345181, + "PaymentType": "Cash" + }, + { + "Id": 4792, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-11-13T12:43:29", + "TransactionId": 13021798, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 825, + "CustomerInfo": 41442811, + "PaymentType": "Debit Card" + }, + { + "Id": 4793, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2017-01-17T16:58:57", + "TransactionId": 55898182, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 822, + "CustomerInfo": 98831971, + "PaymentType": "Cash" + }, + { + "Id": 4794, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2016-12-28T09:10:39", + "TransactionId": 23680859, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 829, + "CustomerInfo": 305962, + "PaymentType": "Cash" + }, + { + "Id": 4795, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-04-26T13:50:53", + "TransactionId": 72665663, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 854, + "CustomerInfo": 65583263, + "PaymentType": "Credit Card" + }, + { + "Id": 4796, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2017-08-20T16:08:50", + "TransactionId": 70514475, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 241, + "CustomerInfo": 9273334, + "PaymentType": "Credit Card" + }, + { + "Id": 4797, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2017-12-01T15:26:56", + "TransactionId": 50209463, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 856, + "CustomerInfo": 12528078, + "PaymentType": "Credit Card" + }, + { + "Id": 4798, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2017-08-16T18:29:23", + "TransactionId": 70587349, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 430, + "CustomerInfo": 63350343, + "PaymentType": "Credit Card" + }, + { + "Id": 4799, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2019-08-29T12:11:23", + "TransactionId": 3770787, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 23, + "CustomerInfo": 35240008, + "PaymentType": "Cash" + }, + { + "Id": 4800, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2016-12-21T08:26:36", + "TransactionId": 74517782, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 500, + "CustomerInfo": 41001776, + "PaymentType": "Cash" + }, + { + "Id": 4801, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2019-04-05T17:54:40", + "TransactionId": 49137487, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 479, + "CustomerInfo": 91775270, + "PaymentType": "Cash" + }, + { + "Id": 4802, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2019-02-05T10:16:54", + "TransactionId": 39680912, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 514, + "CustomerInfo": 18380668, + "PaymentType": "Credit Card" + }, + { + "Id": 4803, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-04-12T16:34:02", + "TransactionId": 73797728, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 832, + "CustomerInfo": 91205952, + "PaymentType": "Cash" + }, + { + "Id": 4804, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-09-13T17:34:22", + "TransactionId": 8536610, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 10699217, + "PaymentType": "Debit Card" + }, + { + "Id": 4805, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2019-04-18T15:44:56", + "TransactionId": 96162460, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 768, + "CustomerInfo": 39344415, + "PaymentType": "Debit Card" + }, + { + "Id": 4806, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2019-10-11T08:32:56", + "TransactionId": 2861355, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 891, + "CustomerInfo": 13844281, + "PaymentType": "Credit Card" + }, + { + "Id": 4807, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2018-02-01T16:26:07", + "TransactionId": 28609672, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 308, + "CustomerInfo": 92978236, + "PaymentType": "Credit Card" + }, + { + "Id": 4808, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2016-06-30T16:27:07", + "TransactionId": 48395406, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 759, + "CustomerInfo": 50522390, + "PaymentType": "Cash" + }, + { + "Id": 4809, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-07-29T12:45:56", + "TransactionId": 7088566, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 624, + "CustomerInfo": 71859502, + "PaymentType": "Cash" + }, + { + "Id": 4810, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-01-21T14:03:33", + "TransactionId": 72974503, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 556, + "CustomerInfo": 59652631, + "PaymentType": "Debit Card" + }, + { + "Id": 4811, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2018-02-19T16:00:20", + "TransactionId": 1245958, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 877, + "CustomerInfo": 69672703, + "PaymentType": "Debit Card" + }, + { + "Id": 4812, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-05-12T14:12:46", + "TransactionId": 92117381, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 847, + "CustomerInfo": 37742698, + "PaymentType": "Credit Card" + }, + { + "Id": 4813, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-02-14T14:08:18", + "TransactionId": 35845942, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 943, + "CustomerInfo": 95253669, + "PaymentType": "Credit Card" + }, + { + "Id": 4814, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2019-07-06T15:57:10", + "TransactionId": 66020540, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 243, + "CustomerInfo": 12012321, + "PaymentType": "Credit Card" + }, + { + "Id": 4815, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2018-10-16T16:10:51", + "TransactionId": 38264622, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 231, + "CustomerInfo": 55904386, + "PaymentType": "Cash" + }, + { + "Id": 4816, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-04-23T19:06:23", + "TransactionId": 1855797, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 727, + "CustomerInfo": 18573351, + "PaymentType": "Cash" + }, + { + "Id": 4817, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2017-05-25T09:31:24", + "TransactionId": 22947362, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 166, + "CustomerInfo": 67251911, + "PaymentType": "Credit Card" + }, + { + "Id": 4818, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2019-10-27T15:44:12", + "TransactionId": 46058803, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 960, + "CustomerInfo": 73664547, + "PaymentType": "Debit Card" + }, + { + "Id": 4819, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2016-06-13T13:35:54", + "TransactionId": 71103022, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 916, + "CustomerInfo": 85737139, + "PaymentType": "Cash" + }, + { + "Id": 4820, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2016-09-18T11:00:49", + "TransactionId": 17973324, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 359, + "CustomerInfo": 65021196, + "PaymentType": "Debit Card" + }, + { + "Id": 4821, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-01-11T07:17:28", + "TransactionId": 31392419, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 1177595, + "PaymentType": "Cash" + }, + { + "Id": 4822, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-09-29T13:24:58", + "TransactionId": 67060366, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 561, + "CustomerInfo": 49425677, + "PaymentType": "Debit Card" + }, + { + "Id": 4823, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2017-05-02T07:44:50", + "TransactionId": 29347611, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 488, + "CustomerInfo": 182049, + "PaymentType": "Debit Card" + }, + { + "Id": 4824, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2017-07-05T18:39:53", + "TransactionId": 75053391, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 250, + "CustomerInfo": 43213383, + "PaymentType": "Credit Card" + }, + { + "Id": 4825, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2019-11-07T13:30:43", + "TransactionId": 24381538, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 36, + "CustomerInfo": 67797185, + "PaymentType": "Credit Card" + }, + { + "Id": 4826, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-11-19T08:07:52", + "TransactionId": 73590366, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 281, + "CustomerInfo": 21260752, + "PaymentType": "Credit Card" + }, + { + "Id": 4827, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2017-03-17T07:27:16", + "TransactionId": 69726433, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 42308568, + "PaymentType": "Debit Card" + }, + { + "Id": 4828, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-04-21T08:43:26", + "TransactionId": 67757189, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 129, + "CustomerInfo": 23281830, + "PaymentType": "Credit Card" + }, + { + "Id": 4829, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2017-03-06T17:00:06", + "TransactionId": 56180185, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 887, + "CustomerInfo": 44011246, + "PaymentType": "Credit Card" + }, + { + "Id": 4830, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-11-02T12:23:37", + "TransactionId": 73163839, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 793, + "CustomerInfo": 16259516, + "PaymentType": "Credit Card" + }, + { + "Id": 4831, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-02-14T15:51:33", + "TransactionId": 16223927, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 987, + "CustomerInfo": 1423749, + "PaymentType": "Cash" + }, + { + "Id": 4832, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2016-03-03T13:05:14", + "TransactionId": 83013068, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 650, + "CustomerInfo": 80201456, + "PaymentType": "Debit Card" + }, + { + "Id": 4833, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2019-10-20T07:28:16", + "TransactionId": 66062531, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 781, + "CustomerInfo": 23661273, + "PaymentType": "Cash" + }, + { + "Id": 4834, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2018-04-04T12:05:37", + "TransactionId": 33608902, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 515, + "CustomerInfo": 87068139, + "PaymentType": "Debit Card" + }, + { + "Id": 4835, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2018-10-06T19:11:43", + "TransactionId": 47072603, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 202, + "CustomerInfo": 91525568, + "PaymentType": "Cash" + }, + { + "Id": 4836, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-06-25T11:54:14", + "TransactionId": 45714665, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 93697378, + "PaymentType": "Credit Card" + }, + { + "Id": 4837, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2016-01-14T15:57:36", + "TransactionId": 21754805, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 721, + "CustomerInfo": 31935590, + "PaymentType": "Cash" + }, + { + "Id": 4838, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-03-15T18:13:49", + "TransactionId": 1035704, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 995, + "CustomerInfo": 27586891, + "PaymentType": "Cash" + }, + { + "Id": 4839, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2019-01-30T10:46:16", + "TransactionId": 65921498, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 87, + "CustomerInfo": 22619546, + "PaymentType": "Cash" + }, + { + "Id": 4840, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-06-06T16:05:05", + "TransactionId": 4783696, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 592, + "CustomerInfo": 47914867, + "PaymentType": "Debit Card" + }, + { + "Id": 4841, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-02-23T07:37:12", + "TransactionId": 8777340, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 67617964, + "PaymentType": "Credit Card" + }, + { + "Id": 4842, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2019-05-28T13:38:04", + "TransactionId": 42453179, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 911, + "CustomerInfo": 28727739, + "PaymentType": "Cash" + }, + { + "Id": 4843, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-02-23T16:28:25", + "TransactionId": 93793638, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 979, + "CustomerInfo": 39910144, + "PaymentType": "Cash" + }, + { + "Id": 4844, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-05-23T10:38:47", + "TransactionId": 88279864, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 738, + "CustomerInfo": 48266376, + "PaymentType": "Credit Card" + }, + { + "Id": 4845, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2018-07-18T10:40:57", + "TransactionId": 22089376, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 542, + "CustomerInfo": 90877719, + "PaymentType": "Cash" + }, + { + "Id": 4846, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2017-03-01T12:57:45", + "TransactionId": 65613138, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 824, + "CustomerInfo": 41229605, + "PaymentType": "Credit Card" + }, + { + "Id": 4847, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-05-31T07:54:20", + "TransactionId": 14307020, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 464, + "CustomerInfo": 90175095, + "PaymentType": "Credit Card" + }, + { + "Id": 4848, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2016-01-25T18:46:39", + "TransactionId": 90154498, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 228, + "CustomerInfo": 45341573, + "PaymentType": "Credit Card" + }, + { + "Id": 4849, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-08-15T15:17:25", + "TransactionId": 50117710, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 521, + "CustomerInfo": 35652579, + "PaymentType": "Credit Card" + }, + { + "Id": 4850, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2017-07-03T07:07:06", + "TransactionId": 80210734, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 342, + "CustomerInfo": 30188045, + "PaymentType": "Credit Card" + }, + { + "Id": 4851, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2019-07-18T08:08:53", + "TransactionId": 72123100, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 359, + "CustomerInfo": 24705587, + "PaymentType": "Debit Card" + }, + { + "Id": 4852, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-07-24T13:18:37", + "TransactionId": 17579458, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 256, + "CustomerInfo": 41581026, + "PaymentType": "Credit Card" + }, + { + "Id": 4853, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2017-06-09T14:49:21", + "TransactionId": 6657526, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 368, + "CustomerInfo": 70709992, + "PaymentType": "Credit Card" + }, + { + "Id": 4854, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-04-30T12:00:17", + "TransactionId": 46028403, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 778, + "CustomerInfo": 95631675, + "PaymentType": "Cash" + }, + { + "Id": 4855, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2017-04-05T07:56:38", + "TransactionId": 25409371, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 384, + "CustomerInfo": 61717136, + "PaymentType": "Debit Card" + }, + { + "Id": 4856, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-07-23T09:00:09", + "TransactionId": 40715581, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 207, + "CustomerInfo": 48269132, + "PaymentType": "Cash" + }, + { + "Id": 4857, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2019-10-23T14:31:47", + "TransactionId": 41656798, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 400, + "CustomerInfo": 29083648, + "PaymentType": "Credit Card" + }, + { + "Id": 4858, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-11-30T16:24:40", + "TransactionId": 63355848, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 229, + "CustomerInfo": 22880015, + "PaymentType": "Debit Card" + }, + { + "Id": 4859, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-01-16T09:11:05", + "TransactionId": 65076097, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 946, + "CustomerInfo": 27258171, + "PaymentType": "Cash" + }, + { + "Id": 4860, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2017-08-04T09:23:28", + "TransactionId": 4807895, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 188, + "CustomerInfo": 12029877, + "PaymentType": "Debit Card" + }, + { + "Id": 4861, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-08-10T19:52:45", + "TransactionId": 21794682, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 816, + "CustomerInfo": 5504095, + "PaymentType": "Cash" + }, + { + "Id": 4862, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2016-01-31T18:34:16", + "TransactionId": 89599713, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 620, + "CustomerInfo": 46819889, + "PaymentType": "Debit Card" + }, + { + "Id": 4863, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-02-16T15:53:25", + "TransactionId": 61254845, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 379, + "CustomerInfo": 10189433, + "PaymentType": "Credit Card" + }, + { + "Id": 4864, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-11-05T13:04:22", + "TransactionId": 38732583, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 441, + "CustomerInfo": 11829128, + "PaymentType": "Debit Card" + }, + { + "Id": 4865, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-05-10T08:03:33", + "TransactionId": 15037980, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 934, + "CustomerInfo": 8096843, + "PaymentType": "Debit Card" + }, + { + "Id": 4866, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2019-01-29T12:47:40", + "TransactionId": 85037806, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 302, + "CustomerInfo": 17749321, + "PaymentType": "Cash" + }, + { + "Id": 4867, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2018-02-07T12:07:38", + "TransactionId": 15503065, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 412, + "CustomerInfo": 57293273, + "PaymentType": "Debit Card" + }, + { + "Id": 4868, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-02-14T09:32:33", + "TransactionId": 62102100, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 194, + "CustomerInfo": 70160294, + "PaymentType": "Debit Card" + }, + { + "Id": 4869, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-11-05T11:01:15", + "TransactionId": 47141001, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 430, + "CustomerInfo": 9484216, + "PaymentType": "Debit Card" + }, + { + "Id": 4870, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2016-05-11T10:14:10", + "TransactionId": 13343753, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 647, + "CustomerInfo": 30336459, + "PaymentType": "Credit Card" + }, + { + "Id": 4871, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2017-11-20T19:57:48", + "TransactionId": 6981760, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 297, + "CustomerInfo": 97710282, + "PaymentType": "Debit Card" + }, + { + "Id": 4872, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-01-15T07:32:01", + "TransactionId": 83100606, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 276, + "CustomerInfo": 15685974, + "PaymentType": "Cash" + }, + { + "Id": 4873, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-11-20T16:48:26", + "TransactionId": 90112229, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 664, + "CustomerInfo": 6552611, + "PaymentType": "Debit Card" + }, + { + "Id": 4874, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-12-02T16:19:55", + "TransactionId": 91766052, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 593, + "CustomerInfo": 39321299, + "PaymentType": "Cash" + }, + { + "Id": 4875, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2016-07-10T15:03:45", + "TransactionId": 61459214, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 373, + "CustomerInfo": 21417928, + "PaymentType": "Credit Card" + }, + { + "Id": 4876, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2019-02-06T17:12:29", + "TransactionId": 61765325, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 636, + "CustomerInfo": 51091383, + "PaymentType": "Cash" + }, + { + "Id": 4877, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2016-12-20T15:58:11", + "TransactionId": 41494336, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 256, + "CustomerInfo": 2971818, + "PaymentType": "Debit Card" + }, + { + "Id": 4878, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2017-01-03T14:33:22", + "TransactionId": 9219675, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 700, + "CustomerInfo": 68176480, + "PaymentType": "Credit Card" + }, + { + "Id": 4879, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2017-01-16T12:01:09", + "TransactionId": 44846101, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 412, + "CustomerInfo": 46562133, + "PaymentType": "Cash" + }, + { + "Id": 4880, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2016-07-15T07:31:52", + "TransactionId": 92909866, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 925, + "CustomerInfo": 93912765, + "PaymentType": "Credit Card" + }, + { + "Id": 4881, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2017-09-27T09:02:27", + "TransactionId": 15361573, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 624, + "CustomerInfo": 23582432, + "PaymentType": "Debit Card" + }, + { + "Id": 4882, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-02-15T14:32:38", + "TransactionId": 79871484, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 260, + "CustomerInfo": 72589249, + "PaymentType": "Credit Card" + }, + { + "Id": 4883, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2018-04-29T11:13:12", + "TransactionId": 9986793, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 731, + "CustomerInfo": 23741945, + "PaymentType": "Debit Card" + }, + { + "Id": 4884, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-09-06T08:45:36", + "TransactionId": 11106934, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 63, + "CustomerInfo": 37219808, + "PaymentType": "Debit Card" + }, + { + "Id": 4885, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-01-26T08:13:38", + "TransactionId": 52719492, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 342, + "CustomerInfo": 99333775, + "PaymentType": "Debit Card" + }, + { + "Id": 4886, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2017-04-08T17:38:33", + "TransactionId": 94507260, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 668, + "CustomerInfo": 24051569, + "PaymentType": "Credit Card" + }, + { + "Id": 4887, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-05-30T15:01:35", + "TransactionId": 61433977, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 120, + "CustomerInfo": 38888058, + "PaymentType": "Debit Card" + }, + { + "Id": 4888, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-12-02T14:26:10", + "TransactionId": 62033323, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 379, + "CustomerInfo": 13113204, + "PaymentType": "Debit Card" + }, + { + "Id": 4889, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-01-25T13:37:47", + "TransactionId": 63608384, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 914, + "CustomerInfo": 51201053, + "PaymentType": "Debit Card" + }, + { + "Id": 4890, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-06-27T13:53:46", + "TransactionId": 17020614, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 235, + "CustomerInfo": 68260258, + "PaymentType": "Cash" + }, + { + "Id": 4891, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2018-10-10T14:23:25", + "TransactionId": 2084089, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 684, + "CustomerInfo": 84125771, + "PaymentType": "Debit Card" + }, + { + "Id": 4892, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2016-03-13T12:36:00", + "TransactionId": 62414082, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 231, + "CustomerInfo": 52573797, + "PaymentType": "Credit Card" + }, + { + "Id": 4893, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-06-15T17:45:01", + "TransactionId": 65100046, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 666, + "CustomerInfo": 61002149, + "PaymentType": "Credit Card" + }, + { + "Id": 4894, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2016-03-17T16:21:13", + "TransactionId": 84412299, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 99, + "CustomerInfo": 47181546, + "PaymentType": "Credit Card" + }, + { + "Id": 4895, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2017-04-28T18:35:17", + "TransactionId": 61176286, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 401, + "CustomerInfo": 80962078, + "PaymentType": "Debit Card" + }, + { + "Id": 4896, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2017-02-11T16:17:11", + "TransactionId": 23920117, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 179, + "CustomerInfo": 84841956, + "PaymentType": "Cash" + }, + { + "Id": 4897, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-08-12T13:29:17", + "TransactionId": 93305548, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 922, + "CustomerInfo": 67135762, + "PaymentType": "Debit Card" + }, + { + "Id": 4898, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-09-21T12:04:36", + "TransactionId": 12056462, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 781, + "CustomerInfo": 41324948, + "PaymentType": "Credit Card" + }, + { + "Id": 4899, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-08-08T14:08:44", + "TransactionId": 31051112, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 742, + "CustomerInfo": 42315883, + "PaymentType": "Credit Card" + }, + { + "Id": 4900, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2016-06-15T08:17:57", + "TransactionId": 3310200, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 26863824, + "PaymentType": "Credit Card" + }, + { + "Id": 4901, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-05-24T10:03:30", + "TransactionId": 2586066, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 984, + "CustomerInfo": 25191678, + "PaymentType": "Cash" + }, + { + "Id": 4902, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-08-05T11:19:49", + "TransactionId": 5019861, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 176, + "CustomerInfo": 76749142, + "PaymentType": "Cash" + }, + { + "Id": 4903, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2018-05-29T18:48:40", + "TransactionId": 72424994, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 919, + "CustomerInfo": 54331983, + "PaymentType": "Cash" + }, + { + "Id": 4904, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-07-30T12:14:50", + "TransactionId": 36131492, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 771, + "CustomerInfo": 36164618, + "PaymentType": "Credit Card" + }, + { + "Id": 4905, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-09-16T15:39:27", + "TransactionId": 31944643, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 693, + "CustomerInfo": 40644013, + "PaymentType": "Credit Card" + }, + { + "Id": 4906, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2019-03-06T09:51:24", + "TransactionId": 59271839, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 876, + "CustomerInfo": 30552675, + "PaymentType": "Debit Card" + }, + { + "Id": 4907, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2018-08-11T11:14:30", + "TransactionId": 61641959, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 813, + "CustomerInfo": 77999235, + "PaymentType": "Cash" + }, + { + "Id": 4908, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2016-01-27T09:56:18", + "TransactionId": 70318812, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 487, + "CustomerInfo": 87968305, + "PaymentType": "Credit Card" + }, + { + "Id": 4909, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2016-02-13T14:31:12", + "TransactionId": 59437306, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 411, + "CustomerInfo": 32743589, + "PaymentType": "Debit Card" + }, + { + "Id": 4910, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2016-08-15T10:19:12", + "TransactionId": 34367501, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 352, + "CustomerInfo": 94165109, + "PaymentType": "Debit Card" + }, + { + "Id": 4911, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2017-05-13T14:37:41", + "TransactionId": 11382408, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 687, + "CustomerInfo": 93177528, + "PaymentType": "Cash" + }, + { + "Id": 4912, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2018-03-25T10:01:55", + "TransactionId": 84420731, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 647, + "CustomerInfo": 65687475, + "PaymentType": "Cash" + }, + { + "Id": 4913, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2016-02-06T08:27:53", + "TransactionId": 50297078, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 863, + "CustomerInfo": 22510256, + "PaymentType": "Cash" + }, + { + "Id": 4914, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2017-06-09T14:20:33", + "TransactionId": 116834, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 59196710, + "PaymentType": "Credit Card" + }, + { + "Id": 4915, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-06-22T14:43:00", + "TransactionId": 90889984, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 528, + "CustomerInfo": 97203243, + "PaymentType": "Cash" + }, + { + "Id": 4916, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2017-01-16T11:55:06", + "TransactionId": 21793491, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 422, + "CustomerInfo": 34253291, + "PaymentType": "Cash" + }, + { + "Id": 4917, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-01-08T13:29:43", + "TransactionId": 21887573, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 782, + "CustomerInfo": 28832644, + "PaymentType": "Credit Card" + }, + { + "Id": 4918, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-03-12T12:49:24", + "TransactionId": 12155680, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 138, + "CustomerInfo": 98752416, + "PaymentType": "Credit Card" + }, + { + "Id": 4919, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-12-29T14:57:59", + "TransactionId": 29226163, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 674, + "CustomerInfo": 10694217, + "PaymentType": "Cash" + }, + { + "Id": 4920, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-06-07T11:10:45", + "TransactionId": 96355616, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 960, + "CustomerInfo": 27912364, + "PaymentType": "Credit Card" + }, + { + "Id": 4921, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-08-26T18:34:25", + "TransactionId": 23358445, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 211, + "CustomerInfo": 85798508, + "PaymentType": "Cash" + }, + { + "Id": 4922, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2017-10-21T11:32:12", + "TransactionId": 2462639, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 546, + "CustomerInfo": 41775135, + "PaymentType": "Credit Card" + }, + { + "Id": 4923, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2016-03-01T08:45:53", + "TransactionId": 58944092, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 836, + "CustomerInfo": 51285848, + "PaymentType": "Debit Card" + }, + { + "Id": 4924, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-08-02T19:01:38", + "TransactionId": 66701960, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 183, + "CustomerInfo": 44761348, + "PaymentType": "Debit Card" + }, + { + "Id": 4925, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2019-09-30T09:45:04", + "TransactionId": 26324976, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 521, + "CustomerInfo": 77257839, + "PaymentType": "Cash" + }, + { + "Id": 4926, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2018-07-08T13:15:45", + "TransactionId": 51316129, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 697, + "CustomerInfo": 13917216, + "PaymentType": "Cash" + }, + { + "Id": 4927, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2019-05-23T18:51:33", + "TransactionId": 32990233, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 859, + "CustomerInfo": 39778886, + "PaymentType": "Cash" + }, + { + "Id": 4928, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2016-04-12T19:09:07", + "TransactionId": 13998281, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 79942632, + "PaymentType": "Credit Card" + }, + { + "Id": 4929, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-03-15T19:37:55", + "TransactionId": 60389491, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 376, + "CustomerInfo": 73753016, + "PaymentType": "Cash" + }, + { + "Id": 4930, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-05-14T11:47:28", + "TransactionId": 90218514, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 484, + "CustomerInfo": 49090672, + "PaymentType": "Cash" + }, + { + "Id": 4931, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-10-31T18:43:03", + "TransactionId": 60960472, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 986, + "CustomerInfo": 96834796, + "PaymentType": "Debit Card" + }, + { + "Id": 4932, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2017-11-22T10:47:51", + "TransactionId": 83996156, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 299, + "CustomerInfo": 8094046, + "PaymentType": "Debit Card" + }, + { + "Id": 4933, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-10-31T19:58:57", + "TransactionId": 11893194, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 601, + "CustomerInfo": 35954014, + "PaymentType": "Debit Card" + }, + { + "Id": 4934, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2017-03-05T09:00:35", + "TransactionId": 79512650, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 755, + "CustomerInfo": 92958537, + "PaymentType": "Cash" + }, + { + "Id": 4935, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2016-02-29T19:07:49", + "TransactionId": 63761641, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 842, + "CustomerInfo": 83754315, + "PaymentType": "Debit Card" + }, + { + "Id": 4936, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-08-22T17:22:25", + "TransactionId": 26414006, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 596, + "CustomerInfo": 62069685, + "PaymentType": "Debit Card" + }, + { + "Id": 4937, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2018-05-14T08:43:09", + "TransactionId": 14606332, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 697, + "CustomerInfo": 65984274, + "PaymentType": "Debit Card" + }, + { + "Id": 4938, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-04-25T13:53:02", + "TransactionId": 86585338, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 417, + "CustomerInfo": 16759336, + "PaymentType": "Credit Card" + }, + { + "Id": 4939, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-03-06T16:43:32", + "TransactionId": 49671491, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 36, + "CustomerInfo": 98955017, + "PaymentType": "Credit Card" + }, + { + "Id": 4940, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-06-11T16:58:57", + "TransactionId": 26000711, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 84905591, + "PaymentType": "Cash" + }, + { + "Id": 4941, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2016-03-30T12:00:26", + "TransactionId": 8915409, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 214, + "CustomerInfo": 67665828, + "PaymentType": "Debit Card" + }, + { + "Id": 4942, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-06-13T17:59:34", + "TransactionId": 80441457, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 153, + "CustomerInfo": 3031334, + "PaymentType": "Debit Card" + }, + { + "Id": 4943, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2019-02-04T08:49:03", + "TransactionId": 41969602, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 830, + "CustomerInfo": 89545498, + "PaymentType": "Credit Card" + }, + { + "Id": 4944, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-06-20T08:11:28", + "TransactionId": 43383366, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 612, + "CustomerInfo": 6733333, + "PaymentType": "Credit Card" + }, + { + "Id": 4945, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-03-13T17:35:48", + "TransactionId": 10423715, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 60601251, + "PaymentType": "Cash" + }, + { + "Id": 4946, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-09-29T13:58:05", + "TransactionId": 56585903, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 751, + "CustomerInfo": 50947927, + "PaymentType": "Cash" + }, + { + "Id": 4947, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2016-02-22T17:00:06", + "TransactionId": 26242033, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 735, + "CustomerInfo": 45033469, + "PaymentType": "Cash" + }, + { + "Id": 4948, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2019-09-18T16:50:44", + "TransactionId": 9726258, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 244, + "CustomerInfo": 94654807, + "PaymentType": "Credit Card" + }, + { + "Id": 4949, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-03-05T10:08:24", + "TransactionId": 97102069, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 622, + "CustomerInfo": 84688590, + "PaymentType": "Credit Card" + }, + { + "Id": 4950, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2018-12-14T17:14:21", + "TransactionId": 94101078, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 457, + "CustomerInfo": 88195747, + "PaymentType": "Cash" + }, + { + "Id": 4951, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-06-26T08:44:01", + "TransactionId": 74387677, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 397, + "CustomerInfo": 3915232, + "PaymentType": "Credit Card" + }, + { + "Id": 4952, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-10-30T19:42:14", + "TransactionId": 6013628, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 939, + "CustomerInfo": 70219628, + "PaymentType": "Debit Card" + }, + { + "Id": 4953, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2017-09-26T18:13:49", + "TransactionId": 952945, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 773, + "CustomerInfo": 80243109, + "PaymentType": "Credit Card" + }, + { + "Id": 4954, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-01-11T12:09:39", + "TransactionId": 73818135, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 991, + "CustomerInfo": 27714799, + "PaymentType": "Credit Card" + }, + { + "Id": 4955, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-06-09T08:05:43", + "TransactionId": 46535629, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 820, + "CustomerInfo": 51178146, + "PaymentType": "Credit Card" + }, + { + "Id": 4956, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-05-25T14:27:10", + "TransactionId": 66812467, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 438, + "CustomerInfo": 8289985, + "PaymentType": "Cash" + }, + { + "Id": 4957, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2018-09-16T17:28:02", + "TransactionId": 84758942, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 53, + "CustomerInfo": 24367742, + "PaymentType": "Credit Card" + }, + { + "Id": 4958, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2019-08-01T09:50:33", + "TransactionId": 56262250, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 208, + "CustomerInfo": 48301232, + "PaymentType": "Cash" + }, + { + "Id": 4959, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2016-04-30T13:14:18", + "TransactionId": 79281106, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 932, + "CustomerInfo": 43691084, + "PaymentType": "Credit Card" + }, + { + "Id": 4960, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2018-02-19T12:32:50", + "TransactionId": 30114832, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 212, + "CustomerInfo": 67614794, + "PaymentType": "Debit Card" + }, + { + "Id": 4961, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2017-07-18T10:31:44", + "TransactionId": 17728934, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 638, + "CustomerInfo": 8054560, + "PaymentType": "Debit Card" + }, + { + "Id": 4962, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-12-19T15:17:08", + "TransactionId": 51894557, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 582, + "CustomerInfo": 3226094, + "PaymentType": "Credit Card" + }, + { + "Id": 4963, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2017-04-12T15:05:54", + "TransactionId": 18412671, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 789, + "CustomerInfo": 16342746, + "PaymentType": "Credit Card" + }, + { + "Id": 4964, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-07-24T13:10:08", + "TransactionId": 38718163, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 612, + "CustomerInfo": 3894869, + "PaymentType": "Credit Card" + }, + { + "Id": 4965, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2017-08-16T14:40:08", + "TransactionId": 52729675, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 110, + "CustomerInfo": 19121428, + "PaymentType": "Debit Card" + }, + { + "Id": 4966, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2019-01-31T19:41:48", + "TransactionId": 19892754, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 38490523, + "PaymentType": "Cash" + }, + { + "Id": 4967, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2018-11-28T16:47:00", + "TransactionId": 46630947, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 456, + "CustomerInfo": 90156703, + "PaymentType": "Cash" + }, + { + "Id": 4968, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2017-12-09T14:51:04", + "TransactionId": 22820105, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 353, + "CustomerInfo": 40123242, + "PaymentType": "Debit Card" + }, + { + "Id": 4969, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2018-01-23T12:10:57", + "TransactionId": 74136929, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 857, + "CustomerInfo": 86004220, + "PaymentType": "Debit Card" + }, + { + "Id": 4970, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2017-08-26T12:37:00", + "TransactionId": 83445646, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 700, + "CustomerInfo": 62623828, + "PaymentType": "Credit Card" + }, + { + "Id": 4971, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2017-01-06T12:53:51", + "TransactionId": 88959952, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 73117104, + "PaymentType": "Debit Card" + }, + { + "Id": 4972, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2016-07-31T19:12:35", + "TransactionId": 45256111, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 314, + "CustomerInfo": 64395246, + "PaymentType": "Cash" + }, + { + "Id": 4973, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2016-11-16T14:46:19", + "TransactionId": 74390040, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 810, + "CustomerInfo": 77201612, + "PaymentType": "Cash" + }, + { + "Id": 4974, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2019-03-08T11:41:25", + "TransactionId": 96969596, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 328, + "CustomerInfo": 3118623, + "PaymentType": "Debit Card" + }, + { + "Id": 4975, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2019-03-03T15:08:12", + "TransactionId": 2057032, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 933, + "CustomerInfo": 27239444, + "PaymentType": "Credit Card" + }, + { + "Id": 4976, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-04-09T15:51:16", + "TransactionId": 51011675, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 364, + "CustomerInfo": 34761945, + "PaymentType": "Credit Card" + }, + { + "Id": 4977, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2016-09-26T10:30:09", + "TransactionId": 18032956, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 858, + "CustomerInfo": 93850074, + "PaymentType": "Credit Card" + }, + { + "Id": 4978, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2016-03-14T14:41:34", + "TransactionId": 72696676, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 242, + "CustomerInfo": 21603127, + "PaymentType": "Debit Card" + }, + { + "Id": 4979, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2018-06-11T10:52:45", + "TransactionId": 18238022, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 498, + "CustomerInfo": 23527262, + "PaymentType": "Credit Card" + }, + { + "Id": 4980, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-06-16T17:50:30", + "TransactionId": 19898268, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 114, + "CustomerInfo": 10722094, + "PaymentType": "Debit Card" + }, + { + "Id": 4981, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-01-14T13:06:14", + "TransactionId": 95494325, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 139, + "CustomerInfo": 10115305, + "PaymentType": "Debit Card" + }, + { + "Id": 4982, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-04-12T15:14:41", + "TransactionId": 73858808, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 167, + "CustomerInfo": 90020745, + "PaymentType": "Cash" + }, + { + "Id": 4983, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2018-04-08T17:32:30", + "TransactionId": 28270896, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 456, + "CustomerInfo": 15528330, + "PaymentType": "Credit Card" + }, + { + "Id": 4984, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-08-10T17:18:32", + "TransactionId": 10101411, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 980, + "CustomerInfo": 10181454, + "PaymentType": "Credit Card" + }, + { + "Id": 4985, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-07-10T10:21:04", + "TransactionId": 80023522, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 593, + "CustomerInfo": 79269584, + "PaymentType": "Cash" + }, + { + "Id": 4986, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2016-01-28T16:50:10", + "TransactionId": 39774784, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 481, + "CustomerInfo": 19526117, + "PaymentType": "Credit Card" + }, + { + "Id": 4987, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-04-18T07:30:35", + "TransactionId": 34111895, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 48, + "CustomerInfo": 52319966, + "PaymentType": "Cash" + }, + { + "Id": 4988, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-03-18T10:11:17", + "TransactionId": 69546446, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 752, + "CustomerInfo": 75946320, + "PaymentType": "Debit Card" + }, + { + "Id": 4989, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-02-20T14:17:31", + "TransactionId": 64223301, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 860, + "CustomerInfo": 21444983, + "PaymentType": "Credit Card" + }, + { + "Id": 4990, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-04-06T16:04:13", + "TransactionId": 13892956, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 233, + "CustomerInfo": 3002318, + "PaymentType": "Credit Card" + }, + { + "Id": 4991, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2019-11-26T07:07:41", + "TransactionId": 2536901, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 435, + "CustomerInfo": 29027118, + "PaymentType": "Debit Card" + }, + { + "Id": 4992, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-05-07T09:17:00", + "TransactionId": 72508105, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 383, + "CustomerInfo": 40965494, + "PaymentType": "Cash" + }, + { + "Id": 4993, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-07-30T10:51:10", + "TransactionId": 34000565, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 42714101, + "PaymentType": "Cash" + }, + { + "Id": 4994, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2016-02-11T10:26:50", + "TransactionId": 28512738, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 428, + "CustomerInfo": 62595254, + "PaymentType": "Cash" + }, + { + "Id": 4995, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2017-05-15T09:12:23", + "TransactionId": 73412308, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 92252874, + "PaymentType": "Credit Card" + }, + { + "Id": 4996, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2017-09-07T19:45:50", + "TransactionId": 9462514, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 979, + "CustomerInfo": 82342502, + "PaymentType": "Credit Card" + }, + { + "Id": 4997, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2016-11-21T18:24:03", + "TransactionId": 79822699, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 256, + "CustomerInfo": 31511497, + "PaymentType": "Debit Card" + }, + { + "Id": 4998, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-01-14T14:24:52", + "TransactionId": 12606577, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 615, + "CustomerInfo": 74021568, + "PaymentType": "Credit Card" + }, + { + "Id": 4999, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-06-13T16:02:12", + "TransactionId": 52417443, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 600, + "CustomerInfo": 10020012, + "PaymentType": "Credit Card" + }, + { + "Id": 5000, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-08-18T07:08:07", + "TransactionId": 62424609, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 789, + "CustomerInfo": 85014311, + "PaymentType": "Cash" + }, + { + "Id": 5001, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-10-07T16:13:35", + "TransactionId": 74238825, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 953, + "CustomerInfo": 94727522, + "PaymentType": "Debit Card" + }, + { + "Id": 5002, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2017-02-18T18:19:26", + "TransactionId": 91735452, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 302, + "CustomerInfo": 2160969, + "PaymentType": "Cash" + }, + { + "Id": 5003, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-01-19T14:02:41", + "TransactionId": 74113192, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 228, + "CustomerInfo": 91090602, + "PaymentType": "Credit Card" + }, + { + "Id": 5004, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2016-12-25T08:00:32", + "TransactionId": 48333506, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 422, + "CustomerInfo": 32495416, + "PaymentType": "Credit Card" + }, + { + "Id": 5005, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2017-06-16T16:56:30", + "TransactionId": 84309940, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 8574928, + "PaymentType": "Credit Card" + }, + { + "Id": 5006, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2019-06-15T18:37:09", + "TransactionId": 88788779, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 151, + "CustomerInfo": 18693719, + "PaymentType": "Credit Card" + }, + { + "Id": 5007, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-08-08T11:33:13", + "TransactionId": 53042996, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 923, + "CustomerInfo": 27911279, + "PaymentType": "Cash" + }, + { + "Id": 5008, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-02-11T15:12:58", + "TransactionId": 10139833, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 194, + "CustomerInfo": 55598351, + "PaymentType": "Credit Card" + }, + { + "Id": 5009, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2016-03-21T17:08:53", + "TransactionId": 21106478, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 18, + "CustomerInfo": 80206131, + "PaymentType": "Credit Card" + }, + { + "Id": 5010, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-07-04T18:54:35", + "TransactionId": 97880975, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 632, + "CustomerInfo": 1427603, + "PaymentType": "Debit Card" + }, + { + "Id": 5011, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2018-01-12T19:07:49", + "TransactionId": 77958565, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 828, + "CustomerInfo": 35276851, + "PaymentType": "Cash" + }, + { + "Id": 5012, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2018-07-08T14:20:59", + "TransactionId": 22236759, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 377, + "CustomerInfo": 49180691, + "PaymentType": "Debit Card" + }, + { + "Id": 5013, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2016-08-13T08:18:58", + "TransactionId": 39200819, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 825, + "CustomerInfo": 12789171, + "PaymentType": "Debit Card" + }, + { + "Id": 5014, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2016-09-12T08:04:51", + "TransactionId": 67721521, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 364, + "CustomerInfo": 90924675, + "PaymentType": "Credit Card" + }, + { + "Id": 5015, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2016-08-07T14:23:08", + "TransactionId": 69329778, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 581, + "CustomerInfo": 24494214, + "PaymentType": "Debit Card" + }, + { + "Id": 5016, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2018-06-11T17:37:24", + "TransactionId": 24826746, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 911, + "CustomerInfo": 47777413, + "PaymentType": "Cash" + }, + { + "Id": 5017, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-06-02T16:26:33", + "TransactionId": 44795597, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 194, + "CustomerInfo": 55144818, + "PaymentType": "Debit Card" + }, + { + "Id": 5018, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-08-16T11:43:09", + "TransactionId": 33977633, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 815, + "CustomerInfo": 97960614, + "PaymentType": "Credit Card" + }, + { + "Id": 5019, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-01-01T15:04:28", + "TransactionId": 71179022, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 642, + "CustomerInfo": 42121176, + "PaymentType": "Cash" + }, + { + "Id": 5020, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-10-04T10:17:46", + "TransactionId": 85925717, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 600, + "CustomerInfo": 65108874, + "PaymentType": "Credit Card" + }, + { + "Id": 5021, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2019-01-06T12:25:12", + "TransactionId": 85129557, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 594, + "CustomerInfo": 53240700, + "PaymentType": "Cash" + }, + { + "Id": 5022, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2017-10-11T16:55:12", + "TransactionId": 55472441, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 784, + "CustomerInfo": 98580989, + "PaymentType": "Debit Card" + }, + { + "Id": 5023, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-07-11T08:15:30", + "TransactionId": 14642351, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 620, + "CustomerInfo": 32441411, + "PaymentType": "Credit Card" + }, + { + "Id": 5024, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-07-12T15:04:45", + "TransactionId": 90263324, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 628, + "CustomerInfo": 42267972, + "PaymentType": "Debit Card" + }, + { + "Id": 5025, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-08-20T17:37:58", + "TransactionId": 4477179, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 88831773, + "PaymentType": "Credit Card" + }, + { + "Id": 5026, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-01-20T09:46:48", + "TransactionId": 58399446, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 227, + "CustomerInfo": 51257418, + "PaymentType": "Credit Card" + }, + { + "Id": 5027, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2018-01-04T18:13:15", + "TransactionId": 15873422, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 284, + "CustomerInfo": 18005887, + "PaymentType": "Cash" + }, + { + "Id": 5028, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-09-15T15:08:56", + "TransactionId": 8427874, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 863, + "CustomerInfo": 34675616, + "PaymentType": "Credit Card" + }, + { + "Id": 5029, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-10-07T10:47:17", + "TransactionId": 17799668, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 999, + "CustomerInfo": 15105780, + "PaymentType": "Cash" + }, + { + "Id": 5030, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-04-04T19:01:03", + "TransactionId": 17967166, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 166, + "CustomerInfo": 76672879, + "PaymentType": "Cash" + }, + { + "Id": 5031, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-07-12T15:53:25", + "TransactionId": 72336839, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 945, + "CustomerInfo": 13858501, + "PaymentType": "Cash" + }, + { + "Id": 5032, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2016-07-21T18:26:04", + "TransactionId": 10157844, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 393, + "CustomerInfo": 3613268, + "PaymentType": "Credit Card" + }, + { + "Id": 5033, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2016-02-28T12:48:58", + "TransactionId": 56667611, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 494, + "CustomerInfo": 76594429, + "PaymentType": "Debit Card" + }, + { + "Id": 5034, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-07-14T15:50:24", + "TransactionId": 82787387, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 56, + "CustomerInfo": 20281578, + "PaymentType": "Cash" + }, + { + "Id": 5035, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-10-01T09:25:21", + "TransactionId": 36946085, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 243, + "CustomerInfo": 18920296, + "PaymentType": "Cash" + }, + { + "Id": 5036, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-08-17T13:17:11", + "TransactionId": 42071397, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 118, + "CustomerInfo": 29509769, + "PaymentType": "Cash" + }, + { + "Id": 5037, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2016-03-30T08:15:04", + "TransactionId": 86611308, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 210, + "CustomerInfo": 94174101, + "PaymentType": "Debit Card" + }, + { + "Id": 5038, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-05-22T07:48:35", + "TransactionId": 38968218, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 814, + "CustomerInfo": 75645867, + "PaymentType": "Debit Card" + }, + { + "Id": 5039, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-04-19T14:18:49", + "TransactionId": 21949815, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 350, + "CustomerInfo": 25514878, + "PaymentType": "Cash" + }, + { + "Id": 5040, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-04-27T12:13:24", + "TransactionId": 28680214, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 655, + "CustomerInfo": 33735981, + "PaymentType": "Cash" + }, + { + "Id": 5041, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2017-10-10T10:09:16", + "TransactionId": 48811161, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 26, + "CustomerInfo": 48004409, + "PaymentType": "Credit Card" + }, + { + "Id": 5042, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-05-30T15:13:41", + "TransactionId": 29068535, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 968, + "CustomerInfo": 76590083, + "PaymentType": "Debit Card" + }, + { + "Id": 5043, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-03-02T19:24:32", + "TransactionId": 88994164, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 81, + "CustomerInfo": 66025372, + "PaymentType": "Cash" + }, + { + "Id": 5044, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2018-07-18T11:00:40", + "TransactionId": 6991942, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 258, + "CustomerInfo": 40022671, + "PaymentType": "Cash" + }, + { + "Id": 5045, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2018-05-05T16:14:27", + "TransactionId": 47183843, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 596, + "CustomerInfo": 66896274, + "PaymentType": "Debit Card" + }, + { + "Id": 5046, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2017-03-01T09:20:18", + "TransactionId": 11561411, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 599, + "CustomerInfo": 74370053, + "PaymentType": "Credit Card" + }, + { + "Id": 5047, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2016-06-27T11:47:02", + "TransactionId": 34557094, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 989, + "CustomerInfo": 17117501, + "PaymentType": "Credit Card" + }, + { + "Id": 5048, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2016-07-13T14:45:36", + "TransactionId": 29611691, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 692, + "CustomerInfo": 45058524, + "PaymentType": "Debit Card" + }, + { + "Id": 5049, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2016-10-03T11:37:58", + "TransactionId": 69986461, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 269, + "CustomerInfo": 55324469, + "PaymentType": "Credit Card" + }, + { + "Id": 5050, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-05-10T07:35:20", + "TransactionId": 88158506, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 986, + "CustomerInfo": 69586465, + "PaymentType": "Debit Card" + }, + { + "Id": 5051, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2019-01-15T17:20:15", + "TransactionId": 74026085, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 956, + "CustomerInfo": 19314000, + "PaymentType": "Cash" + }, + { + "Id": 5052, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-06-06T14:29:11", + "TransactionId": 85414534, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 917, + "CustomerInfo": 26713570, + "PaymentType": "Cash" + }, + { + "Id": 5053, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2019-08-14T18:21:01", + "TransactionId": 85390120, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 702, + "CustomerInfo": 63554004, + "PaymentType": "Cash" + }, + { + "Id": 5054, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-10-17T07:39:48", + "TransactionId": 2216236, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 200, + "CustomerInfo": 85503447, + "PaymentType": "Cash" + }, + { + "Id": 5055, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-11-29T17:16:31", + "TransactionId": 22180766, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 804, + "CustomerInfo": 73644766, + "PaymentType": "Debit Card" + }, + { + "Id": 5056, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2017-01-10T19:08:07", + "TransactionId": 30863147, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 68, + "CustomerInfo": 69442062, + "PaymentType": "Debit Card" + }, + { + "Id": 5057, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2019-07-01T07:26:59", + "TransactionId": 8711150, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 589, + "CustomerInfo": 42925255, + "PaymentType": "Credit Card" + }, + { + "Id": 5058, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2016-11-24T18:57:10", + "TransactionId": 89203621, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 66, + "CustomerInfo": 3652956, + "PaymentType": "Debit Card" + }, + { + "Id": 5059, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-08-16T09:53:51", + "TransactionId": 46929401, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 199, + "CustomerInfo": 91591873, + "PaymentType": "Debit Card" + }, + { + "Id": 5060, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2018-05-16T16:22:05", + "TransactionId": 44810378, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 961, + "CustomerInfo": 37655471, + "PaymentType": "Debit Card" + }, + { + "Id": 5061, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2018-10-15T19:04:57", + "TransactionId": 5392063, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 498, + "CustomerInfo": 72739137, + "PaymentType": "Debit Card" + }, + { + "Id": 5062, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-11-01T18:59:20", + "TransactionId": 26998199, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 254, + "CustomerInfo": 43965323, + "PaymentType": "Cash" + }, + { + "Id": 5063, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-11-24T17:51:13", + "TransactionId": 24312101, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 352, + "CustomerInfo": 92975089, + "PaymentType": "Cash" + }, + { + "Id": 5064, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-03-18T10:47:51", + "TransactionId": 15922514, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 576, + "CustomerInfo": 89890342, + "PaymentType": "Cash" + }, + { + "Id": 5065, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-12-07T07:59:31", + "TransactionId": 41353849, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 924, + "CustomerInfo": 59039143, + "PaymentType": "Cash" + }, + { + "Id": 5066, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2016-09-11T19:02:38", + "TransactionId": 63841554, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 605, + "CustomerInfo": 18764443, + "PaymentType": "Cash" + }, + { + "Id": 5067, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2019-05-21T15:33:16", + "TransactionId": 30543566, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 203, + "CustomerInfo": 4206239, + "PaymentType": "Cash" + }, + { + "Id": 5068, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2016-10-26T17:19:58", + "TransactionId": 14291493, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 245, + "CustomerInfo": 82672958, + "PaymentType": "Debit Card" + }, + { + "Id": 5069, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2019-01-10T09:06:55", + "TransactionId": 19493868, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 3495438, + "PaymentType": "Cash" + }, + { + "Id": 5070, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-09-10T18:58:45", + "TransactionId": 50046655, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 778, + "CustomerInfo": 3538985, + "PaymentType": "Credit Card" + }, + { + "Id": 5071, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2018-01-29T14:16:39", + "TransactionId": 53018967, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 737, + "CustomerInfo": 70137599, + "PaymentType": "Credit Card" + }, + { + "Id": 5072, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2017-01-10T07:20:38", + "TransactionId": 17350947, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 546, + "CustomerInfo": 26297830, + "PaymentType": "Cash" + }, + { + "Id": 5073, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2016-06-02T14:31:03", + "TransactionId": 79510403, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 557, + "CustomerInfo": 63238052, + "PaymentType": "Cash" + }, + { + "Id": 5074, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-02-23T14:49:38", + "TransactionId": 25694532, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 4, + "CustomerInfo": 92473836, + "PaymentType": "Cash" + }, + { + "Id": 5075, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2016-02-15T16:02:38", + "TransactionId": 7148819, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 57, + "CustomerInfo": 21627432, + "PaymentType": "Cash" + }, + { + "Id": 5076, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-12-09T07:56:56", + "TransactionId": 44756401, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 853, + "CustomerInfo": 83523023, + "PaymentType": "Debit Card" + }, + { + "Id": 5077, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2017-08-01T08:49:03", + "TransactionId": 23185077, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 781, + "CustomerInfo": 35128006, + "PaymentType": "Debit Card" + }, + { + "Id": 5078, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2018-05-02T13:56:04", + "TransactionId": 63666603, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 327, + "CustomerInfo": 81011575, + "PaymentType": "Debit Card" + }, + { + "Id": 5079, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2018-03-18T07:04:39", + "TransactionId": 23526573, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 139, + "CustomerInfo": 93884008, + "PaymentType": "Debit Card" + }, + { + "Id": 5080, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-03-07T08:50:30", + "TransactionId": 33658082, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 327, + "CustomerInfo": 98872945, + "PaymentType": "Credit Card" + }, + { + "Id": 5081, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2017-09-29T12:17:17", + "TransactionId": 48612849, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 236, + "CustomerInfo": 34272288, + "PaymentType": "Debit Card" + }, + { + "Id": 5082, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2019-01-12T14:36:49", + "TransactionId": 75917386, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 296, + "CustomerInfo": 66931257, + "PaymentType": "Debit Card" + }, + { + "Id": 5083, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-07-02T14:03:07", + "TransactionId": 44490692, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 138, + "CustomerInfo": 42638702, + "PaymentType": "Credit Card" + }, + { + "Id": 5084, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2016-11-29T15:22:45", + "TransactionId": 9105689, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 98281823, + "PaymentType": "Debit Card" + }, + { + "Id": 5085, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2019-04-21T16:55:12", + "TransactionId": 5639452, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 76, + "CustomerInfo": 66630161, + "PaymentType": "Credit Card" + }, + { + "Id": 5086, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2019-03-29T15:52:25", + "TransactionId": 56682068, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 535, + "CustomerInfo": 81764261, + "PaymentType": "Cash" + }, + { + "Id": 5087, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2017-11-15T18:28:31", + "TransactionId": 38647892, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 176, + "CustomerInfo": 29013070, + "PaymentType": "Credit Card" + }, + { + "Id": 5088, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-12-20T08:03:33", + "TransactionId": 93402443, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 452, + "CustomerInfo": 21522537, + "PaymentType": "Cash" + }, + { + "Id": 5089, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-12-23T09:30:40", + "TransactionId": 62875517, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 72, + "CustomerInfo": 92049414, + "PaymentType": "Debit Card" + }, + { + "Id": 5090, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2016-11-23T14:32:21", + "TransactionId": 69835460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 237, + "CustomerInfo": 26471194, + "PaymentType": "Debit Card" + }, + { + "Id": 5091, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-12-29T15:49:15", + "TransactionId": 51111930, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 201, + "CustomerInfo": 99843789, + "PaymentType": "Credit Card" + }, + { + "Id": 5092, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-07-25T12:17:43", + "TransactionId": 79179702, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 77, + "CustomerInfo": 57372311, + "PaymentType": "Debit Card" + }, + { + "Id": 5093, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-10-25T07:12:26", + "TransactionId": 18329359, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 498, + "CustomerInfo": 92323506, + "PaymentType": "Credit Card" + }, + { + "Id": 5094, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-03-07T07:51:27", + "TransactionId": 46375760, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 371, + "CustomerInfo": 45364252, + "PaymentType": "Cash" + }, + { + "Id": 5095, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-10-18T14:21:07", + "TransactionId": 37558345, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 20, + "CustomerInfo": 93320669, + "PaymentType": "Debit Card" + }, + { + "Id": 5096, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-08-02T07:28:16", + "TransactionId": 97556799, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 74719477, + "PaymentType": "Cash" + }, + { + "Id": 5097, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2019-12-31T15:44:56", + "TransactionId": 94353730, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 734, + "CustomerInfo": 19108566, + "PaymentType": "Cash" + }, + { + "Id": 5098, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-12-19T10:50:36", + "TransactionId": 26167755, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 592, + "CustomerInfo": 8372345, + "PaymentType": "Cash" + }, + { + "Id": 5099, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2017-11-26T13:02:21", + "TransactionId": 35335116, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 22, + "CustomerInfo": 3331871, + "PaymentType": "Debit Card" + }, + { + "Id": 5100, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-02-23T10:57:39", + "TransactionId": 55444491, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 588, + "CustomerInfo": 64035470, + "PaymentType": "Debit Card" + }, + { + "Id": 5101, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-12-01T07:17:02", + "TransactionId": 13052768, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 77, + "CustomerInfo": 53356743, + "PaymentType": "Credit Card" + }, + { + "Id": 5102, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2018-01-07T12:42:20", + "TransactionId": 99095669, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 505, + "CustomerInfo": 32898279, + "PaymentType": "Cash" + }, + { + "Id": 5103, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2018-01-02T14:49:47", + "TransactionId": 12357917, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 469, + "CustomerInfo": 93837540, + "PaymentType": "Cash" + }, + { + "Id": 5104, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2018-02-22T09:23:28", + "TransactionId": 83459264, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 870, + "CustomerInfo": 86459535, + "PaymentType": "Debit Card" + }, + { + "Id": 5105, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-02-11T18:56:27", + "TransactionId": 34337057, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 354, + "CustomerInfo": 74177414, + "PaymentType": "Debit Card" + }, + { + "Id": 5106, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-11-18T09:43:29", + "TransactionId": 22457178, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 206, + "CustomerInfo": 13561403, + "PaymentType": "Cash" + }, + { + "Id": 5107, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-05-18T10:37:03", + "TransactionId": 64678611, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 60, + "CustomerInfo": 87474833, + "PaymentType": "Credit Card" + }, + { + "Id": 5108, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-07-09T09:10:05", + "TransactionId": 59061176, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 423, + "CustomerInfo": 9230420, + "PaymentType": "Credit Card" + }, + { + "Id": 5109, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-10-01T15:46:22", + "TransactionId": 32623988, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 188, + "CustomerInfo": 71382755, + "PaymentType": "Credit Card" + }, + { + "Id": 5110, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2018-08-09T17:53:23", + "TransactionId": 73685043, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 975, + "CustomerInfo": 91285446, + "PaymentType": "Credit Card" + }, + { + "Id": 5111, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2018-09-08T15:11:05", + "TransactionId": 79924294, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 751, + "CustomerInfo": 67529159, + "PaymentType": "Cash" + }, + { + "Id": 5112, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-12-30T12:45:30", + "TransactionId": 75750158, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 257, + "CustomerInfo": 17381776, + "PaymentType": "Credit Card" + }, + { + "Id": 5113, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-04-19T14:51:04", + "TransactionId": 43976391, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 754, + "CustomerInfo": 3872056, + "PaymentType": "Cash" + }, + { + "Id": 5114, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2016-09-12T14:40:51", + "TransactionId": 90962592, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 995, + "CustomerInfo": 59730827, + "PaymentType": "Debit Card" + }, + { + "Id": 5115, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2018-08-22T15:05:02", + "TransactionId": 69065919, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 372, + "CustomerInfo": 20532031, + "PaymentType": "Cash" + }, + { + "Id": 5116, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2016-06-27T10:19:29", + "TransactionId": 79657542, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 574, + "CustomerInfo": 74220534, + "PaymentType": "Credit Card" + }, + { + "Id": 5117, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2019-10-01T12:09:13", + "TransactionId": 43556401, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 656, + "CustomerInfo": 9035524, + "PaymentType": "Cash" + }, + { + "Id": 5118, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2016-01-11T09:18:00", + "TransactionId": 616599, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 233, + "CustomerInfo": 31963801, + "PaymentType": "Cash" + }, + { + "Id": 5119, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2017-01-19T10:13:18", + "TransactionId": 56085376, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 639, + "CustomerInfo": 49821779, + "PaymentType": "Debit Card" + }, + { + "Id": 5120, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-05-07T17:13:21", + "TransactionId": 85202911, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 54, + "CustomerInfo": 18680836, + "PaymentType": "Credit Card" + }, + { + "Id": 5121, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-08-05T12:25:55", + "TransactionId": 96591988, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 825, + "CustomerInfo": 47576785, + "PaymentType": "Debit Card" + }, + { + "Id": 5122, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-08-07T13:30:43", + "TransactionId": 71305212, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 918, + "CustomerInfo": 51643624, + "PaymentType": "Cash" + }, + { + "Id": 5123, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2019-11-15T15:13:15", + "TransactionId": 2399840, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 502, + "CustomerInfo": 38811388, + "PaymentType": "Cash" + }, + { + "Id": 5124, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2017-11-25T16:38:30", + "TransactionId": 51655202, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 90875348, + "PaymentType": "Cash" + }, + { + "Id": 5125, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-02-28T12:03:01", + "TransactionId": 47996951, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 294, + "CustomerInfo": 41151093, + "PaymentType": "Credit Card" + }, + { + "Id": 5126, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-08-08T08:26:01", + "TransactionId": 57274466, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 632, + "CustomerInfo": 54634126, + "PaymentType": "Debit Card" + }, + { + "Id": 5127, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2017-04-13T19:31:35", + "TransactionId": 79295847, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 232, + "CustomerInfo": 73673713, + "PaymentType": "Cash" + }, + { + "Id": 5128, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2018-10-11T10:38:56", + "TransactionId": 93490688, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 197, + "CustomerInfo": 38119487, + "PaymentType": "Cash" + }, + { + "Id": 5129, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2017-05-01T09:23:02", + "TransactionId": 46175270, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 280, + "CustomerInfo": 82245595, + "PaymentType": "Cash" + }, + { + "Id": 5130, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2018-11-10T15:08:04", + "TransactionId": 49477857, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 976, + "CustomerInfo": 81177635, + "PaymentType": "Credit Card" + }, + { + "Id": 5131, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2017-11-30T16:26:59", + "TransactionId": 19727957, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 861, + "CustomerInfo": 45192819, + "PaymentType": "Credit Card" + }, + { + "Id": 5132, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2019-05-10T15:43:03", + "TransactionId": 3822297, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 42, + "CustomerInfo": 6044264, + "PaymentType": "Cash" + }, + { + "Id": 5133, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-12-30T13:38:30", + "TransactionId": 11372984, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 387, + "CustomerInfo": 56481272, + "PaymentType": "Cash" + }, + { + "Id": 5134, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-05-29T09:29:05", + "TransactionId": 46690860, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 24, + "CustomerInfo": 31890591, + "PaymentType": "Debit Card" + }, + { + "Id": 5135, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-06-04T13:04:22", + "TransactionId": 65253908, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 676, + "CustomerInfo": 92863150, + "PaymentType": "Debit Card" + }, + { + "Id": 5136, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2016-08-27T12:44:56", + "TransactionId": 1953906, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 385, + "CustomerInfo": 99681365, + "PaymentType": "Debit Card" + }, + { + "Id": 5137, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-05-21T18:52:16", + "TransactionId": 63355402, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 831, + "CustomerInfo": 23410983, + "PaymentType": "Credit Card" + }, + { + "Id": 5138, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2019-06-05T15:31:41", + "TransactionId": 57948654, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 312, + "CustomerInfo": 94720390, + "PaymentType": "Cash" + }, + { + "Id": 5139, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-08-01T09:57:53", + "TransactionId": 66987715, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 382, + "CustomerInfo": 19416806, + "PaymentType": "Debit Card" + }, + { + "Id": 5140, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-11-16T13:42:32", + "TransactionId": 40301528, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 487, + "CustomerInfo": 88732769, + "PaymentType": "Credit Card" + }, + { + "Id": 5141, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2016-12-28T08:05:51", + "TransactionId": 51319514, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 417, + "CustomerInfo": 63962966, + "PaymentType": "Debit Card" + }, + { + "Id": 5142, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2019-03-29T15:27:39", + "TransactionId": 63761188, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 485, + "CustomerInfo": 3183885, + "PaymentType": "Debit Card" + }, + { + "Id": 5143, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2016-06-05T13:15:36", + "TransactionId": 8800194, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 228, + "CustomerInfo": 33566426, + "PaymentType": "Credit Card" + }, + { + "Id": 5144, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-11-09T07:48:35", + "TransactionId": 44999030, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 631, + "CustomerInfo": 22422808, + "PaymentType": "Credit Card" + }, + { + "Id": 5145, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2019-09-16T12:11:40", + "TransactionId": 75066159, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 145, + "CustomerInfo": 2470873, + "PaymentType": "Debit Card" + }, + { + "Id": 5146, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2019-01-22T15:37:09", + "TransactionId": 68716395, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 528, + "CustomerInfo": 17299671, + "PaymentType": "Cash" + }, + { + "Id": 5147, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2018-09-08T16:33:53", + "TransactionId": 96138199, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 881, + "CustomerInfo": 71334064, + "PaymentType": "Debit Card" + }, + { + "Id": 5148, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2016-12-12T15:54:52", + "TransactionId": 51481188, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 685, + "CustomerInfo": 72312440, + "PaymentType": "Cash" + }, + { + "Id": 5149, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2019-07-23T17:57:33", + "TransactionId": 22812759, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 668, + "CustomerInfo": 92460515, + "PaymentType": "Credit Card" + }, + { + "Id": 5150, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2016-11-19T12:02:01", + "TransactionId": 169903, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 475, + "CustomerInfo": 16827049, + "PaymentType": "Cash" + }, + { + "Id": 5151, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-12-24T17:43:09", + "TransactionId": 89603396, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 852, + "CustomerInfo": 23127941, + "PaymentType": "Credit Card" + }, + { + "Id": 5152, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2017-05-05T07:18:29", + "TransactionId": 54257888, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 54, + "CustomerInfo": 39651657, + "PaymentType": "Debit Card" + }, + { + "Id": 5153, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-05-01T11:21:59", + "TransactionId": 39609779, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 395, + "CustomerInfo": 85163862, + "PaymentType": "Cash" + }, + { + "Id": 5154, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-08-26T16:20:30", + "TransactionId": 50581968, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 321, + "CustomerInfo": 61303998, + "PaymentType": "Cash" + }, + { + "Id": 5155, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-08-16T07:48:35", + "TransactionId": 50886657, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 341, + "CustomerInfo": 62697546, + "PaymentType": "Cash" + }, + { + "Id": 5156, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2017-09-05T15:24:37", + "TransactionId": 28691154, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 820, + "CustomerInfo": 13266557, + "PaymentType": "Credit Card" + }, + { + "Id": 5157, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-08-30T12:48:40", + "TransactionId": 61684832, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 920, + "CustomerInfo": 91986518, + "PaymentType": "Debit Card" + }, + { + "Id": 5158, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-07-09T18:29:57", + "TransactionId": 83068015, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 720, + "CustomerInfo": 12568540, + "PaymentType": "Cash" + }, + { + "Id": 5159, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-07-28T18:17:43", + "TransactionId": 69656959, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 585, + "CustomerInfo": 37439785, + "PaymentType": "Debit Card" + }, + { + "Id": 5160, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-08-23T12:01:18", + "TransactionId": 98128913, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 476, + "CustomerInfo": 93675984, + "PaymentType": "Debit Card" + }, + { + "Id": 5161, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-04-24T19:08:50", + "TransactionId": 43977610, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 641, + "CustomerInfo": 60073288, + "PaymentType": "Debit Card" + }, + { + "Id": 5162, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2017-02-02T18:10:57", + "TransactionId": 60547473, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 696, + "CustomerInfo": 12742270, + "PaymentType": "Cash" + }, + { + "Id": 5163, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2017-03-28T08:39:59", + "TransactionId": 66139781, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 320, + "CustomerInfo": 78044354, + "PaymentType": "Cash" + }, + { + "Id": 5164, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-12-03T17:54:40", + "TransactionId": 4368860, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 491, + "CustomerInfo": 11326233, + "PaymentType": "Cash" + }, + { + "Id": 5165, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-08-24T12:12:58", + "TransactionId": 60421972, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 990, + "CustomerInfo": 42713513, + "PaymentType": "Credit Card" + }, + { + "Id": 5166, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-05-31T19:51:45", + "TransactionId": 27626574, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 340, + "CustomerInfo": 84453972, + "PaymentType": "Cash" + }, + { + "Id": 5167, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2017-07-03T12:42:12", + "TransactionId": 21747920, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 288, + "CustomerInfo": 25393525, + "PaymentType": "Credit Card" + }, + { + "Id": 5168, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-11-21T17:00:14", + "TransactionId": 5934805, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 38018121, + "PaymentType": "Debit Card" + }, + { + "Id": 5169, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-07-09T17:35:23", + "TransactionId": 55881440, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 128, + "CustomerInfo": 6855804, + "PaymentType": "Cash" + }, + { + "Id": 5170, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2017-11-20T18:09:48", + "TransactionId": 50177189, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 624, + "CustomerInfo": 22466377, + "PaymentType": "Credit Card" + }, + { + "Id": 5171, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2019-06-25T07:48:17", + "TransactionId": 58016486, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 171, + "CustomerInfo": 39082751, + "PaymentType": "Credit Card" + }, + { + "Id": 5172, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2018-09-26T19:09:24", + "TransactionId": 99451291, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 138, + "CustomerInfo": 35839674, + "PaymentType": "Cash" + }, + { + "Id": 5173, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2019-06-15T14:36:58", + "TransactionId": 98169605, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 44866066, + "PaymentType": "Credit Card" + }, + { + "Id": 5174, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-04-08T18:42:29", + "TransactionId": 56703036, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 236, + "CustomerInfo": 30601781, + "PaymentType": "Cash" + }, + { + "Id": 5175, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-07-01T19:52:54", + "TransactionId": 78508145, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 967, + "CustomerInfo": 55306295, + "PaymentType": "Credit Card" + }, + { + "Id": 5176, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2018-12-27T12:45:30", + "TransactionId": 43209598, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 552, + "CustomerInfo": 89247487, + "PaymentType": "Debit Card" + }, + { + "Id": 5177, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2018-04-26T07:15:19", + "TransactionId": 57816530, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 86, + "CustomerInfo": 30932300, + "PaymentType": "Credit Card" + }, + { + "Id": 5178, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-09-15T13:30:52", + "TransactionId": 23703602, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 468, + "CustomerInfo": 67538017, + "PaymentType": "Credit Card" + }, + { + "Id": 5179, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2017-07-12T08:56:15", + "TransactionId": 86812334, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 50, + "CustomerInfo": 59837112, + "PaymentType": "Credit Card" + }, + { + "Id": 5180, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2018-12-01T12:54:52", + "TransactionId": 23723645, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 519, + "CustomerInfo": 4798631, + "PaymentType": "Cash" + }, + { + "Id": 5181, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2017-11-13T14:29:11", + "TransactionId": 26779082, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 169, + "CustomerInfo": 73050716, + "PaymentType": "Debit Card" + }, + { + "Id": 5182, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-08-16T11:48:03", + "TransactionId": 90830832, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 20, + "CustomerInfo": 93727751, + "PaymentType": "Debit Card" + }, + { + "Id": 5183, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2019-07-06T11:33:56", + "TransactionId": 99702029, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 943, + "CustomerInfo": 48529639, + "PaymentType": "Debit Card" + }, + { + "Id": 5184, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-03-28T11:30:37", + "TransactionId": 99131197, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 144, + "CustomerInfo": 3430866, + "PaymentType": "Credit Card" + }, + { + "Id": 5185, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2018-03-27T13:34:54", + "TransactionId": 24334692, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 495, + "CustomerInfo": 22132239, + "PaymentType": "Credit Card" + }, + { + "Id": 5186, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-02-20T18:14:41", + "TransactionId": 46183299, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 71060462, + "PaymentType": "Debit Card" + }, + { + "Id": 5187, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2018-04-19T12:09:56", + "TransactionId": 50138378, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 818, + "CustomerInfo": 32359878, + "PaymentType": "Credit Card" + }, + { + "Id": 5188, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-12-09T13:02:04", + "TransactionId": 37540491, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 494, + "CustomerInfo": 14105204, + "PaymentType": "Credit Card" + }, + { + "Id": 5189, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-12-02T11:17:23", + "TransactionId": 24831928, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 724, + "CustomerInfo": 95409994, + "PaymentType": "Debit Card" + }, + { + "Id": 5190, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-05-09T18:37:52", + "TransactionId": 4360717, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 884, + "CustomerInfo": 64361049, + "PaymentType": "Cash" + }, + { + "Id": 5191, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-04-14T19:55:55", + "TransactionId": 20770644, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 969, + "CustomerInfo": 19120369, + "PaymentType": "Debit Card" + }, + { + "Id": 5192, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2016-11-23T18:52:42", + "TransactionId": 74861151, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 994, + "CustomerInfo": 38010018, + "PaymentType": "Credit Card" + }, + { + "Id": 5193, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-03-04T17:30:29", + "TransactionId": 56612545, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 328, + "CustomerInfo": 40952862, + "PaymentType": "Debit Card" + }, + { + "Id": 5194, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-01-16T13:37:29", + "TransactionId": 39974351, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 396, + "CustomerInfo": 23417460, + "PaymentType": "Debit Card" + }, + { + "Id": 5195, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2017-01-15T11:41:25", + "TransactionId": 40514941, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 863, + "CustomerInfo": 90876168, + "PaymentType": "Cash" + }, + { + "Id": 5196, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2017-01-05T10:01:21", + "TransactionId": 35789984, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 664, + "CustomerInfo": 23601115, + "PaymentType": "Debit Card" + }, + { + "Id": 5197, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-01-01T14:06:52", + "TransactionId": 86582239, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 99, + "CustomerInfo": 36828743, + "PaymentType": "Credit Card" + }, + { + "Id": 5198, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2018-02-01T16:16:28", + "TransactionId": 51715750, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 775, + "CustomerInfo": 4138160, + "PaymentType": "Credit Card" + }, + { + "Id": 5199, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2018-12-26T08:25:35", + "TransactionId": 56687958, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 387, + "CustomerInfo": 52905405, + "PaymentType": "Debit Card" + }, + { + "Id": 5200, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-03-01T14:09:19", + "TransactionId": 76591711, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 683, + "CustomerInfo": 88306809, + "PaymentType": "Debit Card" + }, + { + "Id": 5201, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2016-05-03T15:58:45", + "TransactionId": 3906067, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 56, + "CustomerInfo": 55452500, + "PaymentType": "Debit Card" + }, + { + "Id": 5202, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2016-12-20T09:18:09", + "TransactionId": 29710254, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 303, + "CustomerInfo": 52112332, + "PaymentType": "Cash" + }, + { + "Id": 5203, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-03-09T07:45:59", + "TransactionId": 41893437, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 22788549, + "PaymentType": "Cash" + }, + { + "Id": 5204, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-06-04T12:27:56", + "TransactionId": 58664107, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 250, + "CustomerInfo": 46184727, + "PaymentType": "Credit Card" + }, + { + "Id": 5205, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2019-05-29T14:22:34", + "TransactionId": 88796303, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 304, + "CustomerInfo": 50225840, + "PaymentType": "Credit Card" + }, + { + "Id": 5206, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2019-10-22T17:14:56", + "TransactionId": 67585946, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 115, + "CustomerInfo": 32417842, + "PaymentType": "Credit Card" + }, + { + "Id": 5207, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2018-07-19T15:12:40", + "TransactionId": 24846036, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 789, + "CustomerInfo": 77647331, + "PaymentType": "Cash" + }, + { + "Id": 5208, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2016-01-25T09:01:44", + "TransactionId": 87431468, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 826, + "CustomerInfo": 80800903, + "PaymentType": "Cash" + }, + { + "Id": 5209, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2017-07-28T13:21:56", + "TransactionId": 68468617, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 452, + "CustomerInfo": 37976411, + "PaymentType": "Credit Card" + }, + { + "Id": 5210, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-07-24T17:19:06", + "TransactionId": 83979735, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 383, + "CustomerInfo": 62639981, + "PaymentType": "Credit Card" + }, + { + "Id": 5211, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2017-07-18T10:43:15", + "TransactionId": 76718612, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 70, + "CustomerInfo": 25769524, + "PaymentType": "Debit Card" + }, + { + "Id": 5212, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2016-11-26T07:16:45", + "TransactionId": 66245088, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 68782335, + "PaymentType": "Debit Card" + }, + { + "Id": 5213, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-02-01T12:49:24", + "TransactionId": 99757776, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 436, + "CustomerInfo": 61491311, + "PaymentType": "Debit Card" + }, + { + "Id": 5214, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2019-03-11T15:10:39", + "TransactionId": 29548380, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 70, + "CustomerInfo": 72675434, + "PaymentType": "Cash" + }, + { + "Id": 5215, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2019-02-22T17:18:40", + "TransactionId": 14998396, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 733, + "CustomerInfo": 51955809, + "PaymentType": "Credit Card" + }, + { + "Id": 5216, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-04-03T10:10:42", + "TransactionId": 29321963, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 36, + "CustomerInfo": 77338698, + "PaymentType": "Debit Card" + }, + { + "Id": 5217, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2019-11-06T10:48:43", + "TransactionId": 74320137, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 657, + "CustomerInfo": 67149235, + "PaymentType": "Cash" + }, + { + "Id": 5218, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-10-29T15:35:34", + "TransactionId": 69196884, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 11687842, + "PaymentType": "Debit Card" + }, + { + "Id": 5219, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2018-08-14T16:49:26", + "TransactionId": 57241323, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 25, + "CustomerInfo": 51753723, + "PaymentType": "Cash" + }, + { + "Id": 5220, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-12-27T12:12:40", + "TransactionId": 47437765, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 84, + "CustomerInfo": 4155313, + "PaymentType": "Cash" + }, + { + "Id": 5221, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-08-08T19:05:31", + "TransactionId": 43079154, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 840, + "CustomerInfo": 69702438, + "PaymentType": "Debit Card" + }, + { + "Id": 5222, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2016-07-11T11:45:01", + "TransactionId": 17988259, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 329, + "CustomerInfo": 19462313, + "PaymentType": "Credit Card" + }, + { + "Id": 5223, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2017-04-28T19:57:30", + "TransactionId": 49877494, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 858, + "CustomerInfo": 66912500, + "PaymentType": "Debit Card" + }, + { + "Id": 5224, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-09-24T12:46:13", + "TransactionId": 60903081, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 256, + "CustomerInfo": 55119004, + "PaymentType": "Debit Card" + }, + { + "Id": 5225, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-06-27T14:03:24", + "TransactionId": 95092840, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 894, + "CustomerInfo": 64676671, + "PaymentType": "Credit Card" + }, + { + "Id": 5226, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2016-05-17T14:47:37", + "TransactionId": 63875698, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 561, + "CustomerInfo": 85925242, + "PaymentType": "Cash" + }, + { + "Id": 5227, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2016-02-22T19:36:37", + "TransactionId": 78221284, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 271, + "CustomerInfo": 86441961, + "PaymentType": "Credit Card" + }, + { + "Id": 5228, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-01-18T09:34:08", + "TransactionId": 27559633, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 296, + "CustomerInfo": 12511834, + "PaymentType": "Credit Card" + }, + { + "Id": 5229, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2016-01-21T10:53:11", + "TransactionId": 12970450, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 533, + "CustomerInfo": 81351300, + "PaymentType": "Cash" + }, + { + "Id": 5230, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-11-21T12:36:09", + "TransactionId": 24582590, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 113, + "CustomerInfo": 450900, + "PaymentType": "Cash" + }, + { + "Id": 5231, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-07-07T14:55:15", + "TransactionId": 11935607, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 44, + "CustomerInfo": 31351772, + "PaymentType": "Cash" + }, + { + "Id": 5232, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-02-28T18:05:54", + "TransactionId": 76024192, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 177, + "CustomerInfo": 12855005, + "PaymentType": "Credit Card" + }, + { + "Id": 5233, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2019-11-25T18:08:12", + "TransactionId": 20493452, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 605, + "CustomerInfo": 53633203, + "PaymentType": "Cash" + }, + { + "Id": 5234, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-05-10T09:43:12", + "TransactionId": 51512259, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 40, + "CustomerInfo": 35292677, + "PaymentType": "Cash" + }, + { + "Id": 5235, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-11-27T15:10:48", + "TransactionId": 80733437, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 385, + "CustomerInfo": 3468961, + "PaymentType": "Credit Card" + }, + { + "Id": 5236, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-04-06T07:30:35", + "TransactionId": 24960764, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 368, + "CustomerInfo": 35797282, + "PaymentType": "Credit Card" + }, + { + "Id": 5237, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2017-12-20T16:24:40", + "TransactionId": 42446377, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 959, + "CustomerInfo": 71650057, + "PaymentType": "Credit Card" + }, + { + "Id": 5238, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2017-08-30T09:08:38", + "TransactionId": 33951692, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 684, + "CustomerInfo": 33755828, + "PaymentType": "Cash" + }, + { + "Id": 5239, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-06-24T10:41:14", + "TransactionId": 35800648, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 375, + "CustomerInfo": 43504741, + "PaymentType": "Cash" + }, + { + "Id": 5240, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-07-08T18:45:48", + "TransactionId": 28153843, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 733, + "CustomerInfo": 62637309, + "PaymentType": "Debit Card" + }, + { + "Id": 5241, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2018-10-27T17:37:49", + "TransactionId": 46392628, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 903, + "CustomerInfo": 22208411, + "PaymentType": "Cash" + }, + { + "Id": 5242, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-08-20T17:59:34", + "TransactionId": 97679923, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 694, + "CustomerInfo": 26770615, + "PaymentType": "Debit Card" + }, + { + "Id": 5243, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2018-10-18T10:08:33", + "TransactionId": 67096607, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 986, + "CustomerInfo": 45417940, + "PaymentType": "Credit Card" + }, + { + "Id": 5244, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2018-02-04T16:15:36", + "TransactionId": 65082952, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 604, + "CustomerInfo": 9171757, + "PaymentType": "Credit Card" + }, + { + "Id": 5245, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2018-12-20T12:33:24", + "TransactionId": 2634127, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 141, + "CustomerInfo": 59952055, + "PaymentType": "Credit Card" + }, + { + "Id": 5246, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-10-29T13:21:22", + "TransactionId": 47134553, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 64, + "CustomerInfo": 50644301, + "PaymentType": "Cash" + }, + { + "Id": 5247, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2016-07-06T19:32:10", + "TransactionId": 30160817, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 406, + "CustomerInfo": 24321399, + "PaymentType": "Debit Card" + }, + { + "Id": 5248, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-07-09T14:29:28", + "TransactionId": 9909635, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 55, + "CustomerInfo": 89086821, + "PaymentType": "Credit Card" + }, + { + "Id": 5249, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-06-19T15:53:00", + "TransactionId": 72704276, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 39, + "CustomerInfo": 74974033, + "PaymentType": "Cash" + }, + { + "Id": 5250, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-05-22T17:05:34", + "TransactionId": 22759046, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 902, + "CustomerInfo": 50550346, + "PaymentType": "Cash" + }, + { + "Id": 5251, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2019-08-11T15:29:05", + "TransactionId": 92885117, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 668, + "CustomerInfo": 21236357, + "PaymentType": "Debit Card" + }, + { + "Id": 5252, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2016-03-09T08:58:08", + "TransactionId": 22757873, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 384, + "CustomerInfo": 24719851, + "PaymentType": "Credit Card" + }, + { + "Id": 5253, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-08-13T10:29:43", + "TransactionId": 5324903, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 834, + "CustomerInfo": 12165227, + "PaymentType": "Debit Card" + }, + { + "Id": 5254, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2019-07-26T08:27:19", + "TransactionId": 3325922, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 360, + "CustomerInfo": 73711241, + "PaymentType": "Credit Card" + }, + { + "Id": 5255, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2016-02-27T14:15:56", + "TransactionId": 81895754, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 369, + "CustomerInfo": 5509530, + "PaymentType": "Cash" + }, + { + "Id": 5256, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-10-07T14:47:28", + "TransactionId": 72622998, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 72, + "CustomerInfo": 97484872, + "PaymentType": "Credit Card" + }, + { + "Id": 5257, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2018-08-25T13:26:50", + "TransactionId": 21283425, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 749, + "CustomerInfo": 10879293, + "PaymentType": "Debit Card" + }, + { + "Id": 5258, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-02-09T14:17:23", + "TransactionId": 99460513, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 202, + "CustomerInfo": 37379845, + "PaymentType": "Cash" + }, + { + "Id": 5259, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-02-09T17:22:42", + "TransactionId": 84145500, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 150, + "CustomerInfo": 24496615, + "PaymentType": "Credit Card" + }, + { + "Id": 5260, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-02-26T07:29:17", + "TransactionId": 38371466, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 357, + "CustomerInfo": 23247448, + "PaymentType": "Cash" + }, + { + "Id": 5261, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-05-18T09:31:15", + "TransactionId": 73196258, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 959, + "CustomerInfo": 8495636, + "PaymentType": "Credit Card" + }, + { + "Id": 5262, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2019-07-26T13:23:14", + "TransactionId": 43475569, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 515, + "CustomerInfo": 21847901, + "PaymentType": "Credit Card" + }, + { + "Id": 5263, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-04-25T14:48:55", + "TransactionId": 76371918, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 572, + "CustomerInfo": 2156401, + "PaymentType": "Credit Card" + }, + { + "Id": 5264, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-11-27T07:42:23", + "TransactionId": 25763279, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 792, + "CustomerInfo": 24904145, + "PaymentType": "Credit Card" + }, + { + "Id": 5265, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-11-09T18:28:57", + "TransactionId": 13549767, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 54, + "CustomerInfo": 19653026, + "PaymentType": "Credit Card" + }, + { + "Id": 5266, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-02-07T15:00:17", + "TransactionId": 2790209, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 569, + "CustomerInfo": 20423396, + "PaymentType": "Debit Card" + }, + { + "Id": 5267, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2016-02-08T13:44:24", + "TransactionId": 9534578, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 308, + "CustomerInfo": 67203283, + "PaymentType": "Debit Card" + }, + { + "Id": 5268, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2017-05-16T08:18:49", + "TransactionId": 46631443, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 696, + "CustomerInfo": 91903875, + "PaymentType": "Debit Card" + }, + { + "Id": 5269, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2017-04-02T13:54:20", + "TransactionId": 92344356, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 12519760, + "PaymentType": "Cash" + }, + { + "Id": 5270, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2018-07-11T12:11:31", + "TransactionId": 24327331, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 774, + "CustomerInfo": 16034131, + "PaymentType": "Debit Card" + }, + { + "Id": 5271, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2019-12-14T11:26:01", + "TransactionId": 89404008, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 993, + "CustomerInfo": 16731889, + "PaymentType": "Credit Card" + }, + { + "Id": 5272, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2017-10-24T11:03:16", + "TransactionId": 58756062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 554, + "CustomerInfo": 43302830, + "PaymentType": "Debit Card" + }, + { + "Id": 5273, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-05-24T11:41:08", + "TransactionId": 47081075, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 745, + "CustomerInfo": 72331050, + "PaymentType": "Cash" + }, + { + "Id": 5274, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-07-09T17:50:21", + "TransactionId": 87634545, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 946, + "CustomerInfo": 66406614, + "PaymentType": "Debit Card" + }, + { + "Id": 5275, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-02-16T07:45:50", + "TransactionId": 47178632, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 100, + "CustomerInfo": 83153997, + "PaymentType": "Cash" + }, + { + "Id": 5276, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2016-09-14T18:07:38", + "TransactionId": 91705793, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 497, + "CustomerInfo": 66769953, + "PaymentType": "Cash" + }, + { + "Id": 5277, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-11-15T12:18:43", + "TransactionId": 15396687, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 435, + "CustomerInfo": 61221043, + "PaymentType": "Cash" + }, + { + "Id": 5278, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-02-14T19:14:44", + "TransactionId": 58455429, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 738, + "CustomerInfo": 66124467, + "PaymentType": "Cash" + }, + { + "Id": 5279, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-12-14T11:00:58", + "TransactionId": 987479, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 184, + "CustomerInfo": 98259375, + "PaymentType": "Cash" + }, + { + "Id": 5280, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2018-03-12T11:40:51", + "TransactionId": 83728488, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 487, + "CustomerInfo": 31269530, + "PaymentType": "Debit Card" + }, + { + "Id": 5281, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2018-05-13T19:46:51", + "TransactionId": 47817224, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 707, + "CustomerInfo": 99821774, + "PaymentType": "Debit Card" + }, + { + "Id": 5282, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-05-19T15:54:26", + "TransactionId": 38292828, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 70, + "CustomerInfo": 13419930, + "PaymentType": "Cash" + }, + { + "Id": 5283, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-03-05T13:43:49", + "TransactionId": 2316394, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 605, + "CustomerInfo": 97245423, + "PaymentType": "Cash" + }, + { + "Id": 5284, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-02-16T08:54:32", + "TransactionId": 61122629, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 127, + "CustomerInfo": 35277783, + "PaymentType": "Debit Card" + }, + { + "Id": 5285, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2017-01-26T12:43:12", + "TransactionId": 82910313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 994, + "CustomerInfo": 19003708, + "PaymentType": "Cash" + }, + { + "Id": 5286, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2016-07-21T12:13:32", + "TransactionId": 88215069, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 163, + "CustomerInfo": 69323064, + "PaymentType": "Debit Card" + }, + { + "Id": 5287, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-05-01T17:51:13", + "TransactionId": 90600958, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 792, + "CustomerInfo": 38288577, + "PaymentType": "Debit Card" + }, + { + "Id": 5288, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2018-10-27T16:23:31", + "TransactionId": 83391084, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 439, + "CustomerInfo": 11547561, + "PaymentType": "Cash" + }, + { + "Id": 5289, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2016-06-05T17:42:52", + "TransactionId": 72900793, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 678, + "CustomerInfo": 93203584, + "PaymentType": "Cash" + }, + { + "Id": 5290, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-10-26T17:25:44", + "TransactionId": 5732993, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 994, + "CustomerInfo": 83200410, + "PaymentType": "Credit Card" + }, + { + "Id": 5291, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2018-07-29T12:14:07", + "TransactionId": 69760993, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 89259458, + "PaymentType": "Debit Card" + }, + { + "Id": 5292, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2018-10-05T13:43:15", + "TransactionId": 51118150, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 20, + "CustomerInfo": 92085084, + "PaymentType": "Credit Card" + }, + { + "Id": 5293, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-03-02T11:59:34", + "TransactionId": 77705292, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 379, + "CustomerInfo": 88931515, + "PaymentType": "Credit Card" + }, + { + "Id": 5294, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2019-12-30T14:51:48", + "TransactionId": 21957977, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 485, + "CustomerInfo": 14787751, + "PaymentType": "Credit Card" + }, + { + "Id": 5295, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-05-04T09:27:48", + "TransactionId": 4551971, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 548, + "CustomerInfo": 86603575, + "PaymentType": "Cash" + }, + { + "Id": 5296, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-05-22T15:26:38", + "TransactionId": 54926302, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 980, + "CustomerInfo": 16198025, + "PaymentType": "Credit Card" + }, + { + "Id": 5297, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-10-14T09:03:10", + "TransactionId": 59802646, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 532, + "CustomerInfo": 97714061, + "PaymentType": "Cash" + }, + { + "Id": 5298, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-10-27T19:41:23", + "TransactionId": 13625153, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 484, + "CustomerInfo": 57616637, + "PaymentType": "Cash" + }, + { + "Id": 5299, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2018-11-03T09:50:24", + "TransactionId": 69721825, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 325, + "CustomerInfo": 99949822, + "PaymentType": "Cash" + }, + { + "Id": 5300, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-10-14T09:41:37", + "TransactionId": 4362876, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 244, + "CustomerInfo": 67835038, + "PaymentType": "Debit Card" + }, + { + "Id": 5301, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2017-09-03T09:33:33", + "TransactionId": 98421944, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 405, + "CustomerInfo": 19644962, + "PaymentType": "Cash" + }, + { + "Id": 5302, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-01-21T07:50:27", + "TransactionId": 67922845, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 730, + "CustomerInfo": 43473647, + "PaymentType": "Cash" + }, + { + "Id": 5303, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-06-06T17:14:38", + "TransactionId": 74171169, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 64, + "CustomerInfo": 14775727, + "PaymentType": "Debit Card" + }, + { + "Id": 5304, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-05-01T13:09:33", + "TransactionId": 12781232, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 71593115, + "PaymentType": "Debit Card" + }, + { + "Id": 5305, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2016-10-25T10:22:13", + "TransactionId": 1186665, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 997, + "CustomerInfo": 71708156, + "PaymentType": "Debit Card" + }, + { + "Id": 5306, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2017-10-29T11:23:43", + "TransactionId": 88256161, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 265, + "CustomerInfo": 24760563, + "PaymentType": "Credit Card" + }, + { + "Id": 5307, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-07-04T07:22:22", + "TransactionId": 65568256, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 359, + "CustomerInfo": 5526799, + "PaymentType": "Credit Card" + }, + { + "Id": 5308, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2016-03-06T14:28:54", + "TransactionId": 29623644, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 752, + "CustomerInfo": 81456631, + "PaymentType": "Credit Card" + }, + { + "Id": 5309, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-09-12T12:39:01", + "TransactionId": 86959369, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 1000, + "CustomerInfo": 45451284, + "PaymentType": "Credit Card" + }, + { + "Id": 5310, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-08-10T09:38:18", + "TransactionId": 20922972, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 849, + "CustomerInfo": 73646842, + "PaymentType": "Cash" + }, + { + "Id": 5311, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-02-14T14:11:11", + "TransactionId": 53271508, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 94, + "CustomerInfo": 30677546, + "PaymentType": "Credit Card" + }, + { + "Id": 5312, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2019-03-06T10:23:05", + "TransactionId": 62233501, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 270, + "CustomerInfo": 63987963, + "PaymentType": "Credit Card" + }, + { + "Id": 5313, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2017-04-19T16:29:43", + "TransactionId": 9082800, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 416, + "CustomerInfo": 33681009, + "PaymentType": "Credit Card" + }, + { + "Id": 5314, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2016-10-07T13:00:37", + "TransactionId": 67986536, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 527, + "CustomerInfo": 10818342, + "PaymentType": "Debit Card" + }, + { + "Id": 5315, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2016-09-15T18:17:17", + "TransactionId": 72868424, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 898, + "CustomerInfo": 25123184, + "PaymentType": "Credit Card" + }, + { + "Id": 5316, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2017-09-25T09:28:31", + "TransactionId": 28841805, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 299, + "CustomerInfo": 32441316, + "PaymentType": "Cash" + }, + { + "Id": 5317, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2016-12-22T13:39:22", + "TransactionId": 49449592, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 118, + "CustomerInfo": 5834610, + "PaymentType": "Debit Card" + }, + { + "Id": 5318, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2018-04-20T16:47:17", + "TransactionId": 5879266, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 827, + "CustomerInfo": 44477384, + "PaymentType": "Debit Card" + }, + { + "Id": 5319, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-05-20T18:14:07", + "TransactionId": 22298185, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 489, + "CustomerInfo": 74983518, + "PaymentType": "Debit Card" + }, + { + "Id": 5320, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-05-06T19:53:02", + "TransactionId": 72938569, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 245, + "CustomerInfo": 41690194, + "PaymentType": "Debit Card" + }, + { + "Id": 5321, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2019-11-18T17:34:13", + "TransactionId": 30648019, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 697, + "CustomerInfo": 40027004, + "PaymentType": "Cash" + }, + { + "Id": 5322, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2016-12-08T16:57:22", + "TransactionId": 81155419, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 946, + "CustomerInfo": 28898142, + "PaymentType": "Credit Card" + }, + { + "Id": 5323, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-12-31T11:41:08", + "TransactionId": 22827979, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 913, + "CustomerInfo": 70856528, + "PaymentType": "Cash" + }, + { + "Id": 5324, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2019-10-20T13:33:19", + "TransactionId": 58638362, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 715, + "CustomerInfo": 29921377, + "PaymentType": "Cash" + }, + { + "Id": 5325, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2016-03-26T11:59:34", + "TransactionId": 20596504, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 462, + "CustomerInfo": 76728386, + "PaymentType": "Cash" + }, + { + "Id": 5326, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-10-03T13:46:42", + "TransactionId": 34953609, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 196, + "CustomerInfo": 64543715, + "PaymentType": "Credit Card" + }, + { + "Id": 5327, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2019-12-13T13:45:42", + "TransactionId": 35649960, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 101, + "CustomerInfo": 29077248, + "PaymentType": "Cash" + }, + { + "Id": 5328, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2017-09-22T10:03:39", + "TransactionId": 49889437, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 328, + "CustomerInfo": 59061034, + "PaymentType": "Cash" + }, + { + "Id": 5329, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-01-10T07:26:07", + "TransactionId": 67143521, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 551, + "CustomerInfo": 21544940, + "PaymentType": "Debit Card" + }, + { + "Id": 5330, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2016-11-19T11:47:54", + "TransactionId": 67530208, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 811, + "CustomerInfo": 1234532, + "PaymentType": "Debit Card" + }, + { + "Id": 5331, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2017-02-21T16:47:00", + "TransactionId": 68740064, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 504, + "CustomerInfo": 59514104, + "PaymentType": "Debit Card" + }, + { + "Id": 5332, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2018-02-01T13:04:48", + "TransactionId": 5471027, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 640, + "CustomerInfo": 12606347, + "PaymentType": "Credit Card" + }, + { + "Id": 5333, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-02-04T07:08:50", + "TransactionId": 10916032, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 178, + "CustomerInfo": 53874038, + "PaymentType": "Cash" + }, + { + "Id": 5334, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-09-01T11:16:39", + "TransactionId": 95211114, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 732, + "CustomerInfo": 64461466, + "PaymentType": "Credit Card" + }, + { + "Id": 5335, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2016-12-28T12:01:44", + "TransactionId": 73317968, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 931, + "CustomerInfo": 36732243, + "PaymentType": "Cash" + }, + { + "Id": 5336, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2019-10-28T14:37:49", + "TransactionId": 33519300, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 218, + "CustomerInfo": 17166303, + "PaymentType": "Debit Card" + }, + { + "Id": 5337, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2019-09-26T16:41:23", + "TransactionId": 3270238, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 20, + "CustomerInfo": 80501870, + "PaymentType": "Credit Card" + }, + { + "Id": 5338, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2018-07-06T15:03:53", + "TransactionId": 9167707, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 969, + "CustomerInfo": 79124638, + "PaymentType": "Debit Card" + }, + { + "Id": 5339, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2017-09-16T19:21:22", + "TransactionId": 84634895, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 335, + "CustomerInfo": 4909440, + "PaymentType": "Credit Card" + }, + { + "Id": 5340, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2019-05-24T13:59:40", + "TransactionId": 10404168, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 489, + "CustomerInfo": 81713781, + "PaymentType": "Debit Card" + }, + { + "Id": 5341, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2018-11-26T09:20:53", + "TransactionId": 81880232, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 722, + "CustomerInfo": 56478771, + "PaymentType": "Debit Card" + }, + { + "Id": 5342, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2019-12-29T13:09:50", + "TransactionId": 90949917, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 914, + "CustomerInfo": 5533243, + "PaymentType": "Cash" + }, + { + "Id": 5343, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-11-27T08:32:12", + "TransactionId": 82396700, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 51, + "CustomerInfo": 19268995, + "PaymentType": "Debit Card" + }, + { + "Id": 5344, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2016-01-20T14:01:41", + "TransactionId": 44687324, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 543, + "CustomerInfo": 60129717, + "PaymentType": "Cash" + }, + { + "Id": 5345, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2019-12-28T09:56:01", + "TransactionId": 19539716, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 99213793, + "PaymentType": "Credit Card" + }, + { + "Id": 5346, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2017-02-12T13:36:20", + "TransactionId": 88147053, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 7, + "CustomerInfo": 92306441, + "PaymentType": "Cash" + }, + { + "Id": 5347, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-11-25T09:03:10", + "TransactionId": 57739238, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 396, + "CustomerInfo": 59291416, + "PaymentType": "Debit Card" + }, + { + "Id": 5348, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2018-10-12T09:23:02", + "TransactionId": 32881306, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 859, + "CustomerInfo": 60335428, + "PaymentType": "Credit Card" + }, + { + "Id": 5349, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2019-07-28T14:05:43", + "TransactionId": 85427433, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 350, + "CustomerInfo": 35177171, + "PaymentType": "Cash" + }, + { + "Id": 5350, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2017-10-13T15:35:17", + "TransactionId": 43992211, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 298, + "CustomerInfo": 24742256, + "PaymentType": "Cash" + }, + { + "Id": 5351, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2018-09-11T19:14:27", + "TransactionId": 13670623, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 809, + "CustomerInfo": 9369921, + "PaymentType": "Debit Card" + }, + { + "Id": 5352, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-04-13T16:49:26", + "TransactionId": 31127988, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 977, + "CustomerInfo": 75300146, + "PaymentType": "Cash" + }, + { + "Id": 5353, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2016-08-23T19:14:10", + "TransactionId": 74919917, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 878, + "CustomerInfo": 27207605, + "PaymentType": "Debit Card" + }, + { + "Id": 5354, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-03-05T17:13:47", + "TransactionId": 38212950, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 198, + "CustomerInfo": 5723456, + "PaymentType": "Cash" + }, + { + "Id": 5355, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-03-29T09:15:24", + "TransactionId": 20908847, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 593, + "CustomerInfo": 99686078, + "PaymentType": "Cash" + }, + { + "Id": 5356, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-09-03T13:32:36", + "TransactionId": 58870843, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 50, + "CustomerInfo": 285512, + "PaymentType": "Cash" + }, + { + "Id": 5357, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2018-08-27T14:38:41", + "TransactionId": 4023715, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 596, + "CustomerInfo": 41907567, + "PaymentType": "Debit Card" + }, + { + "Id": 5358, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-12-26T08:14:12", + "TransactionId": 63591136, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 756, + "CustomerInfo": 35014692, + "PaymentType": "Cash" + }, + { + "Id": 5359, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2016-11-02T14:44:10", + "TransactionId": 60357995, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 360, + "CustomerInfo": 96836594, + "PaymentType": "Debit Card" + }, + { + "Id": 5360, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2017-09-27T11:10:54", + "TransactionId": 11963313, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 650, + "CustomerInfo": 60560807, + "PaymentType": "Cash" + }, + { + "Id": 5361, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2016-10-22T15:20:01", + "TransactionId": 23475081, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 99647207, + "PaymentType": "Debit Card" + }, + { + "Id": 5362, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2017-09-14T18:06:37", + "TransactionId": 10990049, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 820, + "CustomerInfo": 53165530, + "PaymentType": "Cash" + }, + { + "Id": 5363, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2017-09-05T08:12:55", + "TransactionId": 86570228, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 184, + "CustomerInfo": 70755587, + "PaymentType": "Debit Card" + }, + { + "Id": 5364, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-05-28T16:00:20", + "TransactionId": 54466273, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 576, + "CustomerInfo": 91812903, + "PaymentType": "Credit Card" + }, + { + "Id": 5365, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2018-12-27T13:49:44", + "TransactionId": 38881653, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 223, + "CustomerInfo": 92834123, + "PaymentType": "Debit Card" + }, + { + "Id": 5366, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2018-08-16T07:23:40", + "TransactionId": 7086816, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 23, + "CustomerInfo": 78335543, + "PaymentType": "Debit Card" + }, + { + "Id": 5367, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2017-03-03T19:03:13", + "TransactionId": 78335265, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 140, + "CustomerInfo": 64525492, + "PaymentType": "Credit Card" + }, + { + "Id": 5368, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-07-05T09:41:28", + "TransactionId": 45752155, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 704, + "CustomerInfo": 70845353, + "PaymentType": "Credit Card" + }, + { + "Id": 5369, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2018-05-12T13:49:52", + "TransactionId": 67330684, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 761, + "CustomerInfo": 38065174, + "PaymentType": "Credit Card" + }, + { + "Id": 5370, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2016-01-29T15:09:56", + "TransactionId": 60972802, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 531, + "CustomerInfo": 80306216, + "PaymentType": "Credit Card" + }, + { + "Id": 5371, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2019-10-12T07:57:22", + "TransactionId": 4998027, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 326, + "CustomerInfo": 79166344, + "PaymentType": "Debit Card" + }, + { + "Id": 5372, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2017-11-27T09:00:43", + "TransactionId": 30999670, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 333, + "CustomerInfo": 76340381, + "PaymentType": "Cash" + }, + { + "Id": 5373, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2016-06-23T07:37:29", + "TransactionId": 88309203, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 57, + "CustomerInfo": 35439101, + "PaymentType": "Cash" + }, + { + "Id": 5374, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2016-05-27T17:40:08", + "TransactionId": 6515590, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 939, + "CustomerInfo": 26093991, + "PaymentType": "Cash" + }, + { + "Id": 5375, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-04-01T13:56:30", + "TransactionId": 14511330, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 671, + "CustomerInfo": 8160728, + "PaymentType": "Cash" + }, + { + "Id": 5376, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2016-01-04T17:05:25", + "TransactionId": 59317329, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 223, + "CustomerInfo": 44093292, + "PaymentType": "Debit Card" + }, + { + "Id": 5377, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2018-08-23T11:11:37", + "TransactionId": 58864046, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 636, + "CustomerInfo": 69748786, + "PaymentType": "Debit Card" + }, + { + "Id": 5378, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-05-22T19:47:34", + "TransactionId": 56418148, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 571, + "CustomerInfo": 25894574, + "PaymentType": "Debit Card" + }, + { + "Id": 5379, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2017-01-03T07:24:40", + "TransactionId": 97329565, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 424, + "CustomerInfo": 57065025, + "PaymentType": "Credit Card" + }, + { + "Id": 5380, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2017-03-31T07:15:45", + "TransactionId": 62890086, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 492, + "CustomerInfo": 71833076, + "PaymentType": "Credit Card" + }, + { + "Id": 5381, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-03-11T12:56:53", + "TransactionId": 55047955, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 429, + "CustomerInfo": 15611561, + "PaymentType": "Credit Card" + }, + { + "Id": 5382, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-01-19T08:01:58", + "TransactionId": 15908641, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 856, + "CustomerInfo": 75377053, + "PaymentType": "Credit Card" + }, + { + "Id": 5383, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-03-06T08:30:03", + "TransactionId": 66331961, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 962, + "CustomerInfo": 89203583, + "PaymentType": "Credit Card" + }, + { + "Id": 5384, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2016-01-16T10:16:36", + "TransactionId": 84364594, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 889, + "CustomerInfo": 73688776, + "PaymentType": "Credit Card" + }, + { + "Id": 5385, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2017-02-09T08:36:40", + "TransactionId": 52552232, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 33, + "CustomerInfo": 34534939, + "PaymentType": "Cash" + }, + { + "Id": 5386, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2017-12-15T14:48:37", + "TransactionId": 6065482, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 891, + "CustomerInfo": 73311051, + "PaymentType": "Cash" + }, + { + "Id": 5387, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2017-02-18T07:37:55", + "TransactionId": 70342265, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 168, + "CustomerInfo": 2439955, + "PaymentType": "Cash" + }, + { + "Id": 5388, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-04-18T08:01:32", + "TransactionId": 83167070, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 101, + "CustomerInfo": 92497273, + "PaymentType": "Debit Card" + }, + { + "Id": 5389, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2016-01-20T12:47:48", + "TransactionId": 98079400, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 672, + "CustomerInfo": 66570819, + "PaymentType": "Debit Card" + }, + { + "Id": 5390, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2017-06-15T11:05:43", + "TransactionId": 63495742, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 197, + "CustomerInfo": 2343745, + "PaymentType": "Credit Card" + }, + { + "Id": 5391, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-01-13T08:51:22", + "TransactionId": 53645590, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 499, + "CustomerInfo": 74050118, + "PaymentType": "Cash" + }, + { + "Id": 5392, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2019-02-16T07:56:56", + "TransactionId": 78608773, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 849, + "CustomerInfo": 88041138, + "PaymentType": "Credit Card" + }, + { + "Id": 5393, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2016-07-30T15:23:20", + "TransactionId": 66468684, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 62, + "CustomerInfo": 51986191, + "PaymentType": "Cash" + }, + { + "Id": 5394, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2018-03-17T18:08:56", + "TransactionId": 66337231, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 376, + "CustomerInfo": 18629079, + "PaymentType": "Credit Card" + }, + { + "Id": 5395, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-12-03T07:26:15", + "TransactionId": 31944753, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 704, + "CustomerInfo": 98211382, + "PaymentType": "Credit Card" + }, + { + "Id": 5396, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2018-06-10T16:19:38", + "TransactionId": 78091073, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 793, + "CustomerInfo": 77049637, + "PaymentType": "Credit Card" + }, + { + "Id": 5397, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2019-08-25T16:04:57", + "TransactionId": 50480614, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 324, + "CustomerInfo": 448727, + "PaymentType": "Cash" + }, + { + "Id": 5398, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2017-02-07T09:45:30", + "TransactionId": 9811861, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 516, + "CustomerInfo": 81605660, + "PaymentType": "Cash" + }, + { + "Id": 5399, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-08-16T17:56:50", + "TransactionId": 4713360, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 755, + "CustomerInfo": 60465705, + "PaymentType": "Cash" + }, + { + "Id": 5400, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-04-23T13:42:58", + "TransactionId": 38860081, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 372, + "CustomerInfo": 41323688, + "PaymentType": "Credit Card" + }, + { + "Id": 5401, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-04-20T11:20:24", + "TransactionId": 81230313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 777, + "CustomerInfo": 44782864, + "PaymentType": "Cash" + }, + { + "Id": 5402, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-02-04T13:07:24", + "TransactionId": 86020044, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 840, + "CustomerInfo": 56474100, + "PaymentType": "Cash" + }, + { + "Id": 5403, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2017-01-16T15:57:45", + "TransactionId": 51713099, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 246, + "CustomerInfo": 84323396, + "PaymentType": "Credit Card" + }, + { + "Id": 5404, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-03-16T14:13:21", + "TransactionId": 74167385, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 99448889, + "PaymentType": "Credit Card" + }, + { + "Id": 5405, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2018-08-15T12:19:35", + "TransactionId": 95542014, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 371, + "CustomerInfo": 72544113, + "PaymentType": "Credit Card" + }, + { + "Id": 5406, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2016-08-09T13:40:39", + "TransactionId": 51882297, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 456, + "CustomerInfo": 81666696, + "PaymentType": "Cash" + }, + { + "Id": 5407, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2017-05-21T10:13:52", + "TransactionId": 46039258, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 769, + "CustomerInfo": 80511669, + "PaymentType": "Cash" + }, + { + "Id": 5408, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2019-11-09T12:15:59", + "TransactionId": 69315046, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 37, + "CustomerInfo": 86237914, + "PaymentType": "Cash" + }, + { + "Id": 5409, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-12-05T16:37:21", + "TransactionId": 36078582, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 654, + "CustomerInfo": 73929773, + "PaymentType": "Credit Card" + }, + { + "Id": 5410, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-03-12T07:18:03", + "TransactionId": 29407969, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 430, + "CustomerInfo": 37015979, + "PaymentType": "Cash" + }, + { + "Id": 5411, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-09-09T16:07:15", + "TransactionId": 8684141, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 70375964, + "PaymentType": "Credit Card" + }, + { + "Id": 5412, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-02-14T19:06:32", + "TransactionId": 91229662, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 79, + "CustomerInfo": 44017750, + "PaymentType": "Cash" + }, + { + "Id": 5413, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2017-10-02T07:43:06", + "TransactionId": 48610197, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 876, + "CustomerInfo": 10847719, + "PaymentType": "Credit Card" + }, + { + "Id": 5414, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2017-03-02T15:02:27", + "TransactionId": 78165914, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 760, + "CustomerInfo": 89331930, + "PaymentType": "Credit Card" + }, + { + "Id": 5415, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2018-09-22T11:37:58", + "TransactionId": 9126068, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 982, + "CustomerInfo": 86231546, + "PaymentType": "Cash" + }, + { + "Id": 5416, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-12-20T09:09:22", + "TransactionId": 75923327, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 44849463, + "PaymentType": "Debit Card" + }, + { + "Id": 5417, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-12-31T13:37:03", + "TransactionId": 36258102, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 412, + "CustomerInfo": 92114119, + "PaymentType": "Debit Card" + }, + { + "Id": 5418, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-12-07T14:54:58", + "TransactionId": 64911935, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 60, + "CustomerInfo": 81430478, + "PaymentType": "Cash" + }, + { + "Id": 5419, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2016-07-30T14:07:00", + "TransactionId": 66451626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 414, + "CustomerInfo": 6814343, + "PaymentType": "Credit Card" + }, + { + "Id": 5420, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2016-05-28T16:47:17", + "TransactionId": 39257769, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 902, + "CustomerInfo": 36725669, + "PaymentType": "Credit Card" + }, + { + "Id": 5421, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-09-05T10:48:43", + "TransactionId": 45987432, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 182, + "CustomerInfo": 9979483, + "PaymentType": "Credit Card" + }, + { + "Id": 5422, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-03-30T16:16:02", + "TransactionId": 41237934, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 904, + "CustomerInfo": 64932173, + "PaymentType": "Cash" + }, + { + "Id": 5423, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2016-11-23T10:46:25", + "TransactionId": 83171988, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 32, + "CustomerInfo": 72205041, + "PaymentType": "Credit Card" + }, + { + "Id": 5424, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2018-04-30T18:36:26", + "TransactionId": 21787185, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 712, + "CustomerInfo": 22423581, + "PaymentType": "Debit Card" + }, + { + "Id": 5425, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2017-06-28T08:11:46", + "TransactionId": 49722336, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 79797316, + "PaymentType": "Credit Card" + }, + { + "Id": 5426, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2018-08-16T18:21:53", + "TransactionId": 38232086, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 656, + "CustomerInfo": 68576865, + "PaymentType": "Cash" + }, + { + "Id": 5427, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-10-27T08:19:49", + "TransactionId": 75173150, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 204, + "CustomerInfo": 96427465, + "PaymentType": "Debit Card" + }, + { + "Id": 5428, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-10-27T17:44:44", + "TransactionId": 15897726, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 822, + "CustomerInfo": 47029701, + "PaymentType": "Debit Card" + }, + { + "Id": 5429, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-10-02T16:07:15", + "TransactionId": 61829016, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 727, + "CustomerInfo": 59910061, + "PaymentType": "Credit Card" + }, + { + "Id": 5430, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-03-14T07:09:42", + "TransactionId": 13422525, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 783, + "CustomerInfo": 13858970, + "PaymentType": "Debit Card" + }, + { + "Id": 5431, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-06-15T17:34:57", + "TransactionId": 76836262, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 22792242, + "PaymentType": "Debit Card" + }, + { + "Id": 5432, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-02-20T07:12:09", + "TransactionId": 24254369, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 848, + "CustomerInfo": 82565010, + "PaymentType": "Debit Card" + }, + { + "Id": 5433, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-06-27T09:06:37", + "TransactionId": 73551551, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 359, + "CustomerInfo": 96161842, + "PaymentType": "Cash" + }, + { + "Id": 5434, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2018-06-20T19:07:32", + "TransactionId": 44332742, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 160, + "CustomerInfo": 93142264, + "PaymentType": "Debit Card" + }, + { + "Id": 5435, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2016-11-23T09:11:23", + "TransactionId": 14328519, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 660, + "CustomerInfo": 70455693, + "PaymentType": "Debit Card" + }, + { + "Id": 5436, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2018-04-28T16:37:38", + "TransactionId": 384968, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 399, + "CustomerInfo": 44095743, + "PaymentType": "Credit Card" + }, + { + "Id": 5437, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-10-09T08:27:10", + "TransactionId": 60288128, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 808, + "CustomerInfo": 13542812, + "PaymentType": "Debit Card" + }, + { + "Id": 5438, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2019-04-11T15:42:29", + "TransactionId": 12082046, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 300, + "CustomerInfo": 72952077, + "PaymentType": "Cash" + }, + { + "Id": 5439, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2016-12-10T10:43:58", + "TransactionId": 91480255, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 460, + "CustomerInfo": 94559989, + "PaymentType": "Debit Card" + }, + { + "Id": 5440, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-10-10T17:06:17", + "TransactionId": 9474476, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 600, + "CustomerInfo": 38099163, + "PaymentType": "Cash" + }, + { + "Id": 5441, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2016-04-26T17:13:03", + "TransactionId": 79780274, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 221, + "CustomerInfo": 23138151, + "PaymentType": "Cash" + }, + { + "Id": 5442, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-10-28T09:29:14", + "TransactionId": 11829913, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 775, + "CustomerInfo": 1106571, + "PaymentType": "Cash" + }, + { + "Id": 5443, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-02-11T17:05:51", + "TransactionId": 7182751, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 571, + "CustomerInfo": 72642790, + "PaymentType": "Debit Card" + }, + { + "Id": 5444, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-07-06T13:46:42", + "TransactionId": 78361419, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 772, + "CustomerInfo": 57564474, + "PaymentType": "Debit Card" + }, + { + "Id": 5445, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-10-26T11:16:22", + "TransactionId": 2288130, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 766, + "CustomerInfo": 12232008, + "PaymentType": "Cash" + }, + { + "Id": 5446, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2019-01-07T11:48:12", + "TransactionId": 93308857, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 72, + "CustomerInfo": 61196079, + "PaymentType": "Credit Card" + }, + { + "Id": 5447, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-05-17T19:37:12", + "TransactionId": 3457912, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 11185659, + "PaymentType": "Debit Card" + }, + { + "Id": 5448, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2018-01-24T07:55:38", + "TransactionId": 50143151, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 277, + "CustomerInfo": 25784947, + "PaymentType": "Cash" + }, + { + "Id": 5449, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-10-31T17:31:55", + "TransactionId": 40962005, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 561, + "CustomerInfo": 32385602, + "PaymentType": "Credit Card" + }, + { + "Id": 5450, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2019-11-27T15:39:19", + "TransactionId": 7625710, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 978, + "CustomerInfo": 16224969, + "PaymentType": "Cash" + }, + { + "Id": 5451, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2019-12-13T07:44:24", + "TransactionId": 11295531, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 1000, + "CustomerInfo": 60597162, + "PaymentType": "Debit Card" + }, + { + "Id": 5452, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2019-04-19T09:47:57", + "TransactionId": 34044195, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 583, + "CustomerInfo": 82762328, + "PaymentType": "Cash" + }, + { + "Id": 5453, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-01-17T09:35:17", + "TransactionId": 53969061, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 641, + "CustomerInfo": 75518181, + "PaymentType": "Credit Card" + }, + { + "Id": 5454, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-07-13T13:35:20", + "TransactionId": 77288770, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 329, + "CustomerInfo": 99582831, + "PaymentType": "Cash" + }, + { + "Id": 5455, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-10-12T13:56:21", + "TransactionId": 41938364, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 382, + "CustomerInfo": 36800979, + "PaymentType": "Debit Card" + }, + { + "Id": 5456, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-04-05T09:54:26", + "TransactionId": 55535568, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 556, + "CustomerInfo": 72307505, + "PaymentType": "Debit Card" + }, + { + "Id": 5457, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2016-09-11T08:28:45", + "TransactionId": 80464388, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 573, + "CustomerInfo": 78388073, + "PaymentType": "Cash" + }, + { + "Id": 5458, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-07-24T11:05:34", + "TransactionId": 792272, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 662, + "CustomerInfo": 32157571, + "PaymentType": "Cash" + }, + { + "Id": 5459, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2018-03-30T11:39:42", + "TransactionId": 11548204, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 720, + "CustomerInfo": 75153855, + "PaymentType": "Credit Card" + }, + { + "Id": 5460, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-09-12T14:05:08", + "TransactionId": 99084221, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 953, + "CustomerInfo": 97853298, + "PaymentType": "Cash" + }, + { + "Id": 5461, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2017-02-28T13:59:14", + "TransactionId": 6302958, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 593, + "CustomerInfo": 87599871, + "PaymentType": "Credit Card" + }, + { + "Id": 5462, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-11-02T19:14:18", + "TransactionId": 66081183, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 540, + "CustomerInfo": 11400708, + "PaymentType": "Debit Card" + }, + { + "Id": 5463, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2019-10-04T16:27:33", + "TransactionId": 6556784, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 531, + "CustomerInfo": 47214439, + "PaymentType": "Cash" + }, + { + "Id": 5464, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2016-12-24T13:34:02", + "TransactionId": 50519668, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 686, + "CustomerInfo": 80730958, + "PaymentType": "Debit Card" + }, + { + "Id": 5465, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-09-06T09:57:36", + "TransactionId": 33348848, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 491, + "CustomerInfo": 59770974, + "PaymentType": "Credit Card" + }, + { + "Id": 5466, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2018-05-09T10:12:35", + "TransactionId": 32079850, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 17, + "CustomerInfo": 39715071, + "PaymentType": "Cash" + }, + { + "Id": 5467, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-08-17T19:37:29", + "TransactionId": 76919091, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 69, + "CustomerInfo": 23966861, + "PaymentType": "Debit Card" + }, + { + "Id": 5468, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-08-09T18:43:03", + "TransactionId": 82070099, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 37, + "CustomerInfo": 1446185, + "PaymentType": "Cash" + }, + { + "Id": 5469, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2019-10-24T19:31:18", + "TransactionId": 76417671, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 711, + "CustomerInfo": 80712905, + "PaymentType": "Credit Card" + }, + { + "Id": 5470, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2016-12-15T13:33:27", + "TransactionId": 65190928, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 815, + "CustomerInfo": 1154140, + "PaymentType": "Cash" + }, + { + "Id": 5471, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-08-03T13:58:22", + "TransactionId": 97806367, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 860, + "CustomerInfo": 76781683, + "PaymentType": "Cash" + }, + { + "Id": 5472, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-08-29T18:30:14", + "TransactionId": 35252389, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 583, + "CustomerInfo": 2851294, + "PaymentType": "Debit Card" + }, + { + "Id": 5473, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-03-21T12:55:18", + "TransactionId": 25119456, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 621, + "CustomerInfo": 10690217, + "PaymentType": "Debit Card" + }, + { + "Id": 5474, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2017-02-05T17:41:08", + "TransactionId": 88317453, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 485, + "CustomerInfo": 61290183, + "PaymentType": "Cash" + }, + { + "Id": 5475, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-08-19T09:09:13", + "TransactionId": 35796173, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 243, + "CustomerInfo": 29971743, + "PaymentType": "Cash" + }, + { + "Id": 5476, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-09-15T14:07:00", + "TransactionId": 34872, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 188, + "CustomerInfo": 61102418, + "PaymentType": "Cash" + }, + { + "Id": 5477, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-05-05T14:18:14", + "TransactionId": 21999098, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 344, + "CustomerInfo": 60667400, + "PaymentType": "Cash" + }, + { + "Id": 5478, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-05-14T17:33:39", + "TransactionId": 34827130, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 696, + "CustomerInfo": 71029884, + "PaymentType": "Credit Card" + }, + { + "Id": 5479, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-08-20T10:26:50", + "TransactionId": 42580825, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 986, + "CustomerInfo": 84379496, + "PaymentType": "Cash" + }, + { + "Id": 5480, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-07-16T15:18:17", + "TransactionId": 66836556, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 481, + "CustomerInfo": 11829902, + "PaymentType": "Debit Card" + }, + { + "Id": 5481, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2019-03-27T11:17:23", + "TransactionId": 10974191, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 698, + "CustomerInfo": 37051725, + "PaymentType": "Credit Card" + }, + { + "Id": 5482, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-05-10T11:35:57", + "TransactionId": 63354603, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 63, + "CustomerInfo": 53995588, + "PaymentType": "Cash" + }, + { + "Id": 5483, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-04-19T12:30:14", + "TransactionId": 1560785, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 235, + "CustomerInfo": 88200514, + "PaymentType": "Credit Card" + }, + { + "Id": 5484, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-12-13T09:23:28", + "TransactionId": 13545675, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 530, + "CustomerInfo": 35181354, + "PaymentType": "Credit Card" + }, + { + "Id": 5485, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2019-08-20T12:19:52", + "TransactionId": 81122574, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 580, + "CustomerInfo": 34013799, + "PaymentType": "Debit Card" + }, + { + "Id": 5486, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-09-28T08:06:26", + "TransactionId": 56207550, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 6270164, + "PaymentType": "Cash" + }, + { + "Id": 5487, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2017-06-04T18:30:58", + "TransactionId": 28356776, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 34, + "CustomerInfo": 15085535, + "PaymentType": "Debit Card" + }, + { + "Id": 5488, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-11-06T19:38:12", + "TransactionId": 54760203, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 683, + "CustomerInfo": 97171899, + "PaymentType": "Cash" + }, + { + "Id": 5489, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2016-08-19T15:02:44", + "TransactionId": 16988323, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 808, + "CustomerInfo": 9405060, + "PaymentType": "Credit Card" + }, + { + "Id": 5490, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-10-03T10:37:47", + "TransactionId": 66187544, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 426, + "CustomerInfo": 68602856, + "PaymentType": "Credit Card" + }, + { + "Id": 5491, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2019-01-11T14:29:37", + "TransactionId": 62674034, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 960, + "CustomerInfo": 73754098, + "PaymentType": "Credit Card" + }, + { + "Id": 5492, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2016-02-16T13:33:19", + "TransactionId": 26471770, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 27, + "CustomerInfo": 38284769, + "PaymentType": "Credit Card" + }, + { + "Id": 5493, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-10-23T19:52:19", + "TransactionId": 46419476, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 518, + "CustomerInfo": 51053230, + "PaymentType": "Cash" + }, + { + "Id": 5494, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-06-23T16:04:48", + "TransactionId": 47928014, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 597, + "CustomerInfo": 43344844, + "PaymentType": "Credit Card" + }, + { + "Id": 5495, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2017-09-08T09:18:43", + "TransactionId": 6320305, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 612, + "CustomerInfo": 34516362, + "PaymentType": "Credit Card" + }, + { + "Id": 5496, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2018-09-02T17:13:29", + "TransactionId": 58277697, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 10, + "CustomerInfo": 54119057, + "PaymentType": "Credit Card" + }, + { + "Id": 5497, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2019-08-30T10:23:31", + "TransactionId": 94854854, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 261, + "CustomerInfo": 1826766, + "PaymentType": "Cash" + }, + { + "Id": 5498, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-06-30T15:31:49", + "TransactionId": 32375419, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 759, + "CustomerInfo": 74870403, + "PaymentType": "Cash" + }, + { + "Id": 5499, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2019-04-18T07:34:02", + "TransactionId": 69458395, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 161, + "CustomerInfo": 136744, + "PaymentType": "Credit Card" + }, + { + "Id": 5500, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-10-10T14:45:19", + "TransactionId": 9502458, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 532, + "CustomerInfo": 65057035, + "PaymentType": "Debit Card" + }, + { + "Id": 5501, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2017-01-15T09:12:49", + "TransactionId": 16626356, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 773, + "CustomerInfo": 16176595, + "PaymentType": "Credit Card" + }, + { + "Id": 5502, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-03-20T13:47:43", + "TransactionId": 23495857, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 897, + "CustomerInfo": 42722933, + "PaymentType": "Cash" + }, + { + "Id": 5503, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-10-28T19:55:12", + "TransactionId": 41515012, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 512, + "CustomerInfo": 48179576, + "PaymentType": "Cash" + }, + { + "Id": 5504, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2017-03-16T07:41:40", + "TransactionId": 34206443, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 93, + "CustomerInfo": 8682959, + "PaymentType": "Debit Card" + }, + { + "Id": 5505, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-06-07T08:32:56", + "TransactionId": 90940559, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 866, + "CustomerInfo": 39035065, + "PaymentType": "Debit Card" + }, + { + "Id": 5506, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2017-02-05T19:23:40", + "TransactionId": 34280974, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 560, + "CustomerInfo": 2762416, + "PaymentType": "Cash" + }, + { + "Id": 5507, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-01-19T09:13:06", + "TransactionId": 36959539, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 885, + "CustomerInfo": 87742725, + "PaymentType": "Cash" + }, + { + "Id": 5508, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2019-04-25T13:29:25", + "TransactionId": 56987002, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 439, + "CustomerInfo": 90021572, + "PaymentType": "Cash" + }, + { + "Id": 5509, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2018-02-27T19:21:04", + "TransactionId": 5766162, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 210, + "CustomerInfo": 70592766, + "PaymentType": "Cash" + }, + { + "Id": 5510, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2018-07-31T18:32:15", + "TransactionId": 59678600, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 166, + "CustomerInfo": 73747657, + "PaymentType": "Cash" + }, + { + "Id": 5511, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-06-05T19:16:54", + "TransactionId": 55536130, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 618, + "CustomerInfo": 53711354, + "PaymentType": "Debit Card" + }, + { + "Id": 5512, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-10-28T18:54:17", + "TransactionId": 87009602, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 235, + "CustomerInfo": 4792000, + "PaymentType": "Debit Card" + }, + { + "Id": 5513, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-03-11T18:39:36", + "TransactionId": 52093854, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 827, + "CustomerInfo": 91390146, + "PaymentType": "Cash" + }, + { + "Id": 5514, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2017-12-05T11:22:25", + "TransactionId": 50789833, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 201, + "CustomerInfo": 38197654, + "PaymentType": "Credit Card" + }, + { + "Id": 5515, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-05-23T14:00:23", + "TransactionId": 34860707, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 779, + "CustomerInfo": 97683612, + "PaymentType": "Credit Card" + }, + { + "Id": 5516, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-04-18T11:50:04", + "TransactionId": 82798595, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 297, + "CustomerInfo": 91478534, + "PaymentType": "Cash" + }, + { + "Id": 5517, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-09-30T13:59:23", + "TransactionId": 14719505, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 374, + "CustomerInfo": 34288261, + "PaymentType": "Cash" + }, + { + "Id": 5518, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2016-07-12T09:11:31", + "TransactionId": 1457906, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 49429905, + "PaymentType": "Cash" + }, + { + "Id": 5519, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-07-31T16:17:11", + "TransactionId": 84214689, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 591, + "CustomerInfo": 74937426, + "PaymentType": "Credit Card" + }, + { + "Id": 5520, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-06-06T19:13:18", + "TransactionId": 4404145, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 523, + "CustomerInfo": 19991256, + "PaymentType": "Cash" + }, + { + "Id": 5521, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2019-05-24T18:23:02", + "TransactionId": 19016210, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 910, + "CustomerInfo": 95192398, + "PaymentType": "Debit Card" + }, + { + "Id": 5522, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2018-06-17T15:32:50", + "TransactionId": 12261264, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 116, + "CustomerInfo": 93278652, + "PaymentType": "Debit Card" + }, + { + "Id": 5523, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2017-10-17T16:10:34", + "TransactionId": 33688377, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 272, + "CustomerInfo": 62234158, + "PaymentType": "Cash" + }, + { + "Id": 5524, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-06-11T09:09:30", + "TransactionId": 47994174, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 12, + "CustomerInfo": 67511090, + "PaymentType": "Cash" + }, + { + "Id": 5525, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-11-12T12:39:19", + "TransactionId": 10049871, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 499, + "CustomerInfo": 49865006, + "PaymentType": "Credit Card" + }, + { + "Id": 5526, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2018-09-26T11:46:54", + "TransactionId": 70515635, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 435, + "CustomerInfo": 96443005, + "PaymentType": "Credit Card" + }, + { + "Id": 5527, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-12-24T14:39:24", + "TransactionId": 81134080, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 676, + "CustomerInfo": 10391399, + "PaymentType": "Credit Card" + }, + { + "Id": 5528, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2016-04-29T11:01:58", + "TransactionId": 92940937, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 51, + "CustomerInfo": 89341074, + "PaymentType": "Debit Card" + }, + { + "Id": 5529, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2019-02-11T07:47:17", + "TransactionId": 48675116, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 373, + "CustomerInfo": 68809706, + "PaymentType": "Debit Card" + }, + { + "Id": 5530, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2016-10-26T12:22:28", + "TransactionId": 18679401, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 716, + "CustomerInfo": 66940921, + "PaymentType": "Cash" + }, + { + "Id": 5531, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2016-07-21T10:03:13", + "TransactionId": 41413125, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 43, + "CustomerInfo": 38029203, + "PaymentType": "Debit Card" + }, + { + "Id": 5532, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-09-26T11:30:55", + "TransactionId": 55967275, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 122, + "CustomerInfo": 96731691, + "PaymentType": "Cash" + }, + { + "Id": 5533, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-10-05T11:00:40", + "TransactionId": 96067569, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 774, + "CustomerInfo": 36304329, + "PaymentType": "Debit Card" + }, + { + "Id": 5534, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2016-12-27T19:40:31", + "TransactionId": 3575564, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 452, + "CustomerInfo": 33657377, + "PaymentType": "Credit Card" + }, + { + "Id": 5535, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2018-09-23T10:43:24", + "TransactionId": 95554494, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 370, + "CustomerInfo": 51428074, + "PaymentType": "Debit Card" + }, + { + "Id": 5536, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2017-11-22T16:51:27", + "TransactionId": 79187736, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 137, + "CustomerInfo": 20447581, + "PaymentType": "Debit Card" + }, + { + "Id": 5537, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2016-03-16T12:47:57", + "TransactionId": 44297544, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 471, + "CustomerInfo": 7734528, + "PaymentType": "Credit Card" + }, + { + "Id": 5538, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2019-08-21T11:48:55", + "TransactionId": 37526354, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 675, + "CustomerInfo": 15899898, + "PaymentType": "Cash" + }, + { + "Id": 5539, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-10-10T15:00:35", + "TransactionId": 13992966, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 72113599, + "PaymentType": "Credit Card" + }, + { + "Id": 5540, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-09-03T17:44:27", + "TransactionId": 1844624, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 824, + "CustomerInfo": 75781162, + "PaymentType": "Credit Card" + }, + { + "Id": 5541, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2018-11-07T07:45:16", + "TransactionId": 57067245, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 377, + "CustomerInfo": 51688924, + "PaymentType": "Credit Card" + }, + { + "Id": 5542, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-11-19T07:22:31", + "TransactionId": 78521109, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 137, + "CustomerInfo": 815551, + "PaymentType": "Credit Card" + }, + { + "Id": 5543, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2017-06-19T19:40:22", + "TransactionId": 32056325, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 324, + "CustomerInfo": 82226166, + "PaymentType": "Credit Card" + }, + { + "Id": 5544, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2019-12-10T13:35:46", + "TransactionId": 34840409, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 830, + "CustomerInfo": 65342732, + "PaymentType": "Cash" + }, + { + "Id": 5545, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2017-01-18T08:35:40", + "TransactionId": 11712493, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 938, + "CustomerInfo": 78892285, + "PaymentType": "Cash" + }, + { + "Id": 5546, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2017-11-19T13:17:46", + "TransactionId": 72556065, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 394, + "CustomerInfo": 56523579, + "PaymentType": "Debit Card" + }, + { + "Id": 5547, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-11-01T13:50:10", + "TransactionId": 92267187, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 67, + "CustomerInfo": 83162891, + "PaymentType": "Debit Card" + }, + { + "Id": 5548, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2018-11-05T13:16:54", + "TransactionId": 98283544, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 761, + "CustomerInfo": 79446351, + "PaymentType": "Debit Card" + }, + { + "Id": 5549, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-08-06T17:02:50", + "TransactionId": 87187093, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 860, + "CustomerInfo": 64515763, + "PaymentType": "Credit Card" + }, + { + "Id": 5550, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-11-16T13:17:37", + "TransactionId": 67421115, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 744, + "CustomerInfo": 87872994, + "PaymentType": "Cash" + }, + { + "Id": 5551, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-12-01T08:51:56", + "TransactionId": 19015722, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 419, + "CustomerInfo": 99463361, + "PaymentType": "Debit Card" + }, + { + "Id": 5552, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-01-03T14:32:56", + "TransactionId": 59927534, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 213, + "CustomerInfo": 27809834, + "PaymentType": "Cash" + }, + { + "Id": 5553, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2018-01-03T11:40:34", + "TransactionId": 96840872, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 512, + "CustomerInfo": 85110873, + "PaymentType": "Debit Card" + }, + { + "Id": 5554, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-09-13T13:02:30", + "TransactionId": 27226449, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 649, + "CustomerInfo": 41366298, + "PaymentType": "Credit Card" + }, + { + "Id": 5555, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-08-29T17:34:31", + "TransactionId": 27850772, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 962, + "CustomerInfo": 16803745, + "PaymentType": "Credit Card" + }, + { + "Id": 5556, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-10-15T12:41:20", + "TransactionId": 59188515, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 604, + "CustomerInfo": 79014650, + "PaymentType": "Cash" + }, + { + "Id": 5557, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2017-03-28T08:05:17", + "TransactionId": 32693419, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 775, + "CustomerInfo": 30559135, + "PaymentType": "Debit Card" + }, + { + "Id": 5558, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-02-27T16:01:21", + "TransactionId": 98479381, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 852, + "CustomerInfo": 34436929, + "PaymentType": "Cash" + }, + { + "Id": 5559, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-11-13T14:08:01", + "TransactionId": 7108427, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 301, + "CustomerInfo": 57791630, + "PaymentType": "Credit Card" + }, + { + "Id": 5560, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-06-14T10:21:30", + "TransactionId": 58118159, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 723, + "CustomerInfo": 49180074, + "PaymentType": "Credit Card" + }, + { + "Id": 5561, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-03-18T10:25:32", + "TransactionId": 84011836, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 168, + "CustomerInfo": 21464507, + "PaymentType": "Cash" + }, + { + "Id": 5562, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-02-13T09:44:38", + "TransactionId": 66763137, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 137, + "CustomerInfo": 93710524, + "PaymentType": "Credit Card" + }, + { + "Id": 5563, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2019-10-13T11:11:54", + "TransactionId": 89325299, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 619, + "CustomerInfo": 97416862, + "PaymentType": "Cash" + }, + { + "Id": 5564, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-05-11T12:10:22", + "TransactionId": 96651962, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 964, + "CustomerInfo": 65984207, + "PaymentType": "Credit Card" + }, + { + "Id": 5565, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2016-12-02T13:43:49", + "TransactionId": 4864176, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 785, + "CustomerInfo": 36561886, + "PaymentType": "Debit Card" + }, + { + "Id": 5566, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2018-05-04T10:51:53", + "TransactionId": 96239602, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 227, + "CustomerInfo": 45323089, + "PaymentType": "Debit Card" + }, + { + "Id": 5567, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2016-07-03T08:18:49", + "TransactionId": 85439043, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 81, + "CustomerInfo": 3511189, + "PaymentType": "Cash" + }, + { + "Id": 5568, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2019-03-31T16:26:15", + "TransactionId": 23035419, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 323, + "CustomerInfo": 68510141, + "PaymentType": "Credit Card" + }, + { + "Id": 5569, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-05-17T15:28:39", + "TransactionId": 52242821, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 218, + "CustomerInfo": 25305813, + "PaymentType": "Credit Card" + }, + { + "Id": 5570, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-08-11T08:54:23", + "TransactionId": 66135864, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 186, + "CustomerInfo": 63858211, + "PaymentType": "Credit Card" + }, + { + "Id": 5571, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2018-12-25T12:12:58", + "TransactionId": 44995526, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 636, + "CustomerInfo": 68826, + "PaymentType": "Debit Card" + }, + { + "Id": 5572, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2018-12-07T17:59:25", + "TransactionId": 37578858, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 710, + "CustomerInfo": 38486479, + "PaymentType": "Credit Card" + }, + { + "Id": 5573, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-01-08T15:14:07", + "TransactionId": 42425536, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 332, + "CustomerInfo": 77945587, + "PaymentType": "Cash" + }, + { + "Id": 5574, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-08-17T19:02:47", + "TransactionId": 96899165, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 189, + "CustomerInfo": 37746523, + "PaymentType": "Debit Card" + }, + { + "Id": 5575, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-04-11T12:58:19", + "TransactionId": 65820060, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 32504205, + "PaymentType": "Cash" + }, + { + "Id": 5576, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-08-09T11:01:06", + "TransactionId": 28564539, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 242, + "CustomerInfo": 56444815, + "PaymentType": "Credit Card" + }, + { + "Id": 5577, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-01-21T15:14:07", + "TransactionId": 64963143, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 356, + "CustomerInfo": 20527706, + "PaymentType": "Cash" + }, + { + "Id": 5578, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-12-18T19:46:08", + "TransactionId": 35538780, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 445, + "CustomerInfo": 87335236, + "PaymentType": "Debit Card" + }, + { + "Id": 5579, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-06-08T16:33:19", + "TransactionId": 57821872, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 761, + "CustomerInfo": 39667921, + "PaymentType": "Debit Card" + }, + { + "Id": 5580, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2016-10-10T16:53:54", + "TransactionId": 4749130, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 851, + "CustomerInfo": 10415403, + "PaymentType": "Cash" + }, + { + "Id": 5581, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-08-12T15:12:40", + "TransactionId": 91773884, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 650, + "CustomerInfo": 7106652, + "PaymentType": "Credit Card" + }, + { + "Id": 5582, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-12-20T12:16:51", + "TransactionId": 28515182, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 565, + "CustomerInfo": 23173590, + "PaymentType": "Cash" + }, + { + "Id": 5583, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2019-10-06T14:50:04", + "TransactionId": 71988947, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 603, + "CustomerInfo": 13810876, + "PaymentType": "Debit Card" + }, + { + "Id": 5584, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-08-24T14:41:25", + "TransactionId": 16582551, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 835, + "CustomerInfo": 54047747, + "PaymentType": "Credit Card" + }, + { + "Id": 5585, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2017-08-26T14:30:46", + "TransactionId": 29158478, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 854, + "CustomerInfo": 8185163, + "PaymentType": "Debit Card" + }, + { + "Id": 5586, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-06-05T14:11:28", + "TransactionId": 62320614, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 154, + "CustomerInfo": 37640066, + "PaymentType": "Credit Card" + }, + { + "Id": 5587, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2016-12-14T17:44:53", + "TransactionId": 80939713, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 935, + "CustomerInfo": 69536788, + "PaymentType": "Cash" + }, + { + "Id": 5588, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-07-27T19:41:14", + "TransactionId": 70971334, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 742, + "CustomerInfo": 49467066, + "PaymentType": "Cash" + }, + { + "Id": 5589, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-12-09T19:30:52", + "TransactionId": 72600055, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 640, + "CustomerInfo": 12936930, + "PaymentType": "Cash" + }, + { + "Id": 5590, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-09-24T16:00:29", + "TransactionId": 13060719, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 377, + "CustomerInfo": 45427660, + "PaymentType": "Debit Card" + }, + { + "Id": 5591, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-02-25T08:10:28", + "TransactionId": 74825725, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 204, + "CustomerInfo": 13020156, + "PaymentType": "Debit Card" + }, + { + "Id": 5592, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2017-01-09T11:26:01", + "TransactionId": 18092627, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 808, + "CustomerInfo": 91359932, + "PaymentType": "Cash" + }, + { + "Id": 5593, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2018-04-21T11:02:33", + "TransactionId": 99238821, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 131, + "CustomerInfo": 87307950, + "PaymentType": "Credit Card" + }, + { + "Id": 5594, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2019-06-07T15:18:26", + "TransactionId": 68845273, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 320, + "CustomerInfo": 3642742, + "PaymentType": "Credit Card" + }, + { + "Id": 5595, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2018-11-28T07:37:29", + "TransactionId": 22412527, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 594, + "CustomerInfo": 75736491, + "PaymentType": "Credit Card" + }, + { + "Id": 5596, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2018-07-04T13:33:36", + "TransactionId": 35286118, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 763, + "CustomerInfo": 34324530, + "PaymentType": "Credit Card" + }, + { + "Id": 5597, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2018-07-31T12:02:10", + "TransactionId": 73010345, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 279, + "CustomerInfo": 87033112, + "PaymentType": "Cash" + }, + { + "Id": 5598, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2018-02-07T14:16:39", + "TransactionId": 82832321, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 267, + "CustomerInfo": 67008954, + "PaymentType": "Cash" + }, + { + "Id": 5599, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-09-16T13:14:10", + "TransactionId": 37880131, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 55, + "CustomerInfo": 7503338, + "PaymentType": "Credit Card" + }, + { + "Id": 5600, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2016-08-10T19:44:33", + "TransactionId": 7236593, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 476, + "CustomerInfo": 9367427, + "PaymentType": "Credit Card" + }, + { + "Id": 5601, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-02-22T12:26:04", + "TransactionId": 59881927, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 562, + "CustomerInfo": 55744438, + "PaymentType": "Debit Card" + }, + { + "Id": 5602, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-01-07T10:08:15", + "TransactionId": 73943702, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 910, + "CustomerInfo": 20799756, + "PaymentType": "Credit Card" + }, + { + "Id": 5603, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2017-08-03T07:59:14", + "TransactionId": 82526102, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 83559488, + "PaymentType": "Cash" + }, + { + "Id": 5604, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-03-25T09:42:03", + "TransactionId": 22819408, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 58, + "CustomerInfo": 74424252, + "PaymentType": "Credit Card" + }, + { + "Id": 5605, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-06-19T19:42:06", + "TransactionId": 33739246, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 27, + "CustomerInfo": 16406630, + "PaymentType": "Credit Card" + }, + { + "Id": 5606, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2018-10-15T11:59:17", + "TransactionId": 39307962, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 851, + "CustomerInfo": 7289368, + "PaymentType": "Cash" + }, + { + "Id": 5607, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2019-11-28T15:38:01", + "TransactionId": 98013617, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 378, + "CustomerInfo": 60436994, + "PaymentType": "Cash" + }, + { + "Id": 5608, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2016-10-26T16:45:16", + "TransactionId": 93049175, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 806, + "CustomerInfo": 82138462, + "PaymentType": "Debit Card" + }, + { + "Id": 5609, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-02-14T15:12:40", + "TransactionId": 90628706, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 924, + "CustomerInfo": 21063645, + "PaymentType": "Debit Card" + }, + { + "Id": 5610, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2018-03-26T15:43:03", + "TransactionId": 70978160, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 1, + "CustomerInfo": 90397545, + "PaymentType": "Credit Card" + }, + { + "Id": 5611, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-06-27T15:48:58", + "TransactionId": 20065389, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 473, + "CustomerInfo": 66608289, + "PaymentType": "Cash" + }, + { + "Id": 5612, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-05-22T13:05:31", + "TransactionId": 97268427, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 983, + "CustomerInfo": 59588674, + "PaymentType": "Credit Card" + }, + { + "Id": 5613, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-07-18T11:27:10", + "TransactionId": 94101726, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 79, + "CustomerInfo": 16259658, + "PaymentType": "Cash" + }, + { + "Id": 5614, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2016-01-05T18:51:24", + "TransactionId": 16805012, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 349, + "CustomerInfo": 30325285, + "PaymentType": "Credit Card" + }, + { + "Id": 5615, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-07-31T07:10:34", + "TransactionId": 75506051, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 922, + "CustomerInfo": 48444741, + "PaymentType": "Credit Card" + }, + { + "Id": 5616, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-02-23T19:53:28", + "TransactionId": 7940892, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 175, + "CustomerInfo": 25273184, + "PaymentType": "Credit Card" + }, + { + "Id": 5617, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-05-18T14:03:33", + "TransactionId": 29730825, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 689, + "CustomerInfo": 63596861, + "PaymentType": "Credit Card" + }, + { + "Id": 5618, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2019-05-10T13:11:34", + "TransactionId": 7709369, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 287, + "CustomerInfo": 49542338, + "PaymentType": "Credit Card" + }, + { + "Id": 5619, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2017-11-04T09:58:28", + "TransactionId": 97394317, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 444, + "CustomerInfo": 24509575, + "PaymentType": "Debit Card" + }, + { + "Id": 5620, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2017-07-25T18:33:24", + "TransactionId": 80917789, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 604, + "CustomerInfo": 27634946, + "PaymentType": "Cash" + }, + { + "Id": 5621, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2017-07-20T10:20:04", + "TransactionId": 32640742, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 703, + "CustomerInfo": 47875321, + "PaymentType": "Credit Card" + }, + { + "Id": 5622, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2019-03-23T18:12:40", + "TransactionId": 96525903, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 933, + "CustomerInfo": 92031593, + "PaymentType": "Cash" + }, + { + "Id": 5623, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-11-19T08:50:04", + "TransactionId": 67696915, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 826, + "CustomerInfo": 87158185, + "PaymentType": "Credit Card" + }, + { + "Id": 5624, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2018-09-09T12:01:35", + "TransactionId": 55061026, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 245, + "CustomerInfo": 64316220, + "PaymentType": "Credit Card" + }, + { + "Id": 5625, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-12-04T16:51:10", + "TransactionId": 76810857, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 225, + "CustomerInfo": 26597847, + "PaymentType": "Credit Card" + }, + { + "Id": 5626, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-08-28T15:21:53", + "TransactionId": 2972248, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 42, + "CustomerInfo": 97697309, + "PaymentType": "Debit Card" + }, + { + "Id": 5627, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2017-03-30T11:03:33", + "TransactionId": 8354987, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 532, + "CustomerInfo": 1592198, + "PaymentType": "Cash" + }, + { + "Id": 5628, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2019-09-01T13:12:52", + "TransactionId": 91107167, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 902, + "CustomerInfo": 33738909, + "PaymentType": "Cash" + }, + { + "Id": 5629, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2016-11-07T14:00:40", + "TransactionId": 56556791, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 222, + "CustomerInfo": 88408934, + "PaymentType": "Cash" + }, + { + "Id": 5630, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-07-04T18:46:48", + "TransactionId": 38423613, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 4943328, + "PaymentType": "Credit Card" + }, + { + "Id": 5631, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-03-20T10:03:22", + "TransactionId": 8562365, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 214, + "CustomerInfo": 47339112, + "PaymentType": "Cash" + }, + { + "Id": 5632, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2017-07-20T13:47:43", + "TransactionId": 62050102, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 788, + "CustomerInfo": 74364400, + "PaymentType": "Credit Card" + }, + { + "Id": 5633, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2016-06-17T15:53:00", + "TransactionId": 77395242, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 776, + "CustomerInfo": 9935718, + "PaymentType": "Cash" + }, + { + "Id": 5634, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2016-11-22T09:30:06", + "TransactionId": 89159044, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 902, + "CustomerInfo": 46371006, + "PaymentType": "Cash" + }, + { + "Id": 5635, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2016-03-24T14:08:44", + "TransactionId": 24307425, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 759, + "CustomerInfo": 48189044, + "PaymentType": "Credit Card" + }, + { + "Id": 5636, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2019-05-23T08:09:19", + "TransactionId": 40119149, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 167, + "CustomerInfo": 39483209, + "PaymentType": "Credit Card" + }, + { + "Id": 5637, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2019-09-21T08:00:14", + "TransactionId": 93496146, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 608, + "CustomerInfo": 17217906, + "PaymentType": "Credit Card" + }, + { + "Id": 5638, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2016-03-09T12:48:32", + "TransactionId": 23251331, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 282, + "CustomerInfo": 69216917, + "PaymentType": "Debit Card" + }, + { + "Id": 5639, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2019-02-13T19:23:23", + "TransactionId": 54364357, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 108, + "CustomerInfo": 21350543, + "PaymentType": "Debit Card" + }, + { + "Id": 5640, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-12-22T16:40:22", + "TransactionId": 50045508, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 929, + "CustomerInfo": 43562180, + "PaymentType": "Cash" + }, + { + "Id": 5641, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-09-23T19:09:33", + "TransactionId": 92336782, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 425, + "CustomerInfo": 45573563, + "PaymentType": "Cash" + }, + { + "Id": 5642, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2017-01-24T10:38:21", + "TransactionId": 63787091, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 556, + "CustomerInfo": 25176369, + "PaymentType": "Credit Card" + }, + { + "Id": 5643, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-02-25T08:21:33", + "TransactionId": 95549322, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 168, + "CustomerInfo": 48809351, + "PaymentType": "Debit Card" + }, + { + "Id": 5644, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-12-28T12:53:08", + "TransactionId": 38390969, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 337, + "CustomerInfo": 4112359, + "PaymentType": "Debit Card" + }, + { + "Id": 5645, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2016-04-03T14:50:47", + "TransactionId": 88476435, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 134, + "CustomerInfo": 82868638, + "PaymentType": "Debit Card" + }, + { + "Id": 5646, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2017-05-30T18:22:11", + "TransactionId": 74372828, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 545, + "CustomerInfo": 68494031, + "PaymentType": "Debit Card" + }, + { + "Id": 5647, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-03-12T10:46:08", + "TransactionId": 99516863, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 426, + "CustomerInfo": 94176168, + "PaymentType": "Cash" + }, + { + "Id": 5648, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2016-05-25T10:00:55", + "TransactionId": 41518707, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 847, + "CustomerInfo": 83299754, + "PaymentType": "Cash" + }, + { + "Id": 5649, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2019-03-15T16:21:30", + "TransactionId": 21862461, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 155, + "CustomerInfo": 5615934, + "PaymentType": "Credit Card" + }, + { + "Id": 5650, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2017-07-22T12:22:11", + "TransactionId": 7023147, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 617, + "CustomerInfo": 15519458, + "PaymentType": "Credit Card" + }, + { + "Id": 5651, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-04-30T19:04:39", + "TransactionId": 63216307, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 694, + "CustomerInfo": 19325892, + "PaymentType": "Credit Card" + }, + { + "Id": 5652, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-10-01T11:02:33", + "TransactionId": 40408823, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 653, + "CustomerInfo": 11312335, + "PaymentType": "Debit Card" + }, + { + "Id": 5653, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2016-06-08T16:40:39", + "TransactionId": 97107464, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 350, + "CustomerInfo": 88148569, + "PaymentType": "Debit Card" + }, + { + "Id": 5654, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-01-15T07:16:28", + "TransactionId": 31673087, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 930, + "CustomerInfo": 54242887, + "PaymentType": "Credit Card" + }, + { + "Id": 5655, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-04-17T17:49:29", + "TransactionId": 31906318, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 596, + "CustomerInfo": 88342662, + "PaymentType": "Credit Card" + }, + { + "Id": 5656, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-01-16T19:02:56", + "TransactionId": 41302252, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 291, + "CustomerInfo": 38068217, + "PaymentType": "Cash" + }, + { + "Id": 5657, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2019-11-11T18:50:15", + "TransactionId": 82046301, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 757, + "CustomerInfo": 23824374, + "PaymentType": "Debit Card" + }, + { + "Id": 5658, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-03-17T15:47:31", + "TransactionId": 53226782, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 761, + "CustomerInfo": 88205737, + "PaymentType": "Debit Card" + }, + { + "Id": 5659, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-07-25T17:23:34", + "TransactionId": 77193725, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 774, + "CustomerInfo": 62745332, + "PaymentType": "Debit Card" + }, + { + "Id": 5660, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2017-10-23T18:29:48", + "TransactionId": 6782602, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 544, + "CustomerInfo": 44864921, + "PaymentType": "Cash" + }, + { + "Id": 5661, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-02-15T09:04:11", + "TransactionId": 21630126, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 341, + "CustomerInfo": 2437502, + "PaymentType": "Debit Card" + }, + { + "Id": 5662, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-05-19T07:47:17", + "TransactionId": 66609442, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 634, + "CustomerInfo": 27412711, + "PaymentType": "Cash" + }, + { + "Id": 5663, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-01-26T17:41:17", + "TransactionId": 14653370, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 160, + "CustomerInfo": 18667808, + "PaymentType": "Credit Card" + }, + { + "Id": 5664, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-12-21T14:44:36", + "TransactionId": 19823959, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 34, + "CustomerInfo": 58507447, + "PaymentType": "Cash" + }, + { + "Id": 5665, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2018-09-11T10:23:40", + "TransactionId": 42429568, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 372, + "CustomerInfo": 41951015, + "PaymentType": "Debit Card" + }, + { + "Id": 5666, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2018-11-30T13:39:39", + "TransactionId": 95859693, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 784, + "CustomerInfo": 94655204, + "PaymentType": "Cash" + }, + { + "Id": 5667, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2017-06-06T07:35:11", + "TransactionId": 54448381, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 428, + "CustomerInfo": 72921642, + "PaymentType": "Credit Card" + }, + { + "Id": 5668, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2018-10-19T17:51:30", + "TransactionId": 30845898, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 923, + "CustomerInfo": 57833739, + "PaymentType": "Cash" + }, + { + "Id": 5669, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-12-28T17:13:03", + "TransactionId": 5695696, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 68, + "CustomerInfo": 84985283, + "PaymentType": "Cash" + }, + { + "Id": 5670, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2016-02-29T14:04:51", + "TransactionId": 12868209, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 639, + "CustomerInfo": 83435427, + "PaymentType": "Credit Card" + }, + { + "Id": 5671, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2016-08-06T08:54:49", + "TransactionId": 12675955, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 943, + "CustomerInfo": 75558159, + "PaymentType": "Debit Card" + }, + { + "Id": 5672, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-12-16T14:49:12", + "TransactionId": 73899445, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 443, + "CustomerInfo": 37836427, + "PaymentType": "Debit Card" + }, + { + "Id": 5673, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2016-01-01T12:28:13", + "TransactionId": 4275007, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 556, + "CustomerInfo": 64773688, + "PaymentType": "Cash" + }, + { + "Id": 5674, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-06-25T14:27:53", + "TransactionId": 78725005, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 186, + "CustomerInfo": 66664292, + "PaymentType": "Credit Card" + }, + { + "Id": 5675, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-10-02T13:39:48", + "TransactionId": 24586206, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 121, + "CustomerInfo": 18312703, + "PaymentType": "Debit Card" + }, + { + "Id": 5676, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2019-03-14T08:02:33", + "TransactionId": 43765352, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 149, + "CustomerInfo": 79773703, + "PaymentType": "Cash" + }, + { + "Id": 5677, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-04-07T14:51:22", + "TransactionId": 64935697, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 761, + "CustomerInfo": 99889209, + "PaymentType": "Cash" + }, + { + "Id": 5678, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-07-30T17:15:56", + "TransactionId": 49540387, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 438, + "CustomerInfo": 99941688, + "PaymentType": "Cash" + }, + { + "Id": 5679, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2019-06-08T08:22:51", + "TransactionId": 98291408, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 294, + "CustomerInfo": 47709199, + "PaymentType": "Credit Card" + }, + { + "Id": 5680, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2018-09-12T12:30:32", + "TransactionId": 41647228, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 415, + "CustomerInfo": 22508933, + "PaymentType": "Debit Card" + }, + { + "Id": 5681, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2016-03-13T17:53:31", + "TransactionId": 42834931, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 201, + "CustomerInfo": 44379422, + "PaymentType": "Debit Card" + }, + { + "Id": 5682, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2016-12-23T19:24:06", + "TransactionId": 28433087, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 772, + "CustomerInfo": 78364995, + "PaymentType": "Credit Card" + }, + { + "Id": 5683, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2019-03-07T13:19:47", + "TransactionId": 7078982, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 350, + "CustomerInfo": 30263873, + "PaymentType": "Debit Card" + }, + { + "Id": 5684, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-01-14T12:07:55", + "TransactionId": 72645444, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 515, + "CustomerInfo": 83799250, + "PaymentType": "Cash" + }, + { + "Id": 5685, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-10-28T19:54:29", + "TransactionId": 55588618, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 22, + "CustomerInfo": 38518362, + "PaymentType": "Debit Card" + }, + { + "Id": 5686, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2017-03-24T08:58:51", + "TransactionId": 97212918, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 268, + "CustomerInfo": 63596011, + "PaymentType": "Credit Card" + }, + { + "Id": 5687, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2017-04-02T18:10:31", + "TransactionId": 5171666, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 934, + "CustomerInfo": 90687574, + "PaymentType": "Cash" + }, + { + "Id": 5688, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2016-12-23T18:07:55", + "TransactionId": 34908627, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 915, + "CustomerInfo": 21514953, + "PaymentType": "Cash" + }, + { + "Id": 5689, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-05-02T08:28:28", + "TransactionId": 45481273, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 42, + "CustomerInfo": 96267199, + "PaymentType": "Credit Card" + }, + { + "Id": 5690, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2017-09-13T14:21:16", + "TransactionId": 93627056, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 314, + "CustomerInfo": 20910908, + "PaymentType": "Debit Card" + }, + { + "Id": 5691, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2017-11-26T07:13:18", + "TransactionId": 15512605, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 940, + "CustomerInfo": 36247815, + "PaymentType": "Credit Card" + }, + { + "Id": 5692, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-06-30T12:14:41", + "TransactionId": 79222377, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 946, + "CustomerInfo": 94761233, + "PaymentType": "Debit Card" + }, + { + "Id": 5693, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2016-06-12T16:51:45", + "TransactionId": 98971451, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 974, + "CustomerInfo": 4141221, + "PaymentType": "Debit Card" + }, + { + "Id": 5694, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-06-21T07:48:35", + "TransactionId": 99618552, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 804, + "CustomerInfo": 49227114, + "PaymentType": "Cash" + }, + { + "Id": 5695, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2018-05-31T13:24:14", + "TransactionId": 40307646, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 89, + "CustomerInfo": 10673381, + "PaymentType": "Debit Card" + }, + { + "Id": 5696, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2019-12-20T18:01:18", + "TransactionId": 25945678, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 787, + "CustomerInfo": 56841288, + "PaymentType": "Credit Card" + }, + { + "Id": 5697, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2019-06-03T17:55:06", + "TransactionId": 54269809, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 103, + "CustomerInfo": 6874100, + "PaymentType": "Debit Card" + }, + { + "Id": 5698, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-12-21T10:20:21", + "TransactionId": 93451108, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 87, + "CustomerInfo": 74603767, + "PaymentType": "Credit Card" + }, + { + "Id": 5699, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-10-12T09:09:48", + "TransactionId": 79751877, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 689, + "CustomerInfo": 62156573, + "PaymentType": "Cash" + }, + { + "Id": 5700, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-07-01T10:02:12", + "TransactionId": 2392676, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 996, + "CustomerInfo": 24317237, + "PaymentType": "Debit Card" + }, + { + "Id": 5701, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2016-08-09T08:10:36", + "TransactionId": 83260418, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 247, + "CustomerInfo": 89856294, + "PaymentType": "Cash" + }, + { + "Id": 5702, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2019-10-05T07:16:11", + "TransactionId": 33487008, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 586, + "CustomerInfo": 56516359, + "PaymentType": "Debit Card" + }, + { + "Id": 5703, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-06-03T14:04:34", + "TransactionId": 31774843, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 679, + "CustomerInfo": 6749217, + "PaymentType": "Cash" + }, + { + "Id": 5704, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2018-11-01T14:59:08", + "TransactionId": 70531975, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 684, + "CustomerInfo": 65267348, + "PaymentType": "Cash" + }, + { + "Id": 5705, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2017-03-24T19:47:25", + "TransactionId": 32876141, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 425, + "CustomerInfo": 88902616, + "PaymentType": "Debit Card" + }, + { + "Id": 5706, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2017-03-16T10:37:12", + "TransactionId": 17538118, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 449, + "CustomerInfo": 37699503, + "PaymentType": "Debit Card" + }, + { + "Id": 5707, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-03-19T09:23:37", + "TransactionId": 61889924, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 365, + "CustomerInfo": 41698949, + "PaymentType": "Cash" + }, + { + "Id": 5708, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-04-20T08:16:31", + "TransactionId": 20079454, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 485, + "CustomerInfo": 62629216, + "PaymentType": "Credit Card" + }, + { + "Id": 5709, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-10-21T12:25:03", + "TransactionId": 33713764, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 568, + "CustomerInfo": 70139446, + "PaymentType": "Debit Card" + }, + { + "Id": 5710, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-11-08T08:20:41", + "TransactionId": 81464086, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 6, + "CustomerInfo": 31846110, + "PaymentType": "Debit Card" + }, + { + "Id": 5711, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2019-08-15T12:38:36", + "TransactionId": 98782428, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 799, + "CustomerInfo": 12410967, + "PaymentType": "Debit Card" + }, + { + "Id": 5712, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2019-02-28T12:45:22", + "TransactionId": 13294608, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 981, + "CustomerInfo": 75178099, + "PaymentType": "Credit Card" + }, + { + "Id": 5713, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2019-05-07T07:08:24", + "TransactionId": 8939036, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 233, + "CustomerInfo": 23606939, + "PaymentType": "Cash" + }, + { + "Id": 5714, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2018-10-06T09:24:12", + "TransactionId": 79984599, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 797, + "CustomerInfo": 4536836, + "PaymentType": "Credit Card" + }, + { + "Id": 5715, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-12-29T12:07:55", + "TransactionId": 95711199, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 405, + "CustomerInfo": 81133081, + "PaymentType": "Debit Card" + }, + { + "Id": 5716, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2019-08-06T19:39:30", + "TransactionId": 77815447, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 722, + "CustomerInfo": 29601129, + "PaymentType": "Cash" + }, + { + "Id": 5717, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-09-19T09:24:12", + "TransactionId": 30620275, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 874, + "CustomerInfo": 3637603, + "PaymentType": "Debit Card" + }, + { + "Id": 5718, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-06-14T09:29:40", + "TransactionId": 46168903, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 695, + "CustomerInfo": 31081935, + "PaymentType": "Cash" + }, + { + "Id": 5719, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-04-13T11:13:12", + "TransactionId": 52005996, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 548, + "CustomerInfo": 72959480, + "PaymentType": "Cash" + }, + { + "Id": 5720, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2018-08-05T19:43:41", + "TransactionId": 81454762, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 857, + "CustomerInfo": 57513738, + "PaymentType": "Credit Card" + }, + { + "Id": 5721, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2016-06-09T12:50:50", + "TransactionId": 38183272, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 518, + "CustomerInfo": 37599060, + "PaymentType": "Debit Card" + }, + { + "Id": 5722, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-11-06T12:04:45", + "TransactionId": 70562156, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 630, + "CustomerInfo": 88147916, + "PaymentType": "Credit Card" + }, + { + "Id": 5723, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2016-09-15T11:12:20", + "TransactionId": 49500122, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 978, + "CustomerInfo": 59374994, + "PaymentType": "Debit Card" + }, + { + "Id": 5724, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-05-22T12:16:42", + "TransactionId": 61612812, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 996, + "CustomerInfo": 20901953, + "PaymentType": "Debit Card" + }, + { + "Id": 5725, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-08-21T13:49:09", + "TransactionId": 227803, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 59442300, + "PaymentType": "Credit Card" + }, + { + "Id": 5726, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2018-08-02T15:20:10", + "TransactionId": 53675917, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 356, + "CustomerInfo": 34631368, + "PaymentType": "Credit Card" + }, + { + "Id": 5727, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-05-23T07:54:46", + "TransactionId": 11214358, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 404, + "CustomerInfo": 4192602, + "PaymentType": "Debit Card" + }, + { + "Id": 5728, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-01-06T13:03:04", + "TransactionId": 85002663, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 552, + "CustomerInfo": 59470558, + "PaymentType": "Debit Card" + }, + { + "Id": 5729, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2017-03-12T15:05:02", + "TransactionId": 75449170, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 228, + "CustomerInfo": 26787653, + "PaymentType": "Debit Card" + }, + { + "Id": 5730, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2019-05-09T17:21:07", + "TransactionId": 50995155, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 330, + "CustomerInfo": 9705677, + "PaymentType": "Debit Card" + }, + { + "Id": 5731, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2016-06-13T19:38:21", + "TransactionId": 60987437, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 880, + "CustomerInfo": 84402925, + "PaymentType": "Cash" + }, + { + "Id": 5732, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-07-23T19:30:35", + "TransactionId": 41292825, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 334, + "CustomerInfo": 36662324, + "PaymentType": "Cash" + }, + { + "Id": 5733, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-11-26T13:24:58", + "TransactionId": 75811964, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 623, + "CustomerInfo": 96241991, + "PaymentType": "Debit Card" + }, + { + "Id": 5734, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-03-19T07:55:29", + "TransactionId": 27674914, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 123, + "CustomerInfo": 40143522, + "PaymentType": "Credit Card" + }, + { + "Id": 5735, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2017-05-31T07:04:13", + "TransactionId": 56208873, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 284, + "CustomerInfo": 55055818, + "PaymentType": "Cash" + }, + { + "Id": 5736, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2017-12-11T07:46:25", + "TransactionId": 58764623, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 394, + "CustomerInfo": 5122941, + "PaymentType": "Cash" + }, + { + "Id": 5737, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-04-07T12:39:27", + "TransactionId": 87413258, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 737, + "CustomerInfo": 71122082, + "PaymentType": "Cash" + }, + { + "Id": 5738, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-12-13T13:45:50", + "TransactionId": 28431048, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 983, + "CustomerInfo": 44237867, + "PaymentType": "Cash" + }, + { + "Id": 5739, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2017-05-18T10:41:05", + "TransactionId": 50450301, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 19, + "CustomerInfo": 76915540, + "PaymentType": "Cash" + }, + { + "Id": 5740, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-12-08T16:16:36", + "TransactionId": 1323932, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 47, + "CustomerInfo": 21465096, + "PaymentType": "Cash" + }, + { + "Id": 5741, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-06-23T18:35:00", + "TransactionId": 60841318, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 966, + "CustomerInfo": 17882152, + "PaymentType": "Debit Card" + }, + { + "Id": 5742, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2018-05-13T10:57:30", + "TransactionId": 75601727, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 85, + "CustomerInfo": 30947823, + "PaymentType": "Credit Card" + }, + { + "Id": 5743, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-08-31T14:58:16", + "TransactionId": 54228421, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 42, + "CustomerInfo": 38237415, + "PaymentType": "Credit Card" + }, + { + "Id": 5744, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-04-06T13:06:06", + "TransactionId": 44659803, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 136, + "CustomerInfo": 23502663, + "PaymentType": "Cash" + }, + { + "Id": 5745, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-12-02T13:47:00", + "TransactionId": 87016614, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 478, + "CustomerInfo": 4800617, + "PaymentType": "Debit Card" + }, + { + "Id": 5746, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2017-07-05T18:50:15", + "TransactionId": 10540166, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 357, + "CustomerInfo": 9304197, + "PaymentType": "Credit Card" + }, + { + "Id": 5747, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2017-05-12T14:59:25", + "TransactionId": 94970617, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 500, + "CustomerInfo": 56602676, + "PaymentType": "Cash" + }, + { + "Id": 5748, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2017-10-10T11:53:31", + "TransactionId": 27113801, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 151, + "CustomerInfo": 11168388, + "PaymentType": "Debit Card" + }, + { + "Id": 5749, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2018-10-07T13:41:14", + "TransactionId": 52656576, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 948, + "CustomerInfo": 41989497, + "PaymentType": "Credit Card" + }, + { + "Id": 5750, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2018-03-19T16:33:27", + "TransactionId": 60050750, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 114, + "CustomerInfo": 7377367, + "PaymentType": "Cash" + }, + { + "Id": 5751, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-10-12T19:11:17", + "TransactionId": 23931191, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 726, + "CustomerInfo": 28213722, + "PaymentType": "Credit Card" + }, + { + "Id": 5752, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-04-02T18:30:32", + "TransactionId": 9710522, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 91, + "CustomerInfo": 95972776, + "PaymentType": "Cash" + }, + { + "Id": 5753, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2017-07-14T15:33:59", + "TransactionId": 74567173, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 612, + "CustomerInfo": 78750528, + "PaymentType": "Credit Card" + }, + { + "Id": 5754, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-07-25T16:02:21", + "TransactionId": 68142404, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 344, + "CustomerInfo": 5029868, + "PaymentType": "Credit Card" + }, + { + "Id": 5755, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2016-04-26T16:41:23", + "TransactionId": 76746087, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 63239455, + "PaymentType": "Debit Card" + }, + { + "Id": 5756, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-03-10T15:06:03", + "TransactionId": 72958344, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 928, + "CustomerInfo": 51366112, + "PaymentType": "Credit Card" + }, + { + "Id": 5757, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2017-12-18T15:01:52", + "TransactionId": 30749589, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 78, + "CustomerInfo": 70987890, + "PaymentType": "Credit Card" + }, + { + "Id": 5758, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-06-08T07:56:21", + "TransactionId": 87176691, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 319, + "CustomerInfo": 27131824, + "PaymentType": "Credit Card" + }, + { + "Id": 5759, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2019-07-09T10:55:29", + "TransactionId": 69184014, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 215, + "CustomerInfo": 44921860, + "PaymentType": "Credit Card" + }, + { + "Id": 5760, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-07-05T16:33:36", + "TransactionId": 23743568, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 247, + "CustomerInfo": 59770675, + "PaymentType": "Credit Card" + }, + { + "Id": 5761, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-05-07T13:48:00", + "TransactionId": 34465830, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 361, + "CustomerInfo": 36317531, + "PaymentType": "Cash" + }, + { + "Id": 5762, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2017-03-01T10:55:29", + "TransactionId": 44384640, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 233, + "CustomerInfo": 20431964, + "PaymentType": "Cash" + }, + { + "Id": 5763, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2016-11-30T12:02:36", + "TransactionId": 11571717, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 233, + "CustomerInfo": 72372373, + "PaymentType": "Debit Card" + }, + { + "Id": 5764, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2017-06-14T13:01:29", + "TransactionId": 38702973, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 578, + "CustomerInfo": 3367616, + "PaymentType": "Cash" + }, + { + "Id": 5765, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-10-19T17:50:38", + "TransactionId": 26484551, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 770, + "CustomerInfo": 29040979, + "PaymentType": "Credit Card" + }, + { + "Id": 5766, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2016-09-05T17:41:43", + "TransactionId": 31430971, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 789, + "CustomerInfo": 93865753, + "PaymentType": "Debit Card" + }, + { + "Id": 5767, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-04-18T14:01:49", + "TransactionId": 26684297, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 55421469, + "PaymentType": "Cash" + }, + { + "Id": 5768, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-06-11T12:31:32", + "TransactionId": 53830770, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 136, + "CustomerInfo": 69628847, + "PaymentType": "Credit Card" + }, + { + "Id": 5769, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-12-14T17:10:45", + "TransactionId": 88599475, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 550, + "CustomerInfo": 74671727, + "PaymentType": "Cash" + }, + { + "Id": 5770, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-06-03T09:28:05", + "TransactionId": 65310141, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 3165104, + "PaymentType": "Cash" + }, + { + "Id": 5771, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2017-07-01T14:51:39", + "TransactionId": 39630275, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 649, + "CustomerInfo": 56755463, + "PaymentType": "Debit Card" + }, + { + "Id": 5772, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-09-11T17:37:24", + "TransactionId": 4619092, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 126, + "CustomerInfo": 30568327, + "PaymentType": "Credit Card" + }, + { + "Id": 5773, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2016-07-04T13:20:47", + "TransactionId": 82931583, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 41545092, + "PaymentType": "Cash" + }, + { + "Id": 5774, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-08-12T11:19:58", + "TransactionId": 64815733, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 37729020, + "PaymentType": "Credit Card" + }, + { + "Id": 5775, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2018-10-09T19:15:19", + "TransactionId": 33439855, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 640, + "CustomerInfo": 11767573, + "PaymentType": "Cash" + }, + { + "Id": 5776, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2018-04-24T11:12:12", + "TransactionId": 89406119, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 651, + "CustomerInfo": 40099170, + "PaymentType": "Cash" + }, + { + "Id": 5777, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-07-17T15:25:21", + "TransactionId": 38821160, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 246, + "CustomerInfo": 41774427, + "PaymentType": "Debit Card" + }, + { + "Id": 5778, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-08-17T07:42:06", + "TransactionId": 20666524, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 61, + "CustomerInfo": 33303708, + "PaymentType": "Cash" + }, + { + "Id": 5779, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2017-10-02T14:01:49", + "TransactionId": 44745913, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 640, + "CustomerInfo": 78172307, + "PaymentType": "Cash" + }, + { + "Id": 5780, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2018-04-15T08:18:40", + "TransactionId": 3875206, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 224, + "CustomerInfo": 78984133, + "PaymentType": "Credit Card" + }, + { + "Id": 5781, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2017-07-12T09:02:01", + "TransactionId": 9768500, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 682, + "CustomerInfo": 6430908, + "PaymentType": "Cash" + }, + { + "Id": 5782, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-08-16T09:25:47", + "TransactionId": 36566569, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 216, + "CustomerInfo": 16651045, + "PaymentType": "Debit Card" + }, + { + "Id": 5783, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2019-09-12T13:58:39", + "TransactionId": 7679179, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 485, + "CustomerInfo": 48497264, + "PaymentType": "Cash" + }, + { + "Id": 5784, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2017-11-06T11:49:55", + "TransactionId": 75062581, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 10, + "CustomerInfo": 27861867, + "PaymentType": "Cash" + }, + { + "Id": 5785, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-05-29T14:12:20", + "TransactionId": 31142234, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 995, + "CustomerInfo": 28199144, + "PaymentType": "Credit Card" + }, + { + "Id": 5786, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2016-08-09T08:24:52", + "TransactionId": 2094657, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 541, + "CustomerInfo": 61827578, + "PaymentType": "Credit Card" + }, + { + "Id": 5787, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-08-20T09:12:14", + "TransactionId": 79813421, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 27008914, + "PaymentType": "Credit Card" + }, + { + "Id": 5788, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-05-04T19:31:35", + "TransactionId": 7009479, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 501, + "CustomerInfo": 35046751, + "PaymentType": "Credit Card" + }, + { + "Id": 5789, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2019-06-22T19:19:47", + "TransactionId": 12561913, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 635, + "CustomerInfo": 24235437, + "PaymentType": "Debit Card" + }, + { + "Id": 5790, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2016-07-13T07:31:09", + "TransactionId": 57310374, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 152, + "CustomerInfo": 96371932, + "PaymentType": "Debit Card" + }, + { + "Id": 5791, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2017-04-05T07:47:00", + "TransactionId": 4524082, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 603, + "CustomerInfo": 75453482, + "PaymentType": "Credit Card" + }, + { + "Id": 5792, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2019-09-06T15:45:30", + "TransactionId": 79848683, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 95, + "CustomerInfo": 26994118, + "PaymentType": "Cash" + }, + { + "Id": 5793, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2018-07-15T14:38:59", + "TransactionId": 1373424, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 406, + "CustomerInfo": 7120222, + "PaymentType": "Credit Card" + }, + { + "Id": 5794, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2018-01-05T12:47:23", + "TransactionId": 73501401, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 201, + "CustomerInfo": 34650138, + "PaymentType": "Debit Card" + }, + { + "Id": 5795, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2016-09-11T17:02:33", + "TransactionId": 85313081, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 820, + "CustomerInfo": 70417436, + "PaymentType": "Cash" + }, + { + "Id": 5796, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-02-27T12:27:13", + "TransactionId": 3794649, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 542, + "CustomerInfo": 64602574, + "PaymentType": "Cash" + }, + { + "Id": 5797, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-09-06T17:36:06", + "TransactionId": 41673913, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 80, + "CustomerInfo": 41783153, + "PaymentType": "Credit Card" + }, + { + "Id": 5798, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2016-06-21T15:49:15", + "TransactionId": 60049087, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 568, + "CustomerInfo": 98805588, + "PaymentType": "Cash" + }, + { + "Id": 5799, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2019-08-23T08:36:58", + "TransactionId": 83869888, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 801, + "CustomerInfo": 77619229, + "PaymentType": "Credit Card" + }, + { + "Id": 5800, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2019-09-08T09:40:45", + "TransactionId": 8807981, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 50, + "CustomerInfo": 55094036, + "PaymentType": "Cash" + }, + { + "Id": 5801, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-04-28T09:19:26", + "TransactionId": 13303446, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 711, + "CustomerInfo": 35463392, + "PaymentType": "Cash" + }, + { + "Id": 5802, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-12-10T09:35:00", + "TransactionId": 26211463, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 720, + "CustomerInfo": 79615524, + "PaymentType": "Debit Card" + }, + { + "Id": 5803, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2019-03-24T10:47:08", + "TransactionId": 89734445, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 244, + "CustomerInfo": 34031674, + "PaymentType": "Credit Card" + }, + { + "Id": 5804, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-08-02T10:12:43", + "TransactionId": 62699436, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 601, + "CustomerInfo": 8121621, + "PaymentType": "Cash" + }, + { + "Id": 5805, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2016-04-30T07:10:42", + "TransactionId": 3231111, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 871, + "CustomerInfo": 27158338, + "PaymentType": "Cash" + }, + { + "Id": 5806, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-02-04T07:59:31", + "TransactionId": 7906043, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 812, + "CustomerInfo": 81023095, + "PaymentType": "Debit Card" + }, + { + "Id": 5807, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2017-10-13T14:39:16", + "TransactionId": 2586315, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 355, + "CustomerInfo": 2912871, + "PaymentType": "Credit Card" + }, + { + "Id": 5808, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2018-03-22T09:54:52", + "TransactionId": 16635302, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 494, + "CustomerInfo": 82532099, + "PaymentType": "Debit Card" + }, + { + "Id": 5809, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2018-04-10T17:55:58", + "TransactionId": 59175873, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 496, + "CustomerInfo": 9966122, + "PaymentType": "Cash" + }, + { + "Id": 5810, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-10-04T07:24:23", + "TransactionId": 7324152, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 561, + "CustomerInfo": 74025071, + "PaymentType": "Cash" + }, + { + "Id": 5811, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2016-09-01T16:12:35", + "TransactionId": 86608881, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 632, + "CustomerInfo": 73937626, + "PaymentType": "Debit Card" + }, + { + "Id": 5812, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2019-09-14T07:52:19", + "TransactionId": 30982399, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 520, + "CustomerInfo": 70202866, + "PaymentType": "Credit Card" + }, + { + "Id": 5813, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-12-04T11:13:03", + "TransactionId": 30861459, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 303, + "CustomerInfo": 2212892, + "PaymentType": "Cash" + }, + { + "Id": 5814, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-01-09T19:32:10", + "TransactionId": 63280191, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 25, + "CustomerInfo": 31536438, + "PaymentType": "Credit Card" + }, + { + "Id": 5815, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-02-01T09:19:18", + "TransactionId": 3768508, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 24173753, + "PaymentType": "Cash" + }, + { + "Id": 5816, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2017-11-17T12:57:45", + "TransactionId": 56076624, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 632, + "CustomerInfo": 11766040, + "PaymentType": "Cash" + }, + { + "Id": 5817, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-05-24T11:37:15", + "TransactionId": 63229413, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 951, + "CustomerInfo": 58788975, + "PaymentType": "Credit Card" + }, + { + "Id": 5818, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-04-02T09:56:44", + "TransactionId": 88214943, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 625, + "CustomerInfo": 34641986, + "PaymentType": "Cash" + }, + { + "Id": 5819, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-10-23T15:10:05", + "TransactionId": 57595977, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 234, + "CustomerInfo": 39944023, + "PaymentType": "Debit Card" + }, + { + "Id": 5820, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2016-10-08T18:09:22", + "TransactionId": 64878450, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 6, + "CustomerInfo": 33244259, + "PaymentType": "Debit Card" + }, + { + "Id": 5821, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-08-30T17:43:35", + "TransactionId": 8074399, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 926, + "CustomerInfo": 73531476, + "PaymentType": "Cash" + }, + { + "Id": 5822, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-04-03T15:20:36", + "TransactionId": 78883718, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 892, + "CustomerInfo": 43817475, + "PaymentType": "Cash" + }, + { + "Id": 5823, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-10-21T08:01:24", + "TransactionId": 52993941, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 608, + "CustomerInfo": 81736594, + "PaymentType": "Cash" + }, + { + "Id": 5824, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-07-21T15:01:44", + "TransactionId": 93158301, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 554, + "CustomerInfo": 79410372, + "PaymentType": "Cash" + }, + { + "Id": 5825, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-09-04T09:52:25", + "TransactionId": 73640173, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 638, + "CustomerInfo": 28158723, + "PaymentType": "Debit Card" + }, + { + "Id": 5826, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-06-04T09:47:31", + "TransactionId": 16380020, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 766, + "CustomerInfo": 70430996, + "PaymentType": "Credit Card" + }, + { + "Id": 5827, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2016-04-15T13:34:11", + "TransactionId": 49808838, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 148, + "CustomerInfo": 2206267, + "PaymentType": "Credit Card" + }, + { + "Id": 5828, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2018-10-26T14:09:36", + "TransactionId": 49227600, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 434, + "CustomerInfo": 28757563, + "PaymentType": "Cash" + }, + { + "Id": 5829, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-12-13T12:05:11", + "TransactionId": 33862879, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 65, + "CustomerInfo": 84382133, + "PaymentType": "Debit Card" + }, + { + "Id": 5830, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2017-10-31T16:02:30", + "TransactionId": 91621050, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 94, + "CustomerInfo": 62954839, + "PaymentType": "Cash" + }, + { + "Id": 5831, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-03-03T11:12:46", + "TransactionId": 64611312, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 844, + "CustomerInfo": 90876301, + "PaymentType": "Debit Card" + }, + { + "Id": 5832, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-08-15T17:31:55", + "TransactionId": 30732784, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 79530056, + "PaymentType": "Credit Card" + }, + { + "Id": 5833, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2017-04-13T15:11:57", + "TransactionId": 19569091, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 220, + "CustomerInfo": 67127188, + "PaymentType": "Cash" + }, + { + "Id": 5834, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2016-03-01T07:42:32", + "TransactionId": 73495746, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 31142972, + "PaymentType": "Debit Card" + }, + { + "Id": 5835, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2016-03-05T17:36:49", + "TransactionId": 52936273, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 891, + "CustomerInfo": 66242478, + "PaymentType": "Cash" + }, + { + "Id": 5836, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-11-28T16:45:50", + "TransactionId": 63496782, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 992, + "CustomerInfo": 62738430, + "PaymentType": "Debit Card" + }, + { + "Id": 5837, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-06-10T18:38:10", + "TransactionId": 87442461, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 910, + "CustomerInfo": 31112124, + "PaymentType": "Cash" + }, + { + "Id": 5838, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2018-08-18T15:05:37", + "TransactionId": 31281548, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 779, + "CustomerInfo": 40158508, + "PaymentType": "Debit Card" + }, + { + "Id": 5839, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2016-04-02T17:46:28", + "TransactionId": 40200518, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 606, + "CustomerInfo": 98303302, + "PaymentType": "Debit Card" + }, + { + "Id": 5840, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2016-03-19T18:41:20", + "TransactionId": 30738829, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 443, + "CustomerInfo": 39219300, + "PaymentType": "Cash" + }, + { + "Id": 5841, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-10-14T12:29:40", + "TransactionId": 99185183, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 376, + "CustomerInfo": 61640416, + "PaymentType": "Cash" + }, + { + "Id": 5842, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2018-02-15T14:14:56", + "TransactionId": 83342904, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 147, + "CustomerInfo": 9388593, + "PaymentType": "Cash" + }, + { + "Id": 5843, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2018-07-07T10:50:44", + "TransactionId": 56366119, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 437, + "CustomerInfo": 59783226, + "PaymentType": "Credit Card" + }, + { + "Id": 5844, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-11-03T10:48:52", + "TransactionId": 64985692, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 133, + "CustomerInfo": 91174098, + "PaymentType": "Debit Card" + }, + { + "Id": 5845, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-10-11T10:14:27", + "TransactionId": 79034803, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 65, + "CustomerInfo": 41520759, + "PaymentType": "Debit Card" + }, + { + "Id": 5846, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-03-31T15:03:45", + "TransactionId": 69052021, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 121, + "CustomerInfo": 9943775, + "PaymentType": "Credit Card" + }, + { + "Id": 5847, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2016-04-11T16:08:33", + "TransactionId": 35365439, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 19, + "CustomerInfo": 3431269, + "PaymentType": "Debit Card" + }, + { + "Id": 5848, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2016-03-09T12:50:07", + "TransactionId": 4123480, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 262, + "CustomerInfo": 15448867, + "PaymentType": "Cash" + }, + { + "Id": 5849, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-09-03T07:34:54", + "TransactionId": 90286554, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 135, + "CustomerInfo": 38173205, + "PaymentType": "Credit Card" + }, + { + "Id": 5850, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-12-22T13:42:32", + "TransactionId": 9335794, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 937, + "CustomerInfo": 37327393, + "PaymentType": "Debit Card" + }, + { + "Id": 5851, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-02-06T18:33:07", + "TransactionId": 69725863, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 689, + "CustomerInfo": 16177592, + "PaymentType": "Cash" + }, + { + "Id": 5852, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-04-27T15:49:06", + "TransactionId": 62185410, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 960, + "CustomerInfo": 10734250, + "PaymentType": "Debit Card" + }, + { + "Id": 5853, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2019-02-06T07:16:45", + "TransactionId": 77453505, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 398, + "CustomerInfo": 48748958, + "PaymentType": "Debit Card" + }, + { + "Id": 5854, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-01-22T14:46:45", + "TransactionId": 5720377, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 393, + "CustomerInfo": 88616276, + "PaymentType": "Cash" + }, + { + "Id": 5855, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-06-30T18:19:35", + "TransactionId": 48986746, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 21, + "CustomerInfo": 20078831, + "PaymentType": "Cash" + }, + { + "Id": 5856, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-09-30T07:59:57", + "TransactionId": 46517267, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 893, + "CustomerInfo": 93949531, + "PaymentType": "Cash" + }, + { + "Id": 5857, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2019-07-03T16:13:35", + "TransactionId": 55362012, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 454, + "CustomerInfo": 584354, + "PaymentType": "Cash" + }, + { + "Id": 5858, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-08-02T08:27:53", + "TransactionId": 28100771, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 80777237, + "PaymentType": "Cash" + }, + { + "Id": 5859, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-06-09T09:23:37", + "TransactionId": 32802959, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 661, + "CustomerInfo": 55635257, + "PaymentType": "Credit Card" + }, + { + "Id": 5860, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-10-06T07:04:31", + "TransactionId": 59981217, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 360, + "CustomerInfo": 50320528, + "PaymentType": "Cash" + }, + { + "Id": 5861, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-03-16T07:09:16", + "TransactionId": 54228721, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 979, + "CustomerInfo": 39367954, + "PaymentType": "Debit Card" + }, + { + "Id": 5862, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-12-06T15:12:23", + "TransactionId": 63440111, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 669, + "CustomerInfo": 16221459, + "PaymentType": "Credit Card" + }, + { + "Id": 5863, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-01-01T19:52:02", + "TransactionId": 11796886, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 515, + "CustomerInfo": 24898708, + "PaymentType": "Credit Card" + }, + { + "Id": 5864, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-04-30T11:52:22", + "TransactionId": 82342919, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 799, + "CustomerInfo": 94332272, + "PaymentType": "Credit Card" + }, + { + "Id": 5865, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2016-01-10T09:09:30", + "TransactionId": 38619533, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 5, + "CustomerInfo": 89700412, + "PaymentType": "Debit Card" + }, + { + "Id": 5866, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-07-19T13:24:58", + "TransactionId": 10238590, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 564, + "CustomerInfo": 90202971, + "PaymentType": "Credit Card" + }, + { + "Id": 5867, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2017-06-16T18:05:28", + "TransactionId": 32995524, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 84, + "CustomerInfo": 42102523, + "PaymentType": "Cash" + }, + { + "Id": 5868, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2016-11-17T12:31:24", + "TransactionId": 99637105, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 267, + "CustomerInfo": 70082704, + "PaymentType": "Credit Card" + }, + { + "Id": 5869, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2018-02-17T19:33:10", + "TransactionId": 41285007, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 675, + "CustomerInfo": 22206028, + "PaymentType": "Cash" + }, + { + "Id": 5870, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-12-03T12:17:17", + "TransactionId": 57717669, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 179, + "CustomerInfo": 45256221, + "PaymentType": "Debit Card" + }, + { + "Id": 5871, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2019-03-19T10:04:57", + "TransactionId": 97020142, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 939, + "CustomerInfo": 23294773, + "PaymentType": "Debit Card" + }, + { + "Id": 5872, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-07-16T17:40:25", + "TransactionId": 3658339, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 2733301, + "PaymentType": "Cash" + }, + { + "Id": 5873, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2019-08-30T19:07:41", + "TransactionId": 29980445, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 176, + "CustomerInfo": 84833981, + "PaymentType": "Cash" + }, + { + "Id": 5874, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-04-15T12:15:42", + "TransactionId": 44222144, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 930, + "CustomerInfo": 45722199, + "PaymentType": "Cash" + }, + { + "Id": 5875, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2016-11-21T14:47:37", + "TransactionId": 49046907, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 635, + "CustomerInfo": 98597477, + "PaymentType": "Credit Card" + }, + { + "Id": 5876, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-12-22T16:32:44", + "TransactionId": 44848165, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 808, + "CustomerInfo": 81089747, + "PaymentType": "Debit Card" + }, + { + "Id": 5877, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-01-20T07:39:48", + "TransactionId": 51824598, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 41, + "CustomerInfo": 78519938, + "PaymentType": "Cash" + }, + { + "Id": 5878, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-06-25T18:27:48", + "TransactionId": 50484107, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 77, + "CustomerInfo": 66470859, + "PaymentType": "Debit Card" + }, + { + "Id": 5879, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-07-25T12:40:11", + "TransactionId": 90573458, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 646, + "CustomerInfo": 26556086, + "PaymentType": "Debit Card" + }, + { + "Id": 5880, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2018-02-23T14:23:51", + "TransactionId": 54020971, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 744, + "CustomerInfo": 87993187, + "PaymentType": "Cash" + }, + { + "Id": 5881, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2017-09-29T13:29:08", + "TransactionId": 50028244, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 451, + "CustomerInfo": 30751788, + "PaymentType": "Cash" + }, + { + "Id": 5882, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2017-10-20T13:40:57", + "TransactionId": 35417994, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 8523173, + "PaymentType": "Debit Card" + }, + { + "Id": 5883, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-10-02T14:37:15", + "TransactionId": 86726586, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 515, + "CustomerInfo": 13883113, + "PaymentType": "Debit Card" + }, + { + "Id": 5884, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2017-06-03T15:45:13", + "TransactionId": 51671326, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 732, + "CustomerInfo": 63620552, + "PaymentType": "Credit Card" + }, + { + "Id": 5885, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-08-06T07:32:27", + "TransactionId": 41224847, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 518, + "CustomerInfo": 3147387, + "PaymentType": "Credit Card" + }, + { + "Id": 5886, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2017-03-05T07:46:16", + "TransactionId": 26323123, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 809, + "CustomerInfo": 19326380, + "PaymentType": "Credit Card" + }, + { + "Id": 5887, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2016-06-21T07:34:19", + "TransactionId": 79267192, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 668, + "CustomerInfo": 33671847, + "PaymentType": "Credit Card" + }, + { + "Id": 5888, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-07-19T12:18:43", + "TransactionId": 30982841, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 972, + "CustomerInfo": 42013142, + "PaymentType": "Debit Card" + }, + { + "Id": 5889, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-01-24T08:30:55", + "TransactionId": 43607694, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 92409026, + "PaymentType": "Cash" + }, + { + "Id": 5890, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-04-11T09:08:56", + "TransactionId": 58158740, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 11, + "CustomerInfo": 65728386, + "PaymentType": "Debit Card" + }, + { + "Id": 5891, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-03-02T13:41:31", + "TransactionId": 25272767, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 772, + "CustomerInfo": 93462427, + "PaymentType": "Cash" + }, + { + "Id": 5892, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2019-01-31T12:26:12", + "TransactionId": 69876684, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 944, + "CustomerInfo": 49850447, + "PaymentType": "Debit Card" + }, + { + "Id": 5893, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2019-01-01T09:59:28", + "TransactionId": 51803594, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 940, + "CustomerInfo": 83917281, + "PaymentType": "Debit Card" + }, + { + "Id": 5894, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-03-16T18:43:55", + "TransactionId": 15134662, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 473, + "CustomerInfo": 62831650, + "PaymentType": "Credit Card" + }, + { + "Id": 5895, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2017-01-14T11:07:35", + "TransactionId": 6404421, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 203, + "CustomerInfo": 28349019, + "PaymentType": "Debit Card" + }, + { + "Id": 5896, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-10-22T14:06:09", + "TransactionId": 27103983, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 213, + "CustomerInfo": 34590281, + "PaymentType": "Cash" + }, + { + "Id": 5897, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2016-10-29T17:10:54", + "TransactionId": 95257750, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 324, + "CustomerInfo": 16971657, + "PaymentType": "Credit Card" + }, + { + "Id": 5898, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2018-09-25T18:40:02", + "TransactionId": 85032420, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 312, + "CustomerInfo": 69922976, + "PaymentType": "Credit Card" + }, + { + "Id": 5899, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2017-04-03T09:07:21", + "TransactionId": 6209284, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 637, + "CustomerInfo": 8098020, + "PaymentType": "Cash" + }, + { + "Id": 5900, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2018-11-05T11:10:11", + "TransactionId": 38072772, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 354, + "CustomerInfo": 56292688, + "PaymentType": "Debit Card" + }, + { + "Id": 5901, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-05-10T18:51:42", + "TransactionId": 85876362, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 223, + "CustomerInfo": 70190908, + "PaymentType": "Cash" + }, + { + "Id": 5902, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2016-07-13T13:39:56", + "TransactionId": 20201632, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 820, + "CustomerInfo": 89886018, + "PaymentType": "Debit Card" + }, + { + "Id": 5903, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-12-11T19:35:46", + "TransactionId": 17496623, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 134, + "CustomerInfo": 54983509, + "PaymentType": "Debit Card" + }, + { + "Id": 5904, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2016-08-03T15:06:12", + "TransactionId": 1036416, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 350, + "CustomerInfo": 65192681, + "PaymentType": "Debit Card" + }, + { + "Id": 5905, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-08-22T11:42:26", + "TransactionId": 6160213, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 130, + "CustomerInfo": 44872003, + "PaymentType": "Credit Card" + }, + { + "Id": 5906, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2019-02-27T09:28:57", + "TransactionId": 97708827, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 891, + "CustomerInfo": 58702896, + "PaymentType": "Credit Card" + }, + { + "Id": 5907, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2018-11-02T12:13:58", + "TransactionId": 1239240, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 720, + "CustomerInfo": 85776345, + "PaymentType": "Debit Card" + }, + { + "Id": 5908, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-05-01T09:30:40", + "TransactionId": 54748650, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 94, + "CustomerInfo": 41607245, + "PaymentType": "Debit Card" + }, + { + "Id": 5909, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-06-16T15:33:07", + "TransactionId": 35048673, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 119, + "CustomerInfo": 65418878, + "PaymentType": "Credit Card" + }, + { + "Id": 5910, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-05-22T12:29:48", + "TransactionId": 36314805, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 98, + "CustomerInfo": 87783918, + "PaymentType": "Cash" + }, + { + "Id": 5911, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-04-08T16:29:00", + "TransactionId": 63291826, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 771, + "CustomerInfo": 20919629, + "PaymentType": "Credit Card" + }, + { + "Id": 5912, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-03-13T19:35:46", + "TransactionId": 86279327, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 723, + "CustomerInfo": 78025421, + "PaymentType": "Debit Card" + }, + { + "Id": 5913, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2016-04-25T10:32:44", + "TransactionId": 42686707, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 879, + "CustomerInfo": 31865258, + "PaymentType": "Credit Card" + }, + { + "Id": 5914, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-07-23T11:36:58", + "TransactionId": 73038088, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 14, + "CustomerInfo": 72493646, + "PaymentType": "Debit Card" + }, + { + "Id": 5915, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-08-16T17:53:31", + "TransactionId": 29883546, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 834, + "CustomerInfo": 45186917, + "PaymentType": "Debit Card" + }, + { + "Id": 5916, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-12-02T11:56:59", + "TransactionId": 81533047, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 147, + "CustomerInfo": 30438678, + "PaymentType": "Debit Card" + }, + { + "Id": 5917, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2016-02-01T08:50:38", + "TransactionId": 55445104, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 392, + "CustomerInfo": 10252931, + "PaymentType": "Debit Card" + }, + { + "Id": 5918, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-03-12T19:37:38", + "TransactionId": 88264737, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 138, + "CustomerInfo": 65703607, + "PaymentType": "Credit Card" + }, + { + "Id": 5919, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2019-06-09T14:23:17", + "TransactionId": 31972924, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 800, + "CustomerInfo": 64313268, + "PaymentType": "Cash" + }, + { + "Id": 5920, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2018-02-27T17:01:49", + "TransactionId": 90678973, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 448, + "CustomerInfo": 74252301, + "PaymentType": "Credit Card" + }, + { + "Id": 5921, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2016-04-21T17:21:33", + "TransactionId": 46554827, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 412, + "CustomerInfo": 65353339, + "PaymentType": "Credit Card" + }, + { + "Id": 5922, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2017-07-13T18:03:36", + "TransactionId": 14314091, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 252, + "CustomerInfo": 59843205, + "PaymentType": "Debit Card" + }, + { + "Id": 5923, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-03-25T11:53:14", + "TransactionId": 70314073, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 395, + "CustomerInfo": 13238156, + "PaymentType": "Credit Card" + }, + { + "Id": 5924, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2019-02-04T17:56:59", + "TransactionId": 11939132, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 372, + "CustomerInfo": 1318222, + "PaymentType": "Debit Card" + }, + { + "Id": 5925, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2017-10-24T13:36:55", + "TransactionId": 59327932, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 952, + "CustomerInfo": 29791871, + "PaymentType": "Credit Card" + }, + { + "Id": 5926, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2018-12-02T09:54:09", + "TransactionId": 34782430, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 874, + "CustomerInfo": 35628365, + "PaymentType": "Cash" + }, + { + "Id": 5927, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-08-24T15:05:11", + "TransactionId": 75782948, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 88630823, + "PaymentType": "Cash" + }, + { + "Id": 5928, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2019-09-19T08:37:49", + "TransactionId": 68014844, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 24357097, + "PaymentType": "Debit Card" + }, + { + "Id": 5929, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-04-01T11:46:19", + "TransactionId": 96582557, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 136, + "CustomerInfo": 18278857, + "PaymentType": "Cash" + }, + { + "Id": 5930, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2019-04-25T11:21:33", + "TransactionId": 93070591, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 402, + "CustomerInfo": 67375550, + "PaymentType": "Cash" + }, + { + "Id": 5931, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-06-22T09:52:51", + "TransactionId": 30157038, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 830, + "CustomerInfo": 52108809, + "PaymentType": "Cash" + }, + { + "Id": 5932, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2019-09-02T16:51:45", + "TransactionId": 19457361, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 978, + "CustomerInfo": 25280178, + "PaymentType": "Credit Card" + }, + { + "Id": 5933, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2019-01-25T18:03:01", + "TransactionId": 37045074, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 935, + "CustomerInfo": 55132827, + "PaymentType": "Credit Card" + }, + { + "Id": 5934, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-12-26T10:34:36", + "TransactionId": 11465060, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 477, + "CustomerInfo": 42060548, + "PaymentType": "Credit Card" + }, + { + "Id": 5935, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2016-04-13T09:12:06", + "TransactionId": 15714848, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 628, + "CustomerInfo": 79412248, + "PaymentType": "Debit Card" + }, + { + "Id": 5936, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2019-08-11T08:57:07", + "TransactionId": 27212473, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 294, + "CustomerInfo": 80601294, + "PaymentType": "Cash" + }, + { + "Id": 5937, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-11-07T07:33:27", + "TransactionId": 38933478, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 507, + "CustomerInfo": 9322234, + "PaymentType": "Cash" + }, + { + "Id": 5938, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2017-03-19T07:57:39", + "TransactionId": 57112568, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 452, + "CustomerInfo": 46534577, + "PaymentType": "Cash" + }, + { + "Id": 5939, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2018-04-27T15:47:40", + "TransactionId": 83332488, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 668, + "CustomerInfo": 59177134, + "PaymentType": "Cash" + }, + { + "Id": 5940, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-12-03T08:12:46", + "TransactionId": 74759887, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 71478835, + "PaymentType": "Cash" + }, + { + "Id": 5941, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2017-03-19T17:33:56", + "TransactionId": 38439733, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 296, + "CustomerInfo": 43274868, + "PaymentType": "Credit Card" + }, + { + "Id": 5942, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-05-17T19:11:17", + "TransactionId": 61439668, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 493, + "CustomerInfo": 56817877, + "PaymentType": "Cash" + }, + { + "Id": 5943, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2016-11-05T18:39:36", + "TransactionId": 45663593, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 37, + "CustomerInfo": 61606806, + "PaymentType": "Credit Card" + }, + { + "Id": 5944, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-08-19T09:52:08", + "TransactionId": 98337703, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 113, + "CustomerInfo": 92822667, + "PaymentType": "Debit Card" + }, + { + "Id": 5945, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-09-20T17:41:51", + "TransactionId": 12899347, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 659, + "CustomerInfo": 45810539, + "PaymentType": "Debit Card" + }, + { + "Id": 5946, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-11-27T11:36:32", + "TransactionId": 80101446, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 646, + "CustomerInfo": 92000484, + "PaymentType": "Debit Card" + }, + { + "Id": 5947, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-09-30T12:02:53", + "TransactionId": 60501663, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 61294876, + "PaymentType": "Debit Card" + }, + { + "Id": 5948, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2019-07-13T11:05:51", + "TransactionId": 86832055, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 87, + "CustomerInfo": 22636431, + "PaymentType": "Credit Card" + }, + { + "Id": 5949, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2016-03-15T15:53:25", + "TransactionId": 75359030, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 50, + "CustomerInfo": 64570527, + "PaymentType": "Credit Card" + }, + { + "Id": 5950, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-06-29T11:29:20", + "TransactionId": 10435040, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 696, + "CustomerInfo": 12891688, + "PaymentType": "Cash" + }, + { + "Id": 5951, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-03-16T16:15:01", + "TransactionId": 42064562, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 247, + "CustomerInfo": 1322267, + "PaymentType": "Credit Card" + }, + { + "Id": 5952, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-04-14T12:03:27", + "TransactionId": 978501, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 600, + "CustomerInfo": 13781400, + "PaymentType": "Credit Card" + }, + { + "Id": 5953, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2016-12-10T15:25:21", + "TransactionId": 11215108, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 120, + "CustomerInfo": 97721310, + "PaymentType": "Cash" + }, + { + "Id": 5954, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2019-02-24T11:16:13", + "TransactionId": 53877585, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 804, + "CustomerInfo": 19507596, + "PaymentType": "Credit Card" + }, + { + "Id": 5955, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-12-12T19:49:00", + "TransactionId": 72134258, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 613, + "CustomerInfo": 65442036, + "PaymentType": "Cash" + }, + { + "Id": 5956, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2016-08-07T14:47:11", + "TransactionId": 64143783, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 201, + "CustomerInfo": 19246881, + "PaymentType": "Debit Card" + }, + { + "Id": 5957, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-12-26T12:27:04", + "TransactionId": 86382391, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 754, + "CustomerInfo": 97617422, + "PaymentType": "Debit Card" + }, + { + "Id": 5958, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2018-04-24T10:01:38", + "TransactionId": 33341576, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 331, + "CustomerInfo": 46223544, + "PaymentType": "Cash" + }, + { + "Id": 5959, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2016-10-25T17:01:06", + "TransactionId": 80850171, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 3277539, + "PaymentType": "Cash" + }, + { + "Id": 5960, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-11-29T11:53:14", + "TransactionId": 31794437, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 98, + "CustomerInfo": 63429557, + "PaymentType": "Debit Card" + }, + { + "Id": 5961, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-03-22T19:22:31", + "TransactionId": 24508311, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 357, + "CustomerInfo": 24778919, + "PaymentType": "Cash" + }, + { + "Id": 5962, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2019-03-02T11:30:20", + "TransactionId": 73786932, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 407, + "CustomerInfo": 98188071, + "PaymentType": "Debit Card" + }, + { + "Id": 5963, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-10-09T11:06:17", + "TransactionId": 80635819, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 540, + "CustomerInfo": 21545675, + "PaymentType": "Cash" + }, + { + "Id": 5964, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-11-15T13:31:44", + "TransactionId": 59643044, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 333, + "CustomerInfo": 7611746, + "PaymentType": "Credit Card" + }, + { + "Id": 5965, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2019-02-22T12:55:44", + "TransactionId": 7703242, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 946, + "CustomerInfo": 5405946, + "PaymentType": "Cash" + }, + { + "Id": 5966, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-06-17T19:17:46", + "TransactionId": 18611636, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 866, + "CustomerInfo": 31569013, + "PaymentType": "Cash" + }, + { + "Id": 5967, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-05-03T16:49:00", + "TransactionId": 61056994, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 693, + "CustomerInfo": 38362677, + "PaymentType": "Debit Card" + }, + { + "Id": 5968, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2018-09-25T12:47:05", + "TransactionId": 7972470, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 876, + "CustomerInfo": 3665383, + "PaymentType": "Credit Card" + }, + { + "Id": 5969, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2017-05-08T11:12:46", + "TransactionId": 24173529, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 619, + "CustomerInfo": 32982596, + "PaymentType": "Debit Card" + }, + { + "Id": 5970, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2018-07-05T19:40:13", + "TransactionId": 26668144, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 280, + "CustomerInfo": 44940394, + "PaymentType": "Debit Card" + }, + { + "Id": 5971, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-02-04T12:56:53", + "TransactionId": 66333163, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 680, + "CustomerInfo": 73554600, + "PaymentType": "Cash" + }, + { + "Id": 5972, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-04-07T16:13:26", + "TransactionId": 9810977, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 738, + "CustomerInfo": 20102486, + "PaymentType": "Credit Card" + }, + { + "Id": 5973, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-03-02T17:47:37", + "TransactionId": 88444483, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 217, + "CustomerInfo": 11608664, + "PaymentType": "Credit Card" + }, + { + "Id": 5974, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2018-07-25T17:18:23", + "TransactionId": 45290021, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 122, + "CustomerInfo": 51893324, + "PaymentType": "Debit Card" + }, + { + "Id": 5975, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-07-07T17:28:11", + "TransactionId": 13266765, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 795, + "CustomerInfo": 47242141, + "PaymentType": "Cash" + }, + { + "Id": 5976, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2019-06-23T09:49:06", + "TransactionId": 83318156, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 189, + "CustomerInfo": 63511844, + "PaymentType": "Debit Card" + }, + { + "Id": 5977, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2016-05-04T16:33:19", + "TransactionId": 20582426, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 682, + "CustomerInfo": 47050375, + "PaymentType": "Credit Card" + }, + { + "Id": 5978, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-05-21T12:29:31", + "TransactionId": 98928566, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 32, + "CustomerInfo": 92755994, + "PaymentType": "Debit Card" + }, + { + "Id": 5979, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-08-13T18:55:09", + "TransactionId": 90988932, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 313, + "CustomerInfo": 40526141, + "PaymentType": "Debit Card" + }, + { + "Id": 5980, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-08-18T08:52:13", + "TransactionId": 37228558, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 542, + "CustomerInfo": 59976096, + "PaymentType": "Debit Card" + }, + { + "Id": 5981, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2019-06-15T13:07:41", + "TransactionId": 57054821, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 641, + "CustomerInfo": 12602565, + "PaymentType": "Credit Card" + }, + { + "Id": 5982, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2018-08-21T18:42:03", + "TransactionId": 87875209, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 14, + "CustomerInfo": 39093717, + "PaymentType": "Cash" + }, + { + "Id": 5983, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2016-01-24T10:32:10", + "TransactionId": 73355963, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 977, + "CustomerInfo": 10396638, + "PaymentType": "Debit Card" + }, + { + "Id": 5984, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2016-11-11T12:20:18", + "TransactionId": 10619167, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 530, + "CustomerInfo": 37951099, + "PaymentType": "Cash" + }, + { + "Id": 5985, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2018-07-01T09:47:23", + "TransactionId": 57426384, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 544, + "CustomerInfo": 5095119, + "PaymentType": "Cash" + }, + { + "Id": 5986, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2019-11-07T17:03:50", + "TransactionId": 53290803, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 682, + "CustomerInfo": 46484085, + "PaymentType": "Debit Card" + }, + { + "Id": 5987, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2017-09-16T12:42:20", + "TransactionId": 46050304, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 302, + "CustomerInfo": 52220931, + "PaymentType": "Credit Card" + }, + { + "Id": 5988, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2016-09-23T19:43:41", + "TransactionId": 1753993, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 105, + "CustomerInfo": 58185725, + "PaymentType": "Debit Card" + }, + { + "Id": 5989, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-12-11T15:08:38", + "TransactionId": 35482892, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 615, + "CustomerInfo": 25758907, + "PaymentType": "Debit Card" + }, + { + "Id": 5990, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-03-10T17:18:14", + "TransactionId": 352426, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 377, + "CustomerInfo": 55761876, + "PaymentType": "Credit Card" + }, + { + "Id": 5991, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2016-10-11T10:26:15", + "TransactionId": 67988626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 171, + "CustomerInfo": 57415443, + "PaymentType": "Credit Card" + }, + { + "Id": 5992, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2016-08-03T12:01:00", + "TransactionId": 57490369, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 600, + "CustomerInfo": 47541285, + "PaymentType": "Debit Card" + }, + { + "Id": 5993, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2016-01-23T17:18:06", + "TransactionId": 3927849, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 70, + "CustomerInfo": 82136873, + "PaymentType": "Credit Card" + }, + { + "Id": 5994, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2016-06-24T17:23:34", + "TransactionId": 63351282, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 15, + "CustomerInfo": 44474401, + "PaymentType": "Cash" + }, + { + "Id": 5995, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-05-19T13:04:48", + "TransactionId": 29130224, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 995, + "CustomerInfo": 59833579, + "PaymentType": "Cash" + }, + { + "Id": 5996, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2016-07-06T08:08:36", + "TransactionId": 27700955, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 164, + "CustomerInfo": 65216199, + "PaymentType": "Debit Card" + }, + { + "Id": 5997, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-12-07T10:24:23", + "TransactionId": 262084, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 742, + "CustomerInfo": 86857950, + "PaymentType": "Credit Card" + }, + { + "Id": 5998, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-04-17T19:56:12", + "TransactionId": 80881031, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 437, + "CustomerInfo": 85143103, + "PaymentType": "Credit Card" + }, + { + "Id": 5999, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2019-12-01T09:46:13", + "TransactionId": 65907869, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 511, + "CustomerInfo": 37702596, + "PaymentType": "Debit Card" + }, + { + "Id": 6000, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2018-04-23T18:12:14", + "TransactionId": 51918868, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 461, + "CustomerInfo": 67892270, + "PaymentType": "Cash" + }, + { + "Id": 6001, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-06-01T15:46:31", + "TransactionId": 93764867, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 721, + "CustomerInfo": 27579903, + "PaymentType": "Debit Card" + }, + { + "Id": 6002, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-11-15T17:06:26", + "TransactionId": 14185874, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 270, + "CustomerInfo": 69833083, + "PaymentType": "Cash" + }, + { + "Id": 6003, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2017-11-18T08:15:13", + "TransactionId": 95589853, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 906, + "CustomerInfo": 71306555, + "PaymentType": "Credit Card" + }, + { + "Id": 6004, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-05-18T09:42:29", + "TransactionId": 35925325, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 909, + "CustomerInfo": 63954328, + "PaymentType": "Cash" + }, + { + "Id": 6005, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2017-11-01T13:42:49", + "TransactionId": 56175230, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 334, + "CustomerInfo": 39382887, + "PaymentType": "Cash" + }, + { + "Id": 6006, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2019-03-19T15:19:09", + "TransactionId": 16624828, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 400, + "CustomerInfo": 33972995, + "PaymentType": "Credit Card" + }, + { + "Id": 6007, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2019-09-20T09:34:51", + "TransactionId": 46130927, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 832, + "CustomerInfo": 52655674, + "PaymentType": "Cash" + }, + { + "Id": 6008, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2019-11-13T19:54:03", + "TransactionId": 88853372, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 486, + "CustomerInfo": 92626558, + "PaymentType": "Credit Card" + }, + { + "Id": 6009, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-11-27T09:37:00", + "TransactionId": 66553483, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 281, + "CustomerInfo": 48052575, + "PaymentType": "Credit Card" + }, + { + "Id": 6010, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2017-03-24T09:43:12", + "TransactionId": 5565955, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 521, + "CustomerInfo": 42325486, + "PaymentType": "Debit Card" + }, + { + "Id": 6011, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-04-23T18:32:50", + "TransactionId": 99045381, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 157, + "CustomerInfo": 60556098, + "PaymentType": "Cash" + }, + { + "Id": 6012, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2017-03-07T17:18:23", + "TransactionId": 61553988, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 167, + "CustomerInfo": 71051916, + "PaymentType": "Debit Card" + }, + { + "Id": 6013, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-11-09T14:01:24", + "TransactionId": 53261467, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 406, + "CustomerInfo": 95755068, + "PaymentType": "Debit Card" + }, + { + "Id": 6014, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2018-02-04T15:12:49", + "TransactionId": 10746119, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 766, + "CustomerInfo": 9318962, + "PaymentType": "Credit Card" + }, + { + "Id": 6015, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-10-31T10:38:12", + "TransactionId": 35519117, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 511, + "CustomerInfo": 81697566, + "PaymentType": "Debit Card" + }, + { + "Id": 6016, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-06-03T12:32:07", + "TransactionId": 30923540, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 997, + "CustomerInfo": 1302506, + "PaymentType": "Debit Card" + }, + { + "Id": 6017, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-12-18T12:45:39", + "TransactionId": 56738289, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 322, + "CustomerInfo": 45600713, + "PaymentType": "Debit Card" + }, + { + "Id": 6018, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2017-01-06T09:18:52", + "TransactionId": 54777039, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 963, + "CustomerInfo": 65710737, + "PaymentType": "Cash" + }, + { + "Id": 6019, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-05-26T12:55:26", + "TransactionId": 67316032, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 851, + "CustomerInfo": 53778884, + "PaymentType": "Credit Card" + }, + { + "Id": 6020, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2016-02-01T14:59:51", + "TransactionId": 7583865, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 50140945, + "PaymentType": "Debit Card" + }, + { + "Id": 6021, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2018-01-15T15:47:31", + "TransactionId": 98994314, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 111, + "CustomerInfo": 4136376, + "PaymentType": "Cash" + }, + { + "Id": 6022, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-02-21T07:19:47", + "TransactionId": 95393926, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 87, + "CustomerInfo": 31697098, + "PaymentType": "Debit Card" + }, + { + "Id": 6023, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-12-28T18:55:44", + "TransactionId": 27248560, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 91403555, + "PaymentType": "Debit Card" + }, + { + "Id": 6024, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-08-09T09:21:19", + "TransactionId": 91975042, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 96, + "CustomerInfo": 31370005, + "PaymentType": "Cash" + }, + { + "Id": 6025, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-12-03T07:55:55", + "TransactionId": 45362586, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 862, + "CustomerInfo": 71048649, + "PaymentType": "Credit Card" + }, + { + "Id": 6026, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2018-10-24T10:00:37", + "TransactionId": 27160454, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 606, + "CustomerInfo": 84257587, + "PaymentType": "Cash" + }, + { + "Id": 6027, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-06-07T11:26:01", + "TransactionId": 27324211, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 625, + "CustomerInfo": 68714982, + "PaymentType": "Cash" + }, + { + "Id": 6028, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2018-06-26T13:16:19", + "TransactionId": 49212626, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 481, + "CustomerInfo": 29034615, + "PaymentType": "Debit Card" + }, + { + "Id": 6029, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2019-01-09T07:30:17", + "TransactionId": 3132525, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 983, + "CustomerInfo": 55407520, + "PaymentType": "Credit Card" + }, + { + "Id": 6030, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2019-11-03T14:16:22", + "TransactionId": 35649395, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 768, + "CustomerInfo": 26584363, + "PaymentType": "Cash" + }, + { + "Id": 6031, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2019-10-21T10:26:07", + "TransactionId": 67895750, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 734, + "CustomerInfo": 98003401, + "PaymentType": "Cash" + }, + { + "Id": 6032, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-07-20T14:07:18", + "TransactionId": 21858764, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 966, + "CustomerInfo": 23066046, + "PaymentType": "Cash" + }, + { + "Id": 6033, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2018-06-26T13:58:48", + "TransactionId": 16841020, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 434, + "CustomerInfo": 71012444, + "PaymentType": "Credit Card" + }, + { + "Id": 6034, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-03-13T14:12:46", + "TransactionId": 90969519, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 891, + "CustomerInfo": 54499969, + "PaymentType": "Debit Card" + }, + { + "Id": 6035, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-07-04T11:45:53", + "TransactionId": 56710035, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 608, + "CustomerInfo": 73408990, + "PaymentType": "Cash" + }, + { + "Id": 6036, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-06-07T17:36:40", + "TransactionId": 8890957, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 105, + "CustomerInfo": 37925581, + "PaymentType": "Cash" + }, + { + "Id": 6037, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2016-09-13T16:43:58", + "TransactionId": 76874986, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 587, + "CustomerInfo": 25864722, + "PaymentType": "Credit Card" + }, + { + "Id": 6038, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-04-27T19:31:44", + "TransactionId": 16361275, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 66, + "CustomerInfo": 65254310, + "PaymentType": "Cash" + }, + { + "Id": 6039, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-12-16T15:01:00", + "TransactionId": 71441956, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 412, + "CustomerInfo": 11625125, + "PaymentType": "Credit Card" + }, + { + "Id": 6040, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-08-26T09:33:16", + "TransactionId": 77908951, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 178, + "CustomerInfo": 35596973, + "PaymentType": "Credit Card" + }, + { + "Id": 6041, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-04-21T12:44:04", + "TransactionId": 76677024, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 628, + "CustomerInfo": 59038524, + "PaymentType": "Cash" + }, + { + "Id": 6042, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-11-08T12:12:14", + "TransactionId": 45219072, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 869, + "CustomerInfo": 28916275, + "PaymentType": "Debit Card" + }, + { + "Id": 6043, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2018-09-29T13:40:05", + "TransactionId": 835566, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 141, + "CustomerInfo": 7777465, + "PaymentType": "Cash" + }, + { + "Id": 6044, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-08-29T11:11:02", + "TransactionId": 86547080, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 142, + "CustomerInfo": 75563751, + "PaymentType": "Cash" + }, + { + "Id": 6045, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2018-10-22T08:00:14", + "TransactionId": 17083470, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 505, + "CustomerInfo": 67334591, + "PaymentType": "Credit Card" + }, + { + "Id": 6046, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2017-10-11T07:46:16", + "TransactionId": 63065697, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 458, + "CustomerInfo": 71675451, + "PaymentType": "Debit Card" + }, + { + "Id": 6047, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2019-07-16T18:54:35", + "TransactionId": 6510605, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 87023844, + "PaymentType": "Credit Card" + }, + { + "Id": 6048, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2018-11-20T07:37:03", + "TransactionId": 39021200, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 852, + "CustomerInfo": 64504315, + "PaymentType": "Cash" + }, + { + "Id": 6049, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2019-09-15T08:27:19", + "TransactionId": 73783608, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 704, + "CustomerInfo": 49000468, + "PaymentType": "Debit Card" + }, + { + "Id": 6050, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-09-02T08:54:06", + "TransactionId": 96315722, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 280, + "CustomerInfo": 46371967, + "PaymentType": "Cash" + }, + { + "Id": 6051, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2019-08-05T14:13:55", + "TransactionId": 73398809, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 264, + "CustomerInfo": 56586914, + "PaymentType": "Cash" + }, + { + "Id": 6052, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2017-03-09T07:48:00", + "TransactionId": 59889569, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 173, + "CustomerInfo": 33970118, + "PaymentType": "Cash" + }, + { + "Id": 6053, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2017-06-10T15:15:07", + "TransactionId": 18681433, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 945, + "CustomerInfo": 79495960, + "PaymentType": "Cash" + }, + { + "Id": 6054, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2016-09-25T13:38:56", + "TransactionId": 72111065, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 60658612, + "PaymentType": "Debit Card" + }, + { + "Id": 6055, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2018-03-29T11:40:25", + "TransactionId": 92931484, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 406, + "CustomerInfo": 80942755, + "PaymentType": "Cash" + }, + { + "Id": 6056, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2019-05-08T19:19:38", + "TransactionId": 34546574, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 587, + "CustomerInfo": 98451484, + "PaymentType": "Debit Card" + }, + { + "Id": 6057, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2016-03-17T19:18:12", + "TransactionId": 65011564, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 982, + "CustomerInfo": 67444178, + "PaymentType": "Credit Card" + }, + { + "Id": 6058, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-06-10T15:35:25", + "TransactionId": 6063553, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 526, + "CustomerInfo": 85049637, + "PaymentType": "Credit Card" + }, + { + "Id": 6059, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2016-08-30T09:15:33", + "TransactionId": 95753958, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 228, + "CustomerInfo": 71892255, + "PaymentType": "Cash" + }, + { + "Id": 6060, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-01-12T16:08:41", + "TransactionId": 3026168, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 344, + "CustomerInfo": 61337521, + "PaymentType": "Debit Card" + }, + { + "Id": 6061, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2017-06-15T14:54:32", + "TransactionId": 63200524, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 486, + "CustomerInfo": 59065657, + "PaymentType": "Credit Card" + }, + { + "Id": 6062, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-06-09T19:22:31", + "TransactionId": 5502702, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 215, + "CustomerInfo": 76436432, + "PaymentType": "Cash" + }, + { + "Id": 6063, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-09-13T07:20:30", + "TransactionId": 43876836, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 403, + "CustomerInfo": 48936208, + "PaymentType": "Cash" + }, + { + "Id": 6064, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2019-03-15T08:51:30", + "TransactionId": 77529173, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 430, + "CustomerInfo": 29434625, + "PaymentType": "Cash" + }, + { + "Id": 6065, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-05-16T08:03:24", + "TransactionId": 56714840, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 265, + "CustomerInfo": 209132, + "PaymentType": "Credit Card" + }, + { + "Id": 6066, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2019-12-19T08:50:56", + "TransactionId": 17637278, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 57, + "CustomerInfo": 61039575, + "PaymentType": "Debit Card" + }, + { + "Id": 6067, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2018-09-27T14:07:44", + "TransactionId": 66008024, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 379, + "CustomerInfo": 23606018, + "PaymentType": "Credit Card" + }, + { + "Id": 6068, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-09-24T09:05:11", + "TransactionId": 51755550, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 18292649, + "PaymentType": "Debit Card" + }, + { + "Id": 6069, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-01-21T11:08:44", + "TransactionId": 54680599, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 347, + "CustomerInfo": 43551416, + "PaymentType": "Debit Card" + }, + { + "Id": 6070, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-04-14T18:12:58", + "TransactionId": 12853928, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 125, + "CustomerInfo": 61230538, + "PaymentType": "Cash" + }, + { + "Id": 6071, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2016-03-24T11:32:21", + "TransactionId": 14369917, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 836, + "CustomerInfo": 38929528, + "PaymentType": "Debit Card" + }, + { + "Id": 6072, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2016-08-24T14:00:32", + "TransactionId": 3272, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 839, + "CustomerInfo": 16509825, + "PaymentType": "Debit Card" + }, + { + "Id": 6073, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2016-05-12T12:32:59", + "TransactionId": 57293113, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 982, + "CustomerInfo": 82485980, + "PaymentType": "Cash" + }, + { + "Id": 6074, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-12-23T15:17:43", + "TransactionId": 64224653, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 995, + "CustomerInfo": 14856919, + "PaymentType": "Credit Card" + }, + { + "Id": 6075, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-03-18T14:14:56", + "TransactionId": 64262562, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 696, + "CustomerInfo": 8512882, + "PaymentType": "Cash" + }, + { + "Id": 6076, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-07-15T15:43:21", + "TransactionId": 77475484, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 631, + "CustomerInfo": 5445566, + "PaymentType": "Debit Card" + }, + { + "Id": 6077, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2018-11-19T10:15:01", + "TransactionId": 27177296, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 177, + "CustomerInfo": 1551808, + "PaymentType": "Cash" + }, + { + "Id": 6078, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-06-07T17:14:21", + "TransactionId": 73763513, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 103, + "CustomerInfo": 74733852, + "PaymentType": "Debit Card" + }, + { + "Id": 6079, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2019-03-31T14:08:36", + "TransactionId": 94851004, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 279, + "CustomerInfo": 44666106, + "PaymentType": "Cash" + }, + { + "Id": 6080, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-05-31T11:37:15", + "TransactionId": 66142181, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 171, + "CustomerInfo": 98697732, + "PaymentType": "Debit Card" + }, + { + "Id": 6081, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2019-07-18T12:23:28", + "TransactionId": 42662701, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 476, + "CustomerInfo": 48856477, + "PaymentType": "Debit Card" + }, + { + "Id": 6082, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2019-08-07T17:44:01", + "TransactionId": 1855362, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 976, + "CustomerInfo": 14300526, + "PaymentType": "Credit Card" + }, + { + "Id": 6083, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-02-06T19:11:25", + "TransactionId": 99361159, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 709, + "CustomerInfo": 13546452, + "PaymentType": "Cash" + }, + { + "Id": 6084, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-02-12T11:28:54", + "TransactionId": 90483766, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 665, + "CustomerInfo": 73454426, + "PaymentType": "Credit Card" + }, + { + "Id": 6085, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-06-29T13:38:38", + "TransactionId": 30063737, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 934, + "CustomerInfo": 98118920, + "PaymentType": "Credit Card" + }, + { + "Id": 6086, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-03-08T13:55:03", + "TransactionId": 370797, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 298, + "CustomerInfo": 62279812, + "PaymentType": "Credit Card" + }, + { + "Id": 6087, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2016-03-17T07:00:29", + "TransactionId": 21679573, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 29772647, + "PaymentType": "Debit Card" + }, + { + "Id": 6088, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2019-06-06T18:21:01", + "TransactionId": 90948653, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 94, + "CustomerInfo": 36946859, + "PaymentType": "Debit Card" + }, + { + "Id": 6089, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-03-30T10:30:26", + "TransactionId": 11684786, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 1, + "CustomerInfo": 15711996, + "PaymentType": "Debit Card" + }, + { + "Id": 6090, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2017-12-07T13:31:26", + "TransactionId": 52814241, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 50, + "CustomerInfo": 27017777, + "PaymentType": "Credit Card" + }, + { + "Id": 6091, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-07-30T09:30:32", + "TransactionId": 43139577, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 167, + "CustomerInfo": 20197937, + "PaymentType": "Credit Card" + }, + { + "Id": 6092, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2017-05-13T09:52:42", + "TransactionId": 35126129, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 416, + "CustomerInfo": 12345087, + "PaymentType": "Cash" + }, + { + "Id": 6093, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2016-04-18T10:13:35", + "TransactionId": 55068257, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 749, + "CustomerInfo": 4506419, + "PaymentType": "Credit Card" + }, + { + "Id": 6094, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-12-04T18:04:19", + "TransactionId": 9849248, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 142, + "CustomerInfo": 67345252, + "PaymentType": "Credit Card" + }, + { + "Id": 6095, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2017-08-28T16:12:35", + "TransactionId": 57232669, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 938, + "CustomerInfo": 97315714, + "PaymentType": "Debit Card" + }, + { + "Id": 6096, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-01-31T15:27:56", + "TransactionId": 27055091, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 765, + "CustomerInfo": 98696000, + "PaymentType": "Debit Card" + }, + { + "Id": 6097, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2019-04-08T11:26:10", + "TransactionId": 93358057, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 975, + "CustomerInfo": 15852427, + "PaymentType": "Debit Card" + }, + { + "Id": 6098, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2016-02-16T10:13:26", + "TransactionId": 14391635, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 640, + "CustomerInfo": 94290467, + "PaymentType": "Debit Card" + }, + { + "Id": 6099, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2019-08-15T19:47:17", + "TransactionId": 23658009, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 909, + "CustomerInfo": 78163778, + "PaymentType": "Debit Card" + }, + { + "Id": 6100, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2016-05-14T10:39:39", + "TransactionId": 29436193, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 484, + "CustomerInfo": 39181725, + "PaymentType": "Cash" + }, + { + "Id": 6101, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-06-19T16:31:26", + "TransactionId": 6816823, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 570, + "CustomerInfo": 89478854, + "PaymentType": "Credit Card" + }, + { + "Id": 6102, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-05-29T10:11:43", + "TransactionId": 24957045, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 767, + "CustomerInfo": 61898059, + "PaymentType": "Credit Card" + }, + { + "Id": 6103, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-07-23T11:22:42", + "TransactionId": 11047124, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 57, + "CustomerInfo": 58930673, + "PaymentType": "Credit Card" + }, + { + "Id": 6104, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2019-05-20T11:34:48", + "TransactionId": 38786191, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 534, + "CustomerInfo": 42622176, + "PaymentType": "Cash" + }, + { + "Id": 6105, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-09-23T12:51:24", + "TransactionId": 18629645, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 329, + "CustomerInfo": 80388249, + "PaymentType": "Credit Card" + }, + { + "Id": 6106, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2016-11-03T19:21:39", + "TransactionId": 35591053, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 945, + "CustomerInfo": 40386503, + "PaymentType": "Credit Card" + }, + { + "Id": 6107, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2016-09-09T16:54:46", + "TransactionId": 74867496, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 684, + "CustomerInfo": 87246412, + "PaymentType": "Credit Card" + }, + { + "Id": 6108, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2016-06-06T11:34:05", + "TransactionId": 36172238, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 831, + "CustomerInfo": 39691218, + "PaymentType": "Debit Card" + }, + { + "Id": 6109, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-09-26T07:17:11", + "TransactionId": 82943856, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 79978841, + "PaymentType": "Cash" + }, + { + "Id": 6110, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2018-08-07T07:10:42", + "TransactionId": 46398946, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 112, + "CustomerInfo": 4011333, + "PaymentType": "Cash" + }, + { + "Id": 6111, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-06-19T14:37:58", + "TransactionId": 47863245, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 788, + "CustomerInfo": 37159172, + "PaymentType": "Debit Card" + }, + { + "Id": 6112, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2019-08-26T07:28:51", + "TransactionId": 48791363, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 361, + "CustomerInfo": 82416872, + "PaymentType": "Debit Card" + }, + { + "Id": 6113, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-06-15T17:25:26", + "TransactionId": 16234065, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 646, + "CustomerInfo": 65803033, + "PaymentType": "Cash" + }, + { + "Id": 6114, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2019-08-22T16:39:48", + "TransactionId": 52961215, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 556, + "CustomerInfo": 48207320, + "PaymentType": "Debit Card" + }, + { + "Id": 6115, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-07-06T11:01:24", + "TransactionId": 38268434, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 195, + "CustomerInfo": 92772505, + "PaymentType": "Cash" + }, + { + "Id": 6116, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-03-30T10:18:37", + "TransactionId": 19119735, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 12, + "CustomerInfo": 91123310, + "PaymentType": "Credit Card" + }, + { + "Id": 6117, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2018-10-16T13:21:56", + "TransactionId": 48021809, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 46877784, + "PaymentType": "Debit Card" + }, + { + "Id": 6118, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-02-16T07:52:28", + "TransactionId": 3683088, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 315, + "CustomerInfo": 72544369, + "PaymentType": "Cash" + }, + { + "Id": 6119, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-05-18T18:13:58", + "TransactionId": 35085688, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 978, + "CustomerInfo": 60008112, + "PaymentType": "Cash" + }, + { + "Id": 6120, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-09-30T10:17:20", + "TransactionId": 17423066, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 382, + "CustomerInfo": 3861117, + "PaymentType": "Debit Card" + }, + { + "Id": 6121, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-03-10T16:25:06", + "TransactionId": 38942072, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 277, + "CustomerInfo": 86225788, + "PaymentType": "Credit Card" + }, + { + "Id": 6122, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2018-09-14T15:46:22", + "TransactionId": 47654808, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 523, + "CustomerInfo": 15242653, + "PaymentType": "Credit Card" + }, + { + "Id": 6123, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2019-09-27T19:04:39", + "TransactionId": 3500766, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 566, + "CustomerInfo": 64150184, + "PaymentType": "Debit Card" + }, + { + "Id": 6124, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2016-04-11T11:19:49", + "TransactionId": 33545033, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 128, + "CustomerInfo": 3826737, + "PaymentType": "Credit Card" + }, + { + "Id": 6125, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2018-11-11T15:08:21", + "TransactionId": 43838403, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 940, + "CustomerInfo": 67009920, + "PaymentType": "Debit Card" + }, + { + "Id": 6126, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2018-05-17T13:07:15", + "TransactionId": 412096, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 684, + "CustomerInfo": 85201380, + "PaymentType": "Cash" + }, + { + "Id": 6127, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2018-09-30T10:58:05", + "TransactionId": 57561480, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 608, + "CustomerInfo": 38272612, + "PaymentType": "Credit Card" + }, + { + "Id": 6128, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2019-10-07T13:49:09", + "TransactionId": 72820421, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 7744417, + "PaymentType": "Cash" + }, + { + "Id": 6129, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-04-07T09:52:25", + "TransactionId": 23528059, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 839, + "CustomerInfo": 77824865, + "PaymentType": "Debit Card" + }, + { + "Id": 6130, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-12-07T19:33:10", + "TransactionId": 66451021, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 920, + "CustomerInfo": 48624483, + "PaymentType": "Debit Card" + }, + { + "Id": 6131, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2016-01-15T08:05:43", + "TransactionId": 23937239, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 808, + "CustomerInfo": 57998607, + "PaymentType": "Cash" + }, + { + "Id": 6132, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-06-24T09:06:55", + "TransactionId": 26643877, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 24, + "CustomerInfo": 32517084, + "PaymentType": "Debit Card" + }, + { + "Id": 6133, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-01-18T08:33:30", + "TransactionId": 91517195, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 541, + "CustomerInfo": 51497233, + "PaymentType": "Credit Card" + }, + { + "Id": 6134, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2019-02-01T10:34:02", + "TransactionId": 6626227, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 348, + "CustomerInfo": 2716540, + "PaymentType": "Credit Card" + }, + { + "Id": 6135, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-06-05T10:46:08", + "TransactionId": 8362689, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 408, + "CustomerInfo": 20472303, + "PaymentType": "Debit Card" + }, + { + "Id": 6136, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-09-21T17:19:06", + "TransactionId": 74271503, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 793, + "CustomerInfo": 54725818, + "PaymentType": "Debit Card" + }, + { + "Id": 6137, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-06-08T10:20:38", + "TransactionId": 90730034, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 112, + "CustomerInfo": 55838964, + "PaymentType": "Credit Card" + }, + { + "Id": 6138, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-06-24T15:45:56", + "TransactionId": 90195174, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 727, + "CustomerInfo": 88097324, + "PaymentType": "Credit Card" + }, + { + "Id": 6139, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2016-07-01T08:25:00", + "TransactionId": 4639890, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 658, + "CustomerInfo": 26659284, + "PaymentType": "Debit Card" + }, + { + "Id": 6140, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-11-30T07:50:53", + "TransactionId": 81859289, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 462, + "CustomerInfo": 36969055, + "PaymentType": "Cash" + }, + { + "Id": 6141, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2019-02-19T08:34:13", + "TransactionId": 3451761, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 553, + "CustomerInfo": 72148991, + "PaymentType": "Debit Card" + }, + { + "Id": 6142, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-03-20T12:32:07", + "TransactionId": 91679009, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 332, + "CustomerInfo": 28585687, + "PaymentType": "Debit Card" + }, + { + "Id": 6143, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2018-04-21T15:34:51", + "TransactionId": 14923450, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 639, + "CustomerInfo": 83057492, + "PaymentType": "Cash" + }, + { + "Id": 6144, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2018-07-07T19:49:09", + "TransactionId": 72985361, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 591, + "CustomerInfo": 68886569, + "PaymentType": "Debit Card" + }, + { + "Id": 6145, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2019-09-27T13:30:43", + "TransactionId": 92033747, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 267, + "CustomerInfo": 55233223, + "PaymentType": "Cash" + }, + { + "Id": 6146, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-08-30T07:59:57", + "TransactionId": 43258009, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 189, + "CustomerInfo": 43224525, + "PaymentType": "Cash" + }, + { + "Id": 6147, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-09-15T11:55:49", + "TransactionId": 50218389, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 605, + "CustomerInfo": 15061514, + "PaymentType": "Cash" + }, + { + "Id": 6148, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2017-06-25T12:21:10", + "TransactionId": 84917217, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 41, + "CustomerInfo": 34872866, + "PaymentType": "Credit Card" + }, + { + "Id": 6149, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2016-06-10T07:17:11", + "TransactionId": 75406505, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 77, + "CustomerInfo": 40123982, + "PaymentType": "Debit Card" + }, + { + "Id": 6150, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-09-06T08:43:44", + "TransactionId": 23509680, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 921, + "CustomerInfo": 41898681, + "PaymentType": "Debit Card" + }, + { + "Id": 6151, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2017-09-10T07:24:14", + "TransactionId": 71137753, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 916, + "CustomerInfo": 69836534, + "PaymentType": "Credit Card" + }, + { + "Id": 6152, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2019-04-13T19:39:22", + "TransactionId": 78237990, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 705, + "CustomerInfo": 12597246, + "PaymentType": "Credit Card" + }, + { + "Id": 6153, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2017-12-19T17:49:21", + "TransactionId": 93237999, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 948, + "CustomerInfo": 44182896, + "PaymentType": "Credit Card" + }, + { + "Id": 6154, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2019-06-11T14:56:24", + "TransactionId": 7580826, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 18, + "CustomerInfo": 30810529, + "PaymentType": "Cash" + }, + { + "Id": 6155, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2017-09-20T12:58:02", + "TransactionId": 16661718, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 434, + "CustomerInfo": 41783878, + "PaymentType": "Credit Card" + }, + { + "Id": 6156, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-04-01T18:31:32", + "TransactionId": 14051104, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 539, + "CustomerInfo": 27780944, + "PaymentType": "Cash" + }, + { + "Id": 6157, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2016-04-22T07:07:15", + "TransactionId": 9581467, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 104, + "CustomerInfo": 86957468, + "PaymentType": "Credit Card" + }, + { + "Id": 6158, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-08-02T09:27:13", + "TransactionId": 15260360, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 665, + "CustomerInfo": 71641508, + "PaymentType": "Credit Card" + }, + { + "Id": 6159, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-04-10T12:00:52", + "TransactionId": 95661252, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 68, + "CustomerInfo": 60328304, + "PaymentType": "Credit Card" + }, + { + "Id": 6160, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-11-11T08:42:43", + "TransactionId": 97584227, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 622, + "CustomerInfo": 20282295, + "PaymentType": "Debit Card" + }, + { + "Id": 6161, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-10-14T11:05:25", + "TransactionId": 55715282, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 939, + "CustomerInfo": 13741631, + "PaymentType": "Debit Card" + }, + { + "Id": 6162, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2019-08-22T08:31:03", + "TransactionId": 86954918, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 994, + "CustomerInfo": 31485916, + "PaymentType": "Cash" + }, + { + "Id": 6163, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2019-07-26T16:28:16", + "TransactionId": 59196897, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 27, + "CustomerInfo": 23865604, + "PaymentType": "Cash" + }, + { + "Id": 6164, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2019-12-28T15:17:00", + "TransactionId": 75363650, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 341, + "CustomerInfo": 40758462, + "PaymentType": "Cash" + }, + { + "Id": 6165, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2018-12-23T19:28:25", + "TransactionId": 99741587, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 778, + "CustomerInfo": 69880562, + "PaymentType": "Credit Card" + }, + { + "Id": 6166, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-11-08T12:08:56", + "TransactionId": 99466291, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 562, + "CustomerInfo": 43146733, + "PaymentType": "Debit Card" + }, + { + "Id": 6167, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2019-02-04T11:43:09", + "TransactionId": 30036347, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 280, + "CustomerInfo": 13259466, + "PaymentType": "Debit Card" + }, + { + "Id": 6168, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2019-07-28T16:53:02", + "TransactionId": 81711058, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 349, + "CustomerInfo": 86371169, + "PaymentType": "Credit Card" + }, + { + "Id": 6169, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-03-16T09:28:22", + "TransactionId": 46636574, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 429, + "CustomerInfo": 91214064, + "PaymentType": "Credit Card" + }, + { + "Id": 6170, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2016-06-26T11:25:18", + "TransactionId": 98070838, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 196, + "CustomerInfo": 25541083, + "PaymentType": "Debit Card" + }, + { + "Id": 6171, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-01-11T18:25:21", + "TransactionId": 24758407, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 483, + "CustomerInfo": 55897975, + "PaymentType": "Cash" + }, + { + "Id": 6172, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2017-12-08T14:31:55", + "TransactionId": 5589712, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 75, + "CustomerInfo": 41297114, + "PaymentType": "Credit Card" + }, + { + "Id": 6173, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-05-28T16:37:47", + "TransactionId": 10987854, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 42, + "CustomerInfo": 50738158, + "PaymentType": "Credit Card" + }, + { + "Id": 6174, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-12-10T14:39:24", + "TransactionId": 37525436, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 390, + "CustomerInfo": 11177544, + "PaymentType": "Debit Card" + }, + { + "Id": 6175, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2019-12-21T11:16:48", + "TransactionId": 5741532, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 982, + "CustomerInfo": 52186054, + "PaymentType": "Credit Card" + }, + { + "Id": 6176, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2017-12-24T07:12:17", + "TransactionId": 55841437, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 493, + "CustomerInfo": 94690361, + "PaymentType": "Cash" + }, + { + "Id": 6177, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2019-08-10T13:38:38", + "TransactionId": 57146258, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 509, + "CustomerInfo": 94619700, + "PaymentType": "Cash" + }, + { + "Id": 6178, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2018-01-06T16:27:33", + "TransactionId": 97177182, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 629, + "CustomerInfo": 67782138, + "PaymentType": "Credit Card" + }, + { + "Id": 6179, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-06-10T17:46:28", + "TransactionId": 50576395, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 885, + "CustomerInfo": 65592272, + "PaymentType": "Cash" + }, + { + "Id": 6180, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-01-08T17:46:54", + "TransactionId": 15433304, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 749, + "CustomerInfo": 77264771, + "PaymentType": "Cash" + }, + { + "Id": 6181, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2018-01-08T12:29:40", + "TransactionId": 89226247, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 39, + "CustomerInfo": 42818258, + "PaymentType": "Credit Card" + }, + { + "Id": 6182, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2018-03-01T18:44:04", + "TransactionId": 32085908, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 78208275, + "PaymentType": "Cash" + }, + { + "Id": 6183, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-12-02T16:51:10", + "TransactionId": 10791194, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 93, + "CustomerInfo": 60281145, + "PaymentType": "Debit Card" + }, + { + "Id": 6184, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2018-05-25T12:55:00", + "TransactionId": 32604527, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 38, + "CustomerInfo": 5154468, + "PaymentType": "Cash" + }, + { + "Id": 6185, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-03-08T11:18:32", + "TransactionId": 70648328, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 30, + "CustomerInfo": 14296864, + "PaymentType": "Cash" + }, + { + "Id": 6186, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2016-02-29T10:57:48", + "TransactionId": 67976397, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 594, + "CustomerInfo": 14538887, + "PaymentType": "Credit Card" + }, + { + "Id": 6187, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-08-13T12:47:23", + "TransactionId": 86855272, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 89, + "CustomerInfo": 54264344, + "PaymentType": "Credit Card" + }, + { + "Id": 6188, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-12-10T19:29:17", + "TransactionId": 79716873, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 41, + "CustomerInfo": 29091670, + "PaymentType": "Credit Card" + }, + { + "Id": 6189, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2018-05-17T07:39:22", + "TransactionId": 63174999, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 381, + "CustomerInfo": 57202477, + "PaymentType": "Debit Card" + }, + { + "Id": 6190, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2018-05-04T08:09:01", + "TransactionId": 89650509, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 512, + "CustomerInfo": 11875060, + "PaymentType": "Debit Card" + }, + { + "Id": 6191, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2017-04-17T19:42:06", + "TransactionId": 91972648, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 683, + "CustomerInfo": 43948563, + "PaymentType": "Credit Card" + }, + { + "Id": 6192, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2019-06-01T10:42:06", + "TransactionId": 12956552, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 252, + "CustomerInfo": 43596409, + "PaymentType": "Debit Card" + }, + { + "Id": 6193, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-05-08T14:26:18", + "TransactionId": 91109638, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 684, + "CustomerInfo": 13781651, + "PaymentType": "Debit Card" + }, + { + "Id": 6194, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2017-08-23T17:14:47", + "TransactionId": 78596927, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 770, + "CustomerInfo": 23360567, + "PaymentType": "Credit Card" + }, + { + "Id": 6195, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-06-13T11:18:06", + "TransactionId": 54253105, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 63346066, + "PaymentType": "Credit Card" + }, + { + "Id": 6196, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2016-06-08T10:30:09", + "TransactionId": 79963526, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 867, + "CustomerInfo": 80335003, + "PaymentType": "Debit Card" + }, + { + "Id": 6197, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-09-02T15:10:31", + "TransactionId": 47571445, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 121, + "CustomerInfo": 50522861, + "PaymentType": "Debit Card" + }, + { + "Id": 6198, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2016-08-25T11:56:15", + "TransactionId": 64099261, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 810, + "CustomerInfo": 81130038, + "PaymentType": "Cash" + }, + { + "Id": 6199, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-11-24T10:11:08", + "TransactionId": 42028790, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 656, + "CustomerInfo": 12094359, + "PaymentType": "Debit Card" + }, + { + "Id": 6200, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2018-05-29T15:53:17", + "TransactionId": 43489994, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 102, + "CustomerInfo": 89165540, + "PaymentType": "Cash" + }, + { + "Id": 6201, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2017-01-04T19:48:43", + "TransactionId": 75099668, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 88, + "CustomerInfo": 54419655, + "PaymentType": "Debit Card" + }, + { + "Id": 6202, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-01-30T11:08:10", + "TransactionId": 88392419, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 198, + "CustomerInfo": 21879185, + "PaymentType": "Credit Card" + }, + { + "Id": 6203, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-09-19T08:29:54", + "TransactionId": 73831995, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 245, + "CustomerInfo": 3179203, + "PaymentType": "Cash" + }, + { + "Id": 6204, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-04-01T15:49:49", + "TransactionId": 60024012, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 77373690, + "PaymentType": "Cash" + }, + { + "Id": 6205, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2018-01-13T15:28:31", + "TransactionId": 51144637, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 949, + "CustomerInfo": 64677308, + "PaymentType": "Debit Card" + }, + { + "Id": 6206, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-11-14T12:16:16", + "TransactionId": 90124346, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 87, + "CustomerInfo": 22259856, + "PaymentType": "Cash" + }, + { + "Id": 6207, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2018-10-16T16:01:38", + "TransactionId": 36012905, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 830, + "CustomerInfo": 48809205, + "PaymentType": "Cash" + }, + { + "Id": 6208, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2019-10-08T08:38:24", + "TransactionId": 92739645, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 891, + "CustomerInfo": 30154846, + "PaymentType": "Credit Card" + }, + { + "Id": 6209, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2016-08-18T09:12:49", + "TransactionId": 80556476, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 464, + "CustomerInfo": 19445263, + "PaymentType": "Credit Card" + }, + { + "Id": 6210, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-12-22T10:49:18", + "TransactionId": 43832543, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 288, + "CustomerInfo": 34807891, + "PaymentType": "Cash" + }, + { + "Id": 6211, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2018-08-30T12:52:42", + "TransactionId": 48393032, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 36, + "CustomerInfo": 70859657, + "PaymentType": "Cash" + }, + { + "Id": 6212, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2019-08-18T16:44:15", + "TransactionId": 40593946, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 632, + "CustomerInfo": 37972907, + "PaymentType": "Credit Card" + }, + { + "Id": 6213, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-12-11T11:32:30", + "TransactionId": 92212938, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 577, + "CustomerInfo": 94821517, + "PaymentType": "Debit Card" + }, + { + "Id": 6214, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2018-05-17T18:12:40", + "TransactionId": 36002794, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 492, + "CustomerInfo": 86434836, + "PaymentType": "Debit Card" + }, + { + "Id": 6215, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-02-26T18:12:49", + "TransactionId": 33507624, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 519, + "CustomerInfo": 93744318, + "PaymentType": "Credit Card" + }, + { + "Id": 6216, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-04-08T11:23:34", + "TransactionId": 36149185, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 43, + "CustomerInfo": 33286065, + "PaymentType": "Debit Card" + }, + { + "Id": 6217, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-05-09T14:54:49", + "TransactionId": 3828104, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 673, + "CustomerInfo": 4554963, + "PaymentType": "Credit Card" + }, + { + "Id": 6218, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2018-05-21T14:18:06", + "TransactionId": 84612004, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 483, + "CustomerInfo": 32091541, + "PaymentType": "Debit Card" + }, + { + "Id": 6219, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-12-18T14:15:04", + "TransactionId": 13982886, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 726, + "CustomerInfo": 24601034, + "PaymentType": "Debit Card" + }, + { + "Id": 6220, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2019-12-12T13:45:59", + "TransactionId": 84885369, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 502, + "CustomerInfo": 13439039, + "PaymentType": "Credit Card" + }, + { + "Id": 6221, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2016-03-14T12:35:43", + "TransactionId": 43879693, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 853, + "CustomerInfo": 94682811, + "PaymentType": "Credit Card" + }, + { + "Id": 6222, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-06-29T16:14:36", + "TransactionId": 1964163, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 863, + "CustomerInfo": 23044530, + "PaymentType": "Debit Card" + }, + { + "Id": 6223, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2016-12-16T15:33:50", + "TransactionId": 22527987, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 228, + "CustomerInfo": 89908481, + "PaymentType": "Cash" + }, + { + "Id": 6224, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2017-10-19T09:22:28", + "TransactionId": 43307627, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 740, + "CustomerInfo": 52621014, + "PaymentType": "Credit Card" + }, + { + "Id": 6225, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-01-26T16:37:12", + "TransactionId": 5554348, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 31122404, + "PaymentType": "Credit Card" + }, + { + "Id": 6226, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2017-04-13T10:57:13", + "TransactionId": 94518605, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 801, + "CustomerInfo": 35915421, + "PaymentType": "Credit Card" + }, + { + "Id": 6227, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2019-05-05T07:22:13", + "TransactionId": 33014085, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 867, + "CustomerInfo": 58996311, + "PaymentType": "Credit Card" + }, + { + "Id": 6228, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-02-22T13:10:25", + "TransactionId": 73354872, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 3946330, + "PaymentType": "Credit Card" + }, + { + "Id": 6229, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2017-04-19T11:03:42", + "TransactionId": 49801031, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 514, + "CustomerInfo": 43668502, + "PaymentType": "Cash" + }, + { + "Id": 6230, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2018-05-25T18:30:23", + "TransactionId": 77473857, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 511, + "CustomerInfo": 1362509, + "PaymentType": "Credit Card" + }, + { + "Id": 6231, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2016-03-05T12:35:34", + "TransactionId": 860773, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 854, + "CustomerInfo": 35085531, + "PaymentType": "Cash" + }, + { + "Id": 6232, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2019-02-19T14:34:05", + "TransactionId": 6237481, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 997, + "CustomerInfo": 45153746, + "PaymentType": "Credit Card" + }, + { + "Id": 6233, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2018-03-04T18:13:24", + "TransactionId": 25365492, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 598, + "CustomerInfo": 76944633, + "PaymentType": "Cash" + }, + { + "Id": 6234, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-12-04T10:23:48", + "TransactionId": 129023, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 836, + "CustomerInfo": 78507118, + "PaymentType": "Credit Card" + }, + { + "Id": 6235, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2016-02-12T11:38:50", + "TransactionId": 79174243, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 760, + "CustomerInfo": 10666149, + "PaymentType": "Credit Card" + }, + { + "Id": 6236, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2017-07-07T18:07:12", + "TransactionId": 31514469, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 155, + "CustomerInfo": 88055511, + "PaymentType": "Cash" + }, + { + "Id": 6237, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-05-28T18:59:37", + "TransactionId": 86169614, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 200, + "CustomerInfo": 9387673, + "PaymentType": "Cash" + }, + { + "Id": 6238, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-12-27T08:54:58", + "TransactionId": 93997025, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 989, + "CustomerInfo": 44019738, + "PaymentType": "Cash" + }, + { + "Id": 6239, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-12-27T13:36:20", + "TransactionId": 19147933, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 622, + "CustomerInfo": 4330377, + "PaymentType": "Cash" + }, + { + "Id": 6240, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-08-22T19:13:18", + "TransactionId": 96318097, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 517, + "CustomerInfo": 15131427, + "PaymentType": "Credit Card" + }, + { + "Id": 6241, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-03-12T07:01:21", + "TransactionId": 89955351, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 319, + "CustomerInfo": 45336550, + "PaymentType": "Debit Card" + }, + { + "Id": 6242, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-02-06T19:01:21", + "TransactionId": 13839860, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 43, + "CustomerInfo": 58536499, + "PaymentType": "Debit Card" + }, + { + "Id": 6243, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2019-07-14T16:23:57", + "TransactionId": 82542703, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 61602461, + "PaymentType": "Cash" + }, + { + "Id": 6244, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-01-23T13:39:30", + "TransactionId": 32975320, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 54234107, + "PaymentType": "Debit Card" + }, + { + "Id": 6245, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2017-01-30T08:45:19", + "TransactionId": 82107370, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 380, + "CustomerInfo": 10649720, + "PaymentType": "Credit Card" + }, + { + "Id": 6246, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-08-24T14:13:47", + "TransactionId": 15073486, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 355, + "CustomerInfo": 54626333, + "PaymentType": "Debit Card" + }, + { + "Id": 6247, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-09-16T15:07:29", + "TransactionId": 2261634, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 904, + "CustomerInfo": 63257811, + "PaymentType": "Cash" + }, + { + "Id": 6248, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-04-09T19:39:04", + "TransactionId": 96427426, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 533, + "CustomerInfo": 74697805, + "PaymentType": "Cash" + }, + { + "Id": 6249, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-10-09T07:18:20", + "TransactionId": 77508617, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 442, + "CustomerInfo": 98979151, + "PaymentType": "Cash" + }, + { + "Id": 6250, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2018-07-08T14:34:57", + "TransactionId": 66470392, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 4, + "CustomerInfo": 6780847, + "PaymentType": "Debit Card" + }, + { + "Id": 6251, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-09-12T12:23:11", + "TransactionId": 77798793, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 971, + "CustomerInfo": 92506497, + "PaymentType": "Cash" + }, + { + "Id": 6252, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2017-06-20T16:40:31", + "TransactionId": 67203741, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 432, + "CustomerInfo": 63454328, + "PaymentType": "Credit Card" + }, + { + "Id": 6253, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-10-14T08:56:24", + "TransactionId": 48539572, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 188, + "CustomerInfo": 62929065, + "PaymentType": "Debit Card" + }, + { + "Id": 6254, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2016-11-14T11:32:12", + "TransactionId": 34366370, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 109, + "CustomerInfo": 34140444, + "PaymentType": "Debit Card" + }, + { + "Id": 6255, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2017-03-20T12:27:56", + "TransactionId": 53317056, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 147, + "CustomerInfo": 77330285, + "PaymentType": "Debit Card" + }, + { + "Id": 6256, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2016-06-10T08:02:50", + "TransactionId": 40161379, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 180, + "CustomerInfo": 3775955, + "PaymentType": "Debit Card" + }, + { + "Id": 6257, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-06-03T09:13:58", + "TransactionId": 85777910, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 455, + "CustomerInfo": 70181365, + "PaymentType": "Cash" + }, + { + "Id": 6258, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2017-08-25T13:30:00", + "TransactionId": 50595811, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 668, + "CustomerInfo": 13086693, + "PaymentType": "Cash" + }, + { + "Id": 6259, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2019-02-14T13:12:43", + "TransactionId": 25027793, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 156, + "CustomerInfo": 6800667, + "PaymentType": "Cash" + }, + { + "Id": 6260, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2018-10-08T13:03:39", + "TransactionId": 52463759, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 990, + "CustomerInfo": 34276675, + "PaymentType": "Debit Card" + }, + { + "Id": 6261, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2018-04-12T15:27:39", + "TransactionId": 6415295, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 399, + "CustomerInfo": 48414481, + "PaymentType": "Credit Card" + }, + { + "Id": 6262, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2019-09-09T09:33:50", + "TransactionId": 16998394, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 487, + "CustomerInfo": 3545762, + "PaymentType": "Cash" + }, + { + "Id": 6263, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2017-10-25T12:06:20", + "TransactionId": 20828456, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 843, + "CustomerInfo": 12489047, + "PaymentType": "Cash" + }, + { + "Id": 6264, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2019-10-27T17:05:08", + "TransactionId": 99075366, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 17, + "CustomerInfo": 19281739, + "PaymentType": "Cash" + }, + { + "Id": 6265, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-05-16T19:07:24", + "TransactionId": 35352143, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 101, + "CustomerInfo": 27856966, + "PaymentType": "Cash" + }, + { + "Id": 6266, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-05-10T16:25:41", + "TransactionId": 68024849, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 4801927, + "PaymentType": "Debit Card" + }, + { + "Id": 6267, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-12-31T09:53:17", + "TransactionId": 55732675, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 858, + "CustomerInfo": 80106543, + "PaymentType": "Cash" + }, + { + "Id": 6268, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-08-25T18:38:27", + "TransactionId": 89855422, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 541, + "CustomerInfo": 72713610, + "PaymentType": "Debit Card" + }, + { + "Id": 6269, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-07-07T14:38:50", + "TransactionId": 97974436, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 32, + "CustomerInfo": 8595939, + "PaymentType": "Credit Card" + }, + { + "Id": 6270, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2019-10-23T17:16:48", + "TransactionId": 60431275, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 502, + "CustomerInfo": 33973864, + "PaymentType": "Credit Card" + }, + { + "Id": 6271, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-05-11T12:53:17", + "TransactionId": 97090444, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 590, + "CustomerInfo": 5832045, + "PaymentType": "Debit Card" + }, + { + "Id": 6272, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-04-05T07:32:10", + "TransactionId": 85177778, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 436, + "CustomerInfo": 1764935, + "PaymentType": "Debit Card" + }, + { + "Id": 6273, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2019-06-12T13:14:53", + "TransactionId": 14200427, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 46, + "CustomerInfo": 99381841, + "PaymentType": "Credit Card" + }, + { + "Id": 6274, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2019-04-22T10:24:23", + "TransactionId": 62723970, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 391, + "CustomerInfo": 59170337, + "PaymentType": "Debit Card" + }, + { + "Id": 6275, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-11-19T13:22:57", + "TransactionId": 96699879, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 98155849, + "PaymentType": "Cash" + }, + { + "Id": 6276, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2017-12-27T18:06:12", + "TransactionId": 43097684, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 389, + "CustomerInfo": 1596856, + "PaymentType": "Cash" + }, + { + "Id": 6277, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-01-31T15:50:07", + "TransactionId": 12201522, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 303, + "CustomerInfo": 93006002, + "PaymentType": "Cash" + }, + { + "Id": 6278, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-02-16T18:15:59", + "TransactionId": 42989959, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 748, + "CustomerInfo": 41449919, + "PaymentType": "Debit Card" + }, + { + "Id": 6279, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-03-06T17:23:34", + "TransactionId": 59937357, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 810, + "CustomerInfo": 19745548, + "PaymentType": "Credit Card" + }, + { + "Id": 6280, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-09-06T11:14:30", + "TransactionId": 77375536, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 741, + "CustomerInfo": 69339594, + "PaymentType": "Credit Card" + }, + { + "Id": 6281, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2019-08-02T15:07:03", + "TransactionId": 37478211, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 507, + "CustomerInfo": 1939347, + "PaymentType": "Credit Card" + }, + { + "Id": 6282, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-02-11T09:52:08", + "TransactionId": 54737991, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 842, + "CustomerInfo": 49114670, + "PaymentType": "Credit Card" + }, + { + "Id": 6283, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2016-01-14T13:24:14", + "TransactionId": 86456784, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 620, + "CustomerInfo": 94090329, + "PaymentType": "Credit Card" + }, + { + "Id": 6284, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2019-07-21T16:53:54", + "TransactionId": 31027346, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 700, + "CustomerInfo": 73241927, + "PaymentType": "Debit Card" + }, + { + "Id": 6285, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-03-06T15:55:18", + "TransactionId": 42165878, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 617, + "CustomerInfo": 2149018, + "PaymentType": "Credit Card" + }, + { + "Id": 6286, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-12-02T10:04:05", + "TransactionId": 21601408, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 3, + "CustomerInfo": 87629915, + "PaymentType": "Cash" + }, + { + "Id": 6287, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-05-07T07:34:45", + "TransactionId": 78007616, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 372, + "CustomerInfo": 30000448, + "PaymentType": "Credit Card" + }, + { + "Id": 6288, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-05-20T16:05:05", + "TransactionId": 39719897, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 903, + "CustomerInfo": 16118034, + "PaymentType": "Cash" + }, + { + "Id": 6289, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2019-03-21T08:57:07", + "TransactionId": 76938286, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 490, + "CustomerInfo": 82728612, + "PaymentType": "Credit Card" + }, + { + "Id": 6290, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2018-03-25T14:29:11", + "TransactionId": 34997841, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 114, + "CustomerInfo": 78290823, + "PaymentType": "Cash" + }, + { + "Id": 6291, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-05-05T09:21:36", + "TransactionId": 74181097, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 299, + "CustomerInfo": 2732115, + "PaymentType": "Credit Card" + }, + { + "Id": 6292, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2016-06-12T07:59:57", + "TransactionId": 24769849, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 64, + "CustomerInfo": 49355798, + "PaymentType": "Debit Card" + }, + { + "Id": 6293, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2018-09-13T07:04:13", + "TransactionId": 54064693, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 63044421, + "PaymentType": "Debit Card" + }, + { + "Id": 6294, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-12-16T19:53:02", + "TransactionId": 37369036, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 302, + "CustomerInfo": 76575900, + "PaymentType": "Credit Card" + }, + { + "Id": 6295, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-01-25T15:20:01", + "TransactionId": 67767411, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 861, + "CustomerInfo": 10442940, + "PaymentType": "Cash" + }, + { + "Id": 6296, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2019-10-16T07:28:42", + "TransactionId": 27344251, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 950, + "CustomerInfo": 20812247, + "PaymentType": "Debit Card" + }, + { + "Id": 6297, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-12-07T12:17:00", + "TransactionId": 62173646, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 545, + "CustomerInfo": 42139079, + "PaymentType": "Cash" + }, + { + "Id": 6298, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-08-19T09:34:25", + "TransactionId": 88696242, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 797, + "CustomerInfo": 20444944, + "PaymentType": "Credit Card" + }, + { + "Id": 6299, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2016-12-03T07:59:48", + "TransactionId": 83191818, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 578, + "CustomerInfo": 80096652, + "PaymentType": "Debit Card" + }, + { + "Id": 6300, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-03-13T09:22:45", + "TransactionId": 79343989, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 89333780, + "PaymentType": "Credit Card" + }, + { + "Id": 6301, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-09-12T09:01:18", + "TransactionId": 63601326, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 86, + "CustomerInfo": 88679572, + "PaymentType": "Debit Card" + }, + { + "Id": 6302, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2019-09-17T10:20:04", + "TransactionId": 36287350, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 79856466, + "PaymentType": "Debit Card" + }, + { + "Id": 6303, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-08-02T17:39:24", + "TransactionId": 91841541, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 690, + "CustomerInfo": 7215198, + "PaymentType": "Debit Card" + }, + { + "Id": 6304, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2018-07-08T08:20:07", + "TransactionId": 60922701, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 185, + "CustomerInfo": 6864432, + "PaymentType": "Debit Card" + }, + { + "Id": 6305, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2017-08-13T11:13:03", + "TransactionId": 34287322, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 947, + "CustomerInfo": 95765530, + "PaymentType": "Cash" + }, + { + "Id": 6306, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2018-07-09T18:41:28", + "TransactionId": 85804505, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 928, + "CustomerInfo": 52417429, + "PaymentType": "Credit Card" + }, + { + "Id": 6307, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2016-10-08T12:53:43", + "TransactionId": 12138155, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 689, + "CustomerInfo": 39218209, + "PaymentType": "Debit Card" + }, + { + "Id": 6308, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-03-07T12:12:58", + "TransactionId": 29797436, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 405, + "CustomerInfo": 25493983, + "PaymentType": "Credit Card" + }, + { + "Id": 6309, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-09-29T10:23:31", + "TransactionId": 60506070, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 611, + "CustomerInfo": 2095998, + "PaymentType": "Debit Card" + }, + { + "Id": 6310, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2019-09-05T19:39:48", + "TransactionId": 99806924, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 256, + "CustomerInfo": 63792183, + "PaymentType": "Debit Card" + }, + { + "Id": 6311, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-01-10T10:20:47", + "TransactionId": 37982005, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 325, + "CustomerInfo": 54762777, + "PaymentType": "Credit Card" + }, + { + "Id": 6312, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-02-27T16:27:16", + "TransactionId": 98310060, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 937, + "CustomerInfo": 93090944, + "PaymentType": "Cash" + }, + { + "Id": 6313, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-01-14T16:20:38", + "TransactionId": 79653884, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 846, + "CustomerInfo": 10286720, + "PaymentType": "Cash" + }, + { + "Id": 6314, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-01-29T18:33:16", + "TransactionId": 26764583, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 101, + "CustomerInfo": 39243359, + "PaymentType": "Credit Card" + }, + { + "Id": 6315, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2019-02-21T18:50:41", + "TransactionId": 59787156, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 468, + "CustomerInfo": 90718050, + "PaymentType": "Credit Card" + }, + { + "Id": 6316, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2017-05-19T10:15:36", + "TransactionId": 57152953, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 902, + "CustomerInfo": 21949181, + "PaymentType": "Credit Card" + }, + { + "Id": 6317, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-05-15T16:21:22", + "TransactionId": 62804289, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 599, + "CustomerInfo": 66684177, + "PaymentType": "Cash" + }, + { + "Id": 6318, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-01-30T10:15:53", + "TransactionId": 24108146, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 535, + "CustomerInfo": 19671806, + "PaymentType": "Debit Card" + }, + { + "Id": 6319, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-06-05T15:22:28", + "TransactionId": 41801836, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 971, + "CustomerInfo": 99344767, + "PaymentType": "Cash" + }, + { + "Id": 6320, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-08-12T15:17:51", + "TransactionId": 91732896, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 831, + "CustomerInfo": 74443621, + "PaymentType": "Cash" + }, + { + "Id": 6321, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-08-28T13:14:27", + "TransactionId": 15402597, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 513, + "CustomerInfo": 40889934, + "PaymentType": "Cash" + }, + { + "Id": 6322, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-04-22T09:09:04", + "TransactionId": 95372338, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 645, + "CustomerInfo": 12217167, + "PaymentType": "Debit Card" + }, + { + "Id": 6323, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-08-04T18:24:29", + "TransactionId": 10801797, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 248, + "CustomerInfo": 34152601, + "PaymentType": "Credit Card" + }, + { + "Id": 6324, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2017-03-02T13:30:43", + "TransactionId": 82949027, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 960, + "CustomerInfo": 96576398, + "PaymentType": "Credit Card" + }, + { + "Id": 6325, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-04-02T07:22:22", + "TransactionId": 39864916, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 86560013, + "PaymentType": "Debit Card" + }, + { + "Id": 6326, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2017-07-24T19:57:13", + "TransactionId": 30141836, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 436, + "CustomerInfo": 69602633, + "PaymentType": "Cash" + }, + { + "Id": 6327, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-09-21T15:44:47", + "TransactionId": 59624380, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 602, + "CustomerInfo": 44309579, + "PaymentType": "Credit Card" + }, + { + "Id": 6328, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-07-07T19:45:50", + "TransactionId": 84917166, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 393, + "CustomerInfo": 49063793, + "PaymentType": "Credit Card" + }, + { + "Id": 6329, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-05-14T13:43:41", + "TransactionId": 25319448, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 217, + "CustomerInfo": 63891635, + "PaymentType": "Cash" + }, + { + "Id": 6330, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2017-03-02T09:28:39", + "TransactionId": 96652007, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 636, + "CustomerInfo": 76258665, + "PaymentType": "Debit Card" + }, + { + "Id": 6331, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-02-09T08:03:16", + "TransactionId": 33724161, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 499, + "CustomerInfo": 79417806, + "PaymentType": "Credit Card" + }, + { + "Id": 6332, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2018-03-09T19:55:12", + "TransactionId": 34618176, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 468, + "CustomerInfo": 34573273, + "PaymentType": "Cash" + }, + { + "Id": 6333, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2019-08-30T13:58:39", + "TransactionId": 5421000, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 619, + "CustomerInfo": 26887999, + "PaymentType": "Debit Card" + }, + { + "Id": 6334, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2017-11-19T13:30:52", + "TransactionId": 73847983, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 239, + "CustomerInfo": 89217089, + "PaymentType": "Cash" + }, + { + "Id": 6335, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-04-14T10:13:00", + "TransactionId": 43307608, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 176, + "CustomerInfo": 14221231, + "PaymentType": "Cash" + }, + { + "Id": 6336, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2016-02-11T14:50:47", + "TransactionId": 89761482, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 742, + "CustomerInfo": 4307367, + "PaymentType": "Debit Card" + }, + { + "Id": 6337, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2019-03-28T10:36:03", + "TransactionId": 60266932, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 791, + "CustomerInfo": 28155258, + "PaymentType": "Cash" + }, + { + "Id": 6338, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-11-10T14:54:23", + "TransactionId": 46908912, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 869, + "CustomerInfo": 11736308, + "PaymentType": "Credit Card" + }, + { + "Id": 6339, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2018-06-22T10:09:07", + "TransactionId": 44793605, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 578, + "CustomerInfo": 18375157, + "PaymentType": "Cash" + }, + { + "Id": 6340, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2019-02-02T09:34:34", + "TransactionId": 64189099, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 460, + "CustomerInfo": 28207681, + "PaymentType": "Cash" + }, + { + "Id": 6341, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2018-11-12T13:40:22", + "TransactionId": 49331077, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 487, + "CustomerInfo": 98414858, + "PaymentType": "Cash" + }, + { + "Id": 6342, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2018-04-11T19:46:42", + "TransactionId": 66619789, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 918, + "CustomerInfo": 3977997, + "PaymentType": "Credit Card" + }, + { + "Id": 6343, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-12-16T08:24:26", + "TransactionId": 61305581, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 617, + "CustomerInfo": 55823102, + "PaymentType": "Debit Card" + }, + { + "Id": 6344, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-05-08T10:45:50", + "TransactionId": 72398697, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 713, + "CustomerInfo": 43603615, + "PaymentType": "Credit Card" + }, + { + "Id": 6345, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2019-03-05T07:25:41", + "TransactionId": 39631902, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 95, + "CustomerInfo": 44168480, + "PaymentType": "Cash" + }, + { + "Id": 6346, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-03-28T14:09:45", + "TransactionId": 45404975, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 958, + "CustomerInfo": 82069447, + "PaymentType": "Credit Card" + }, + { + "Id": 6347, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2019-05-08T17:55:41", + "TransactionId": 31841824, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 168, + "CustomerInfo": 11163383, + "PaymentType": "Cash" + }, + { + "Id": 6348, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-01-03T14:51:22", + "TransactionId": 90973269, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 442, + "CustomerInfo": 6329850, + "PaymentType": "Cash" + }, + { + "Id": 6349, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2017-12-21T11:43:44", + "TransactionId": 84473939, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 812, + "CustomerInfo": 21719045, + "PaymentType": "Credit Card" + }, + { + "Id": 6350, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-12-07T16:43:32", + "TransactionId": 27493466, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 937, + "CustomerInfo": 99226161, + "PaymentType": "Cash" + }, + { + "Id": 6351, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-08-22T19:33:19", + "TransactionId": 90907618, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 576, + "CustomerInfo": 32780512, + "PaymentType": "Cash" + }, + { + "Id": 6352, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2019-04-22T08:10:36", + "TransactionId": 13869264, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 35046890, + "PaymentType": "Debit Card" + }, + { + "Id": 6353, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-02-08T14:05:43", + "TransactionId": 22024344, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 530, + "CustomerInfo": 45976273, + "PaymentType": "Debit Card" + }, + { + "Id": 6354, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2016-06-20T18:21:10", + "TransactionId": 15944827, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 418, + "CustomerInfo": 26065240, + "PaymentType": "Debit Card" + }, + { + "Id": 6355, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2018-12-23T15:12:32", + "TransactionId": 25597062, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 524, + "CustomerInfo": 99302279, + "PaymentType": "Credit Card" + }, + { + "Id": 6356, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2018-01-29T18:38:44", + "TransactionId": 54512323, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 64, + "CustomerInfo": 44747468, + "PaymentType": "Credit Card" + }, + { + "Id": 6357, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-08-04T07:14:27", + "TransactionId": 78269821, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 61858217, + "PaymentType": "Cash" + }, + { + "Id": 6358, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-07-15T10:17:28", + "TransactionId": 24822876, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 752, + "CustomerInfo": 95583308, + "PaymentType": "Credit Card" + }, + { + "Id": 6359, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-03-10T16:34:02", + "TransactionId": 58844093, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 675, + "CustomerInfo": 84162415, + "PaymentType": "Credit Card" + }, + { + "Id": 6360, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2019-09-07T13:27:07", + "TransactionId": 16700901, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 369, + "CustomerInfo": 17255236, + "PaymentType": "Credit Card" + }, + { + "Id": 6361, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2019-11-24T19:04:39", + "TransactionId": 91875019, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 58159626, + "PaymentType": "Credit Card" + }, + { + "Id": 6362, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-09-28T15:21:27", + "TransactionId": 9466524, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 367, + "CustomerInfo": 47627390, + "PaymentType": "Debit Card" + }, + { + "Id": 6363, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-07-12T17:02:50", + "TransactionId": 35865708, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 516, + "CustomerInfo": 81702967, + "PaymentType": "Credit Card" + }, + { + "Id": 6364, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2019-01-18T18:51:50", + "TransactionId": 74610930, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 761, + "CustomerInfo": 23837938, + "PaymentType": "Cash" + }, + { + "Id": 6365, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2017-01-18T10:35:37", + "TransactionId": 3976266, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 879, + "CustomerInfo": 67455534, + "PaymentType": "Credit Card" + }, + { + "Id": 6366, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2019-04-26T14:05:43", + "TransactionId": 31292258, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 719, + "CustomerInfo": 65761957, + "PaymentType": "Credit Card" + }, + { + "Id": 6367, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2016-05-29T09:11:48", + "TransactionId": 2836754, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 192, + "CustomerInfo": 54901471, + "PaymentType": "Credit Card" + }, + { + "Id": 6368, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-01-06T07:39:04", + "TransactionId": 5045048, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 214, + "CustomerInfo": 60402092, + "PaymentType": "Debit Card" + }, + { + "Id": 6369, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2016-04-28T18:31:49", + "TransactionId": 33107115, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 804, + "CustomerInfo": 58330244, + "PaymentType": "Cash" + }, + { + "Id": 6370, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2016-10-16T16:00:46", + "TransactionId": 35814501, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 239, + "CustomerInfo": 69012880, + "PaymentType": "Credit Card" + }, + { + "Id": 6371, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-10-24T19:21:48", + "TransactionId": 64707768, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 359, + "CustomerInfo": 64479349, + "PaymentType": "Credit Card" + }, + { + "Id": 6372, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2017-03-21T14:14:12", + "TransactionId": 52445702, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 929, + "CustomerInfo": 88448587, + "PaymentType": "Cash" + }, + { + "Id": 6373, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2017-06-09T13:23:14", + "TransactionId": 52125573, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 296, + "CustomerInfo": 10336609, + "PaymentType": "Debit Card" + }, + { + "Id": 6374, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-10-21T11:54:40", + "TransactionId": 51737268, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 385, + "CustomerInfo": 79700996, + "PaymentType": "Debit Card" + }, + { + "Id": 6375, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-04-02T15:25:47", + "TransactionId": 60994547, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 694, + "CustomerInfo": 64461323, + "PaymentType": "Credit Card" + }, + { + "Id": 6376, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2019-11-27T10:56:04", + "TransactionId": 92457309, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 904, + "CustomerInfo": 40344860, + "PaymentType": "Cash" + }, + { + "Id": 6377, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-10-26T10:47:25", + "TransactionId": 12090503, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 371, + "CustomerInfo": 2881051, + "PaymentType": "Cash" + }, + { + "Id": 6378, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2018-07-20T13:03:39", + "TransactionId": 14987269, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 442, + "CustomerInfo": 76427091, + "PaymentType": "Credit Card" + }, + { + "Id": 6379, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2016-09-30T10:41:31", + "TransactionId": 90888975, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 940, + "CustomerInfo": 86585132, + "PaymentType": "Cash" + }, + { + "Id": 6380, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2016-07-21T09:45:22", + "TransactionId": 75370494, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 372, + "CustomerInfo": 87206326, + "PaymentType": "Debit Card" + }, + { + "Id": 6381, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-05-16T19:57:39", + "TransactionId": 61608112, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 76, + "CustomerInfo": 45776747, + "PaymentType": "Credit Card" + }, + { + "Id": 6382, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-05-10T15:10:48", + "TransactionId": 9394575, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 484, + "CustomerInfo": 35838625, + "PaymentType": "Debit Card" + }, + { + "Id": 6383, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2019-03-03T18:18:00", + "TransactionId": 4905920, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 709, + "CustomerInfo": 14659238, + "PaymentType": "Debit Card" + }, + { + "Id": 6384, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-10-13T15:48:58", + "TransactionId": 39201889, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 935, + "CustomerInfo": 25269657, + "PaymentType": "Cash" + }, + { + "Id": 6385, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2016-08-05T07:39:39", + "TransactionId": 84292721, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 16, + "CustomerInfo": 4682047, + "PaymentType": "Debit Card" + }, + { + "Id": 6386, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2016-07-05T15:08:04", + "TransactionId": 2527340, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 307, + "CustomerInfo": 70216634, + "PaymentType": "Credit Card" + }, + { + "Id": 6387, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2018-05-06T14:02:41", + "TransactionId": 26151703, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 323, + "CustomerInfo": 86666723, + "PaymentType": "Cash" + }, + { + "Id": 6388, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2019-05-29T12:20:36", + "TransactionId": 99538773, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 574, + "CustomerInfo": 73229207, + "PaymentType": "Credit Card" + }, + { + "Id": 6389, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2019-12-10T07:06:32", + "TransactionId": 55433805, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 378, + "CustomerInfo": 79002436, + "PaymentType": "Debit Card" + }, + { + "Id": 6390, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2016-08-06T14:21:16", + "TransactionId": 86329540, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 667, + "CustomerInfo": 26690525, + "PaymentType": "Credit Card" + }, + { + "Id": 6391, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2018-04-18T15:05:28", + "TransactionId": 94085268, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 929, + "CustomerInfo": 58051170, + "PaymentType": "Credit Card" + }, + { + "Id": 6392, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2017-10-12T16:41:14", + "TransactionId": 5083243, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 964, + "CustomerInfo": 48299937, + "PaymentType": "Cash" + }, + { + "Id": 6393, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2016-10-29T13:42:32", + "TransactionId": 5471529, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 389, + "CustomerInfo": 45079672, + "PaymentType": "Cash" + }, + { + "Id": 6394, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-10-11T09:49:49", + "TransactionId": 80111311, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 195, + "CustomerInfo": 2677879, + "PaymentType": "Credit Card" + }, + { + "Id": 6395, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-06-23T11:10:36", + "TransactionId": 44230764, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 341, + "CustomerInfo": 82070524, + "PaymentType": "Credit Card" + }, + { + "Id": 6396, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2016-08-08T11:29:28", + "TransactionId": 31843038, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 19239986, + "PaymentType": "Cash" + }, + { + "Id": 6397, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-04-03T17:48:46", + "TransactionId": 60774845, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 825, + "CustomerInfo": 3420000, + "PaymentType": "Cash" + }, + { + "Id": 6398, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-01-23T11:44:36", + "TransactionId": 47611312, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 405, + "CustomerInfo": 80518130, + "PaymentType": "Credit Card" + }, + { + "Id": 6399, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-10-24T19:00:46", + "TransactionId": 41917366, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 807, + "CustomerInfo": 93987827, + "PaymentType": "Debit Card" + }, + { + "Id": 6400, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-10-07T08:28:02", + "TransactionId": 6307341, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 369, + "CustomerInfo": 75764698, + "PaymentType": "Credit Card" + }, + { + "Id": 6401, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2017-01-12T17:43:52", + "TransactionId": 69929613, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 397, + "CustomerInfo": 39233940, + "PaymentType": "Debit Card" + }, + { + "Id": 6402, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2018-05-22T17:15:04", + "TransactionId": 93488944, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 116, + "CustomerInfo": 56366721, + "PaymentType": "Debit Card" + }, + { + "Id": 6403, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2017-03-10T18:32:33", + "TransactionId": 35367149, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 775, + "CustomerInfo": 50767578, + "PaymentType": "Credit Card" + }, + { + "Id": 6404, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-12-06T07:25:15", + "TransactionId": 81303516, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 492, + "CustomerInfo": 30448358, + "PaymentType": "Cash" + }, + { + "Id": 6405, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-12-09T07:46:34", + "TransactionId": 64450993, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 847, + "CustomerInfo": 86201157, + "PaymentType": "Credit Card" + }, + { + "Id": 6406, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-03-20T11:58:34", + "TransactionId": 35925053, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 631, + "CustomerInfo": 25744359, + "PaymentType": "Cash" + }, + { + "Id": 6407, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2019-11-05T19:14:10", + "TransactionId": 92890062, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 401, + "CustomerInfo": 80309284, + "PaymentType": "Debit Card" + }, + { + "Id": 6408, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2017-10-20T10:27:07", + "TransactionId": 55092619, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 698, + "CustomerInfo": 61154257, + "PaymentType": "Credit Card" + }, + { + "Id": 6409, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2017-07-06T08:09:27", + "TransactionId": 81279813, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 837, + "CustomerInfo": 72666117, + "PaymentType": "Credit Card" + }, + { + "Id": 6410, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2019-12-28T10:34:11", + "TransactionId": 63854487, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 677, + "CustomerInfo": 19958046, + "PaymentType": "Credit Card" + }, + { + "Id": 6411, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2016-11-21T08:07:35", + "TransactionId": 64032778, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 53, + "CustomerInfo": 25948303, + "PaymentType": "Credit Card" + }, + { + "Id": 6412, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2016-04-07T12:32:15", + "TransactionId": 91113124, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 788, + "CustomerInfo": 39916553, + "PaymentType": "Credit Card" + }, + { + "Id": 6413, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2018-11-13T09:56:53", + "TransactionId": 95331959, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 99, + "CustomerInfo": 70686286, + "PaymentType": "Cash" + }, + { + "Id": 6414, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2017-03-20T16:20:12", + "TransactionId": 59305968, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 867, + "CustomerInfo": 63424967, + "PaymentType": "Credit Card" + }, + { + "Id": 6415, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2018-03-29T14:05:34", + "TransactionId": 69164925, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 627, + "CustomerInfo": 89568248, + "PaymentType": "Credit Card" + }, + { + "Id": 6416, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2019-11-01T13:23:31", + "TransactionId": 23472172, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 250, + "CustomerInfo": 23341915, + "PaymentType": "Cash" + }, + { + "Id": 6417, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2018-01-20T19:31:52", + "TransactionId": 69011005, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 210, + "CustomerInfo": 68614411, + "PaymentType": "Credit Card" + }, + { + "Id": 6418, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2016-10-01T07:26:24", + "TransactionId": 1881661, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 743, + "CustomerInfo": 80517022, + "PaymentType": "Debit Card" + }, + { + "Id": 6419, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-02-26T11:22:34", + "TransactionId": 84967769, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 36656479, + "PaymentType": "Cash" + }, + { + "Id": 6420, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2017-03-19T09:02:36", + "TransactionId": 70867783, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 432, + "CustomerInfo": 82972308, + "PaymentType": "Debit Card" + }, + { + "Id": 6421, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-04-08T13:48:09", + "TransactionId": 62345571, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 687, + "CustomerInfo": 31636674, + "PaymentType": "Credit Card" + }, + { + "Id": 6422, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2017-08-18T14:46:19", + "TransactionId": 97295824, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 688, + "CustomerInfo": 96887427, + "PaymentType": "Cash" + }, + { + "Id": 6423, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-04-10T16:06:40", + "TransactionId": 64326058, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 151, + "CustomerInfo": 8296953, + "PaymentType": "Credit Card" + }, + { + "Id": 6424, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-03-22T19:03:48", + "TransactionId": 80118170, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 139, + "CustomerInfo": 48753032, + "PaymentType": "Credit Card" + }, + { + "Id": 6425, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2019-06-25T18:07:12", + "TransactionId": 87015841, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 606, + "CustomerInfo": 18756034, + "PaymentType": "Cash" + }, + { + "Id": 6426, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2017-07-05T08:03:33", + "TransactionId": 60872904, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 85237304, + "PaymentType": "Debit Card" + }, + { + "Id": 6427, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2018-09-24T07:28:16", + "TransactionId": 87290171, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 513, + "CustomerInfo": 69209071, + "PaymentType": "Debit Card" + }, + { + "Id": 6428, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2018-02-07T11:15:39", + "TransactionId": 67984785, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 197, + "CustomerInfo": 64119889, + "PaymentType": "Cash" + }, + { + "Id": 6429, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-06-08T08:56:41", + "TransactionId": 91448364, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 353, + "CustomerInfo": 38724544, + "PaymentType": "Credit Card" + }, + { + "Id": 6430, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2018-10-27T17:37:49", + "TransactionId": 22880760, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 830, + "CustomerInfo": 93703613, + "PaymentType": "Credit Card" + }, + { + "Id": 6431, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2018-06-04T13:20:56", + "TransactionId": 44195720, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 357, + "CustomerInfo": 85583366, + "PaymentType": "Cash" + }, + { + "Id": 6432, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-05-03T16:59:31", + "TransactionId": 95082511, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 89665575, + "PaymentType": "Credit Card" + }, + { + "Id": 6433, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-09-28T18:38:01", + "TransactionId": 78974352, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 322, + "CustomerInfo": 20698417, + "PaymentType": "Cash" + }, + { + "Id": 6434, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2016-01-01T08:38:15", + "TransactionId": 88487349, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 902, + "CustomerInfo": 94198800, + "PaymentType": "Credit Card" + }, + { + "Id": 6435, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-06-12T18:24:37", + "TransactionId": 20882372, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 359, + "CustomerInfo": 59809577, + "PaymentType": "Credit Card" + }, + { + "Id": 6436, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-06-15T13:18:46", + "TransactionId": 39821546, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 894, + "CustomerInfo": 57278246, + "PaymentType": "Debit Card" + }, + { + "Id": 6437, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2018-08-06T15:21:10", + "TransactionId": 90969889, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 847, + "CustomerInfo": 71590440, + "PaymentType": "Debit Card" + }, + { + "Id": 6438, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2017-02-02T07:53:46", + "TransactionId": 13965544, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 603, + "CustomerInfo": 21890755, + "PaymentType": "Debit Card" + }, + { + "Id": 6439, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2019-12-16T08:49:55", + "TransactionId": 61456580, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 4, + "CustomerInfo": 61859432, + "PaymentType": "Debit Card" + }, + { + "Id": 6440, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-03-12T11:12:55", + "TransactionId": 74243653, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 506, + "CustomerInfo": 57439034, + "PaymentType": "Cash" + }, + { + "Id": 6441, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-02-13T10:27:42", + "TransactionId": 30069285, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 999, + "CustomerInfo": 98753609, + "PaymentType": "Credit Card" + }, + { + "Id": 6442, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2017-01-03T16:09:16", + "TransactionId": 93727854, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 340, + "CustomerInfo": 55435505, + "PaymentType": "Credit Card" + }, + { + "Id": 6443, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-04-26T17:07:09", + "TransactionId": 20883027, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 190, + "CustomerInfo": 85538173, + "PaymentType": "Cash" + }, + { + "Id": 6444, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2018-04-19T12:16:08", + "TransactionId": 40526657, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 1, + "CustomerInfo": 44356406, + "PaymentType": "Cash" + }, + { + "Id": 6445, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2017-06-09T11:02:59", + "TransactionId": 71474000, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 66316408, + "PaymentType": "Cash" + }, + { + "Id": 6446, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-03-24T17:39:07", + "TransactionId": 25003687, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 664, + "CustomerInfo": 83338552, + "PaymentType": "Cash" + }, + { + "Id": 6447, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-08-16T10:07:58", + "TransactionId": 36466791, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 364, + "CustomerInfo": 44534879, + "PaymentType": "Cash" + }, + { + "Id": 6448, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2017-06-06T19:47:25", + "TransactionId": 99708044, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 308, + "CustomerInfo": 3340069, + "PaymentType": "Debit Card" + }, + { + "Id": 6449, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-11-16T10:43:41", + "TransactionId": 71421185, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 656, + "CustomerInfo": 51231688, + "PaymentType": "Credit Card" + }, + { + "Id": 6450, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2017-07-25T07:57:04", + "TransactionId": 49747042, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 301, + "CustomerInfo": 52944787, + "PaymentType": "Credit Card" + }, + { + "Id": 6451, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-05-12T08:47:37", + "TransactionId": 86039491, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 413, + "CustomerInfo": 27104677, + "PaymentType": "Cash" + }, + { + "Id": 6452, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2018-05-16T16:01:55", + "TransactionId": 73079221, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 415, + "CustomerInfo": 43375564, + "PaymentType": "Credit Card" + }, + { + "Id": 6453, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2018-10-22T11:27:45", + "TransactionId": 96732625, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 251, + "CustomerInfo": 13089763, + "PaymentType": "Credit Card" + }, + { + "Id": 6454, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-12-21T08:30:55", + "TransactionId": 21249963, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 328, + "CustomerInfo": 5936801, + "PaymentType": "Cash" + }, + { + "Id": 6455, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2019-02-10T17:35:14", + "TransactionId": 77018058, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 409, + "CustomerInfo": 75744869, + "PaymentType": "Credit Card" + }, + { + "Id": 6456, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2018-07-04T18:46:39", + "TransactionId": 16249203, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 171, + "CustomerInfo": 86178479, + "PaymentType": "Credit Card" + }, + { + "Id": 6457, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-06-06T14:28:36", + "TransactionId": 22336109, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 742, + "CustomerInfo": 40431372, + "PaymentType": "Debit Card" + }, + { + "Id": 6458, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2016-04-06T10:21:56", + "TransactionId": 63966293, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 525, + "CustomerInfo": 99553042, + "PaymentType": "Cash" + }, + { + "Id": 6459, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2016-07-05T17:42:17", + "TransactionId": 64347949, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 950, + "CustomerInfo": 89027294, + "PaymentType": "Credit Card" + }, + { + "Id": 6460, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2018-08-09T10:12:00", + "TransactionId": 49232955, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 19117334, + "PaymentType": "Debit Card" + }, + { + "Id": 6461, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2016-05-24T18:20:53", + "TransactionId": 60620058, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 23602293, + "PaymentType": "Credit Card" + }, + { + "Id": 6462, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2017-08-08T16:38:21", + "TransactionId": 61873555, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 693, + "CustomerInfo": 44746330, + "PaymentType": "Credit Card" + }, + { + "Id": 6463, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2019-07-12T08:38:59", + "TransactionId": 19341600, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 923, + "CustomerInfo": 87927626, + "PaymentType": "Credit Card" + }, + { + "Id": 6464, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-10-18T17:00:58", + "TransactionId": 11158625, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 405, + "CustomerInfo": 90011544, + "PaymentType": "Credit Card" + }, + { + "Id": 6465, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-07-08T16:40:05", + "TransactionId": 12289198, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 412, + "CustomerInfo": 58328828, + "PaymentType": "Cash" + }, + { + "Id": 6466, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2016-08-16T14:36:40", + "TransactionId": 52317825, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 91, + "CustomerInfo": 48183999, + "PaymentType": "Debit Card" + }, + { + "Id": 6467, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2017-01-23T16:43:24", + "TransactionId": 54106138, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 323, + "CustomerInfo": 60489569, + "PaymentType": "Credit Card" + }, + { + "Id": 6468, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2016-10-20T08:51:30", + "TransactionId": 79382584, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 603, + "CustomerInfo": 22182593, + "PaymentType": "Credit Card" + }, + { + "Id": 6469, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2016-04-25T12:17:51", + "TransactionId": 10506992, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 641, + "CustomerInfo": 81417613, + "PaymentType": "Credit Card" + }, + { + "Id": 6470, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2018-11-21T09:03:19", + "TransactionId": 73986596, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 510, + "CustomerInfo": 10104604, + "PaymentType": "Debit Card" + }, + { + "Id": 6471, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-03-28T18:41:02", + "TransactionId": 52001503, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 863, + "CustomerInfo": 37551372, + "PaymentType": "Cash" + }, + { + "Id": 6472, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-10-15T15:39:10", + "TransactionId": 19463836, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 258, + "CustomerInfo": 78121537, + "PaymentType": "Credit Card" + }, + { + "Id": 6473, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2016-05-14T14:04:08", + "TransactionId": 7371024, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 265, + "CustomerInfo": 78690814, + "PaymentType": "Cash" + }, + { + "Id": 6474, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2019-06-11T08:29:37", + "TransactionId": 21924680, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 332, + "CustomerInfo": 51865018, + "PaymentType": "Cash" + }, + { + "Id": 6475, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2019-04-22T17:38:24", + "TransactionId": 55863440, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 444, + "CustomerInfo": 83493089, + "PaymentType": "Debit Card" + }, + { + "Id": 6476, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-11-20T09:34:08", + "TransactionId": 14680277, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 974, + "CustomerInfo": 31619653, + "PaymentType": "Credit Card" + }, + { + "Id": 6477, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2017-05-19T13:02:21", + "TransactionId": 77133139, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 961, + "CustomerInfo": 70154217, + "PaymentType": "Cash" + }, + { + "Id": 6478, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-09-02T07:17:02", + "TransactionId": 65684928, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 336, + "CustomerInfo": 49021225, + "PaymentType": "Debit Card" + }, + { + "Id": 6479, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2017-03-15T09:53:00", + "TransactionId": 13418147, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 576, + "CustomerInfo": 84533717, + "PaymentType": "Debit Card" + }, + { + "Id": 6480, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-07-12T07:18:03", + "TransactionId": 3519658, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 2, + "CustomerInfo": 60782763, + "PaymentType": "Cash" + }, + { + "Id": 6481, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2019-10-07T13:21:56", + "TransactionId": 85773103, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 898, + "CustomerInfo": 72448026, + "PaymentType": "Cash" + }, + { + "Id": 6482, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-11-28T07:37:55", + "TransactionId": 93490763, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 8, + "CustomerInfo": 15267867, + "PaymentType": "Credit Card" + }, + { + "Id": 6483, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2018-01-02T19:54:37", + "TransactionId": 589320, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 618, + "CustomerInfo": 79354076, + "PaymentType": "Cash" + }, + { + "Id": 6484, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2016-09-21T13:14:18", + "TransactionId": 21795245, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 230, + "CustomerInfo": 56583028, + "PaymentType": "Debit Card" + }, + { + "Id": 6485, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-04-14T13:57:30", + "TransactionId": 87225620, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 290, + "CustomerInfo": 36221198, + "PaymentType": "Credit Card" + }, + { + "Id": 6486, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-02-25T09:32:24", + "TransactionId": 62458032, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 658, + "CustomerInfo": 94995948, + "PaymentType": "Credit Card" + }, + { + "Id": 6487, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2019-07-25T18:10:39", + "TransactionId": 88749289, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 952, + "CustomerInfo": 8653049, + "PaymentType": "Cash" + }, + { + "Id": 6488, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-05-04T18:06:12", + "TransactionId": 70758060, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 708, + "CustomerInfo": 79275926, + "PaymentType": "Debit Card" + }, + { + "Id": 6489, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2016-05-09T17:30:20", + "TransactionId": 29044439, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 826, + "CustomerInfo": 44229891, + "PaymentType": "Cash" + }, + { + "Id": 6490, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2019-07-07T13:40:22", + "TransactionId": 47332734, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 974, + "CustomerInfo": 84471119, + "PaymentType": "Credit Card" + }, + { + "Id": 6491, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2017-03-30T19:13:52", + "TransactionId": 30711378, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 427, + "CustomerInfo": 97214733, + "PaymentType": "Cash" + }, + { + "Id": 6492, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-06-01T13:45:24", + "TransactionId": 587513, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 774, + "CustomerInfo": 74165053, + "PaymentType": "Credit Card" + }, + { + "Id": 6493, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2019-05-31T16:56:04", + "TransactionId": 83645385, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 433, + "CustomerInfo": 49956740, + "PaymentType": "Debit Card" + }, + { + "Id": 6494, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-08-15T18:42:46", + "TransactionId": 76949871, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 858, + "CustomerInfo": 77829124, + "PaymentType": "Debit Card" + }, + { + "Id": 6495, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2019-04-17T15:30:06", + "TransactionId": 23098268, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 721, + "CustomerInfo": 41284633, + "PaymentType": "Cash" + }, + { + "Id": 6496, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-07-01T14:06:00", + "TransactionId": 2105703, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 245, + "CustomerInfo": 2710119, + "PaymentType": "Credit Card" + }, + { + "Id": 6497, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2016-03-04T08:44:44", + "TransactionId": 73016983, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 510, + "CustomerInfo": 38023651, + "PaymentType": "Cash" + }, + { + "Id": 6498, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2018-04-27T14:06:35", + "TransactionId": 24241168, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 923, + "CustomerInfo": 79561597, + "PaymentType": "Credit Card" + }, + { + "Id": 6499, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-01-17T13:04:57", + "TransactionId": 65603947, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 133, + "CustomerInfo": 52428570, + "PaymentType": "Debit Card" + }, + { + "Id": 6500, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2019-07-14T16:14:01", + "TransactionId": 6678484, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 794, + "CustomerInfo": 78258578, + "PaymentType": "Cash" + }, + { + "Id": 6501, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2016-07-20T13:57:04", + "TransactionId": 91218874, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 526, + "CustomerInfo": 69085764, + "PaymentType": "Debit Card" + }, + { + "Id": 6502, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2016-10-07T12:39:27", + "TransactionId": 28087322, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 794, + "CustomerInfo": 4386491, + "PaymentType": "Cash" + }, + { + "Id": 6503, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-10-26T17:53:23", + "TransactionId": 99246511, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 360, + "CustomerInfo": 30021139, + "PaymentType": "Credit Card" + }, + { + "Id": 6504, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-07-13T19:09:07", + "TransactionId": 27824009, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 27464341, + "PaymentType": "Debit Card" + }, + { + "Id": 6505, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2018-07-26T11:41:51", + "TransactionId": 6461089, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 175, + "CustomerInfo": 18492726, + "PaymentType": "Debit Card" + }, + { + "Id": 6506, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-04-27T07:09:42", + "TransactionId": 21924463, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 860, + "CustomerInfo": 84644655, + "PaymentType": "Debit Card" + }, + { + "Id": 6507, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2016-02-02T14:32:12", + "TransactionId": 76106018, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 326, + "CustomerInfo": 79115880, + "PaymentType": "Debit Card" + }, + { + "Id": 6508, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2016-06-09T07:28:51", + "TransactionId": 80736266, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 180, + "CustomerInfo": 6309174, + "PaymentType": "Cash" + }, + { + "Id": 6509, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-05-17T15:44:12", + "TransactionId": 62462221, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 998, + "CustomerInfo": 93766995, + "PaymentType": "Debit Card" + }, + { + "Id": 6510, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2018-07-10T10:36:55", + "TransactionId": 24215219, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 133, + "CustomerInfo": 8791394, + "PaymentType": "Credit Card" + }, + { + "Id": 6511, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2017-11-25T18:37:26", + "TransactionId": 64294308, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 912, + "CustomerInfo": 33295637, + "PaymentType": "Cash" + }, + { + "Id": 6512, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-10-02T13:20:04", + "TransactionId": 19701100, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 605, + "CustomerInfo": 5545192, + "PaymentType": "Debit Card" + }, + { + "Id": 6513, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-04-16T15:33:07", + "TransactionId": 48331535, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 480, + "CustomerInfo": 18390421, + "PaymentType": "Cash" + }, + { + "Id": 6514, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2019-12-09T12:13:41", + "TransactionId": 76644974, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 196, + "CustomerInfo": 47473219, + "PaymentType": "Debit Card" + }, + { + "Id": 6515, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2019-08-29T11:13:47", + "TransactionId": 1178541, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 593, + "CustomerInfo": 43591136, + "PaymentType": "Cash" + }, + { + "Id": 6516, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-09-12T09:22:36", + "TransactionId": 5355216, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 583, + "CustomerInfo": 60024604, + "PaymentType": "Credit Card" + }, + { + "Id": 6517, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-03-16T12:07:47", + "TransactionId": 96449756, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 302, + "CustomerInfo": 5379112, + "PaymentType": "Debit Card" + }, + { + "Id": 6518, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2018-12-23T14:35:31", + "TransactionId": 41592245, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 447, + "CustomerInfo": 47195201, + "PaymentType": "Cash" + }, + { + "Id": 6519, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2019-12-11T18:14:59", + "TransactionId": 93929801, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 295, + "CustomerInfo": 12398471, + "PaymentType": "Credit Card" + }, + { + "Id": 6520, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2017-04-25T12:47:48", + "TransactionId": 3519445, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 587, + "CustomerInfo": 81104360, + "PaymentType": "Debit Card" + }, + { + "Id": 6521, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-04-04T18:45:04", + "TransactionId": 53260645, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 836, + "CustomerInfo": 31278561, + "PaymentType": "Cash" + }, + { + "Id": 6522, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2016-08-22T15:10:31", + "TransactionId": 88382074, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 683, + "CustomerInfo": 76537276, + "PaymentType": "Cash" + }, + { + "Id": 6523, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2018-10-30T18:44:56", + "TransactionId": 95088460, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 844, + "CustomerInfo": 27642647, + "PaymentType": "Debit Card" + }, + { + "Id": 6524, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-01-23T15:36:52", + "TransactionId": 39765013, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 83, + "CustomerInfo": 24720597, + "PaymentType": "Cash" + }, + { + "Id": 6525, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2017-12-17T19:24:40", + "TransactionId": 92617734, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 22, + "CustomerInfo": 26974965, + "PaymentType": "Cash" + }, + { + "Id": 6526, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2019-04-14T09:46:31", + "TransactionId": 71625734, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 558, + "CustomerInfo": 37117900, + "PaymentType": "Credit Card" + }, + { + "Id": 6527, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2017-12-27T13:50:01", + "TransactionId": 88073843, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 403, + "CustomerInfo": 14959195, + "PaymentType": "Credit Card" + }, + { + "Id": 6528, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-03-13T16:32:18", + "TransactionId": 26155056, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 876, + "CustomerInfo": 82524673, + "PaymentType": "Cash" + }, + { + "Id": 6529, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2018-10-12T11:20:24", + "TransactionId": 50118317, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 625, + "CustomerInfo": 37179785, + "PaymentType": "Debit Card" + }, + { + "Id": 6530, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-01-04T14:47:46", + "TransactionId": 14044125, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 83, + "CustomerInfo": 69122054, + "PaymentType": "Debit Card" + }, + { + "Id": 6531, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-03-30T15:29:23", + "TransactionId": 67936594, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 232, + "CustomerInfo": 93752873, + "PaymentType": "Cash" + }, + { + "Id": 6532, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-12-10T09:34:16", + "TransactionId": 24135527, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 739, + "CustomerInfo": 3401341, + "PaymentType": "Cash" + }, + { + "Id": 6533, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-04-08T16:23:23", + "TransactionId": 41995183, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 730, + "CustomerInfo": 59211, + "PaymentType": "Credit Card" + }, + { + "Id": 6534, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2016-03-01T09:48:49", + "TransactionId": 77481512, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 202, + "CustomerInfo": 32836889, + "PaymentType": "Debit Card" + }, + { + "Id": 6535, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2019-08-22T14:39:16", + "TransactionId": 41547353, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 335, + "CustomerInfo": 64648104, + "PaymentType": "Credit Card" + }, + { + "Id": 6536, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-11-05T12:05:11", + "TransactionId": 85846217, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 245, + "CustomerInfo": 51927701, + "PaymentType": "Cash" + }, + { + "Id": 6537, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2017-01-06T12:50:15", + "TransactionId": 99942719, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 1000, + "CustomerInfo": 79180188, + "PaymentType": "Credit Card" + }, + { + "Id": 6538, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-01-05T10:32:10", + "TransactionId": 40002821, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 445, + "CustomerInfo": 88900140, + "PaymentType": "Credit Card" + }, + { + "Id": 6539, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-02-14T15:35:17", + "TransactionId": 15381514, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 45, + "CustomerInfo": 76984162, + "PaymentType": "Debit Card" + }, + { + "Id": 6540, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2019-02-08T13:33:45", + "TransactionId": 39811918, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 131, + "CustomerInfo": 56684825, + "PaymentType": "Credit Card" + }, + { + "Id": 6541, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2016-07-27T11:10:45", + "TransactionId": 19085638, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 591, + "CustomerInfo": 55891506, + "PaymentType": "Cash" + }, + { + "Id": 6542, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-03-25T16:29:17", + "TransactionId": 43001842, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 334, + "CustomerInfo": 24143547, + "PaymentType": "Credit Card" + }, + { + "Id": 6543, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-03-17T10:34:28", + "TransactionId": 81432352, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 71491084, + "PaymentType": "Cash" + }, + { + "Id": 6544, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-03-18T14:39:50", + "TransactionId": 865126, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 250, + "CustomerInfo": 41173167, + "PaymentType": "Credit Card" + }, + { + "Id": 6545, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2019-06-17T14:57:50", + "TransactionId": 70673650, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 496, + "CustomerInfo": 57906942, + "PaymentType": "Debit Card" + }, + { + "Id": 6546, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-11-07T14:46:54", + "TransactionId": 97205970, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 728, + "CustomerInfo": 93447410, + "PaymentType": "Cash" + }, + { + "Id": 6547, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-04-11T13:50:36", + "TransactionId": 21595363, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 626, + "CustomerInfo": 42013704, + "PaymentType": "Credit Card" + }, + { + "Id": 6548, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-08-17T10:58:22", + "TransactionId": 85803071, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 835, + "CustomerInfo": 84863161, + "PaymentType": "Debit Card" + }, + { + "Id": 6549, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-12-08T09:52:25", + "TransactionId": 97508707, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 219, + "CustomerInfo": 82206959, + "PaymentType": "Cash" + }, + { + "Id": 6550, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2017-07-22T16:42:06", + "TransactionId": 12291389, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 706, + "CustomerInfo": 14622045, + "PaymentType": "Debit Card" + }, + { + "Id": 6551, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2017-06-11T11:53:48", + "TransactionId": 27963823, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 843, + "CustomerInfo": 53539072, + "PaymentType": "Credit Card" + }, + { + "Id": 6552, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-06-07T08:15:22", + "TransactionId": 44472536, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 453, + "CustomerInfo": 15112403, + "PaymentType": "Credit Card" + }, + { + "Id": 6553, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2017-09-04T19:58:05", + "TransactionId": 80794500, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 699, + "CustomerInfo": 91063588, + "PaymentType": "Debit Card" + }, + { + "Id": 6554, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-10-16T19:45:59", + "TransactionId": 94357775, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 929, + "CustomerInfo": 22871838, + "PaymentType": "Cash" + }, + { + "Id": 6555, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2016-09-24T11:07:09", + "TransactionId": 53931380, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 740, + "CustomerInfo": 39863179, + "PaymentType": "Cash" + }, + { + "Id": 6556, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-03-06T12:20:01", + "TransactionId": 124921, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 297, + "CustomerInfo": 60498688, + "PaymentType": "Cash" + }, + { + "Id": 6557, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-06-14T13:58:39", + "TransactionId": 60440658, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 142, + "CustomerInfo": 96284473, + "PaymentType": "Debit Card" + }, + { + "Id": 6558, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-07-22T11:18:32", + "TransactionId": 76247007, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 868, + "CustomerInfo": 93903413, + "PaymentType": "Credit Card" + }, + { + "Id": 6559, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-10-13T15:16:16", + "TransactionId": 4190461, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 129, + "CustomerInfo": 31765994, + "PaymentType": "Credit Card" + }, + { + "Id": 6560, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2017-05-10T09:26:21", + "TransactionId": 55382499, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 87, + "CustomerInfo": 54803933, + "PaymentType": "Credit Card" + }, + { + "Id": 6561, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-07-31T17:10:02", + "TransactionId": 16232439, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 254, + "CustomerInfo": 95585210, + "PaymentType": "Cash" + }, + { + "Id": 6562, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2018-11-23T11:31:21", + "TransactionId": 3193180, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 410, + "CustomerInfo": 70438812, + "PaymentType": "Debit Card" + }, + { + "Id": 6563, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2018-04-16T15:56:10", + "TransactionId": 56588038, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 702, + "CustomerInfo": 119811, + "PaymentType": "Cash" + }, + { + "Id": 6564, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2018-03-01T10:25:41", + "TransactionId": 6679262, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 701, + "CustomerInfo": 13288468, + "PaymentType": "Cash" + }, + { + "Id": 6565, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2016-11-02T12:16:08", + "TransactionId": 85330722, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 810, + "CustomerInfo": 55997260, + "PaymentType": "Debit Card" + }, + { + "Id": 6566, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2018-02-20T11:01:32", + "TransactionId": 20913803, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 497, + "CustomerInfo": 54196365, + "PaymentType": "Cash" + }, + { + "Id": 6567, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2016-04-13T16:22:13", + "TransactionId": 55253009, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 353, + "CustomerInfo": 20375414, + "PaymentType": "Credit Card" + }, + { + "Id": 6568, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2017-10-19T08:26:01", + "TransactionId": 25444905, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 820, + "CustomerInfo": 31048910, + "PaymentType": "Cash" + }, + { + "Id": 6569, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-07-21T09:22:02", + "TransactionId": 15843299, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 260, + "CustomerInfo": 80312548, + "PaymentType": "Cash" + }, + { + "Id": 6570, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-07-04T11:07:44", + "TransactionId": 4571818, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 436, + "CustomerInfo": 85153191, + "PaymentType": "Debit Card" + }, + { + "Id": 6571, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-05-17T09:12:06", + "TransactionId": 45979935, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 988, + "CustomerInfo": 77594333, + "PaymentType": "Cash" + }, + { + "Id": 6572, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2017-11-27T14:26:44", + "TransactionId": 83635750, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 174, + "CustomerInfo": 69754271, + "PaymentType": "Credit Card" + }, + { + "Id": 6573, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2017-03-25T15:03:10", + "TransactionId": 92738799, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 309, + "CustomerInfo": 65108778, + "PaymentType": "Cash" + }, + { + "Id": 6574, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-09-08T08:10:28", + "TransactionId": 32198310, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 644, + "CustomerInfo": 12926655, + "PaymentType": "Cash" + }, + { + "Id": 6575, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2019-07-17T11:21:33", + "TransactionId": 77676872, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 684, + "CustomerInfo": 31630138, + "PaymentType": "Cash" + }, + { + "Id": 6576, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2019-08-12T10:14:01", + "TransactionId": 35316488, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 64611883, + "PaymentType": "Credit Card" + }, + { + "Id": 6577, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2019-07-30T17:49:55", + "TransactionId": 78871319, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 465, + "CustomerInfo": 82329577, + "PaymentType": "Cash" + }, + { + "Id": 6578, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2018-07-27T13:05:40", + "TransactionId": 55550081, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 490, + "CustomerInfo": 93794735, + "PaymentType": "Debit Card" + }, + { + "Id": 6579, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-03-07T19:49:18", + "TransactionId": 47867160, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 909, + "CustomerInfo": 15839124, + "PaymentType": "Credit Card" + }, + { + "Id": 6580, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2019-12-07T10:51:53", + "TransactionId": 14317884, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 371, + "CustomerInfo": 80976094, + "PaymentType": "Credit Card" + }, + { + "Id": 6581, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-11-02T18:27:56", + "TransactionId": 4073198, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 314, + "CustomerInfo": 78650422, + "PaymentType": "Credit Card" + }, + { + "Id": 6582, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-10-01T14:20:15", + "TransactionId": 17037924, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 4, + "CustomerInfo": 10998192, + "PaymentType": "Credit Card" + }, + { + "Id": 6583, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2016-05-11T07:28:42", + "TransactionId": 96367293, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 534, + "CustomerInfo": 17542146, + "PaymentType": "Debit Card" + }, + { + "Id": 6584, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2019-06-10T13:23:31", + "TransactionId": 25110298, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 766, + "CustomerInfo": 86693824, + "PaymentType": "Credit Card" + }, + { + "Id": 6585, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2016-05-31T07:38:21", + "TransactionId": 42377215, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 971, + "CustomerInfo": 54367900, + "PaymentType": "Credit Card" + }, + { + "Id": 6586, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2019-01-16T09:23:20", + "TransactionId": 39779290, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 668, + "CustomerInfo": 76903405, + "PaymentType": "Credit Card" + }, + { + "Id": 6587, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2016-01-29T09:31:15", + "TransactionId": 6761256, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 504, + "CustomerInfo": 93860139, + "PaymentType": "Debit Card" + }, + { + "Id": 6588, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-10-02T17:24:52", + "TransactionId": 26035188, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 807, + "CustomerInfo": 75436963, + "PaymentType": "Debit Card" + }, + { + "Id": 6589, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2018-06-01T11:23:08", + "TransactionId": 90555273, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 867, + "CustomerInfo": 36595558, + "PaymentType": "Debit Card" + }, + { + "Id": 6590, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2019-06-04T17:33:04", + "TransactionId": 98084242, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 912, + "CustomerInfo": 86377895, + "PaymentType": "Debit Card" + }, + { + "Id": 6591, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-01-20T14:55:24", + "TransactionId": 71021733, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 360, + "CustomerInfo": 11964012, + "PaymentType": "Credit Card" + }, + { + "Id": 6592, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2016-04-13T15:11:31", + "TransactionId": 58115902, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 235, + "CustomerInfo": 64377815, + "PaymentType": "Cash" + }, + { + "Id": 6593, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-08-19T19:11:00", + "TransactionId": 76711858, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 714, + "CustomerInfo": 51046189, + "PaymentType": "Cash" + }, + { + "Id": 6594, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-06-22T14:23:08", + "TransactionId": 91418243, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 652, + "CustomerInfo": 872507, + "PaymentType": "Credit Card" + }, + { + "Id": 6595, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2019-04-14T15:25:55", + "TransactionId": 95652923, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 57, + "CustomerInfo": 11743806, + "PaymentType": "Credit Card" + }, + { + "Id": 6596, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-03-20T16:44:07", + "TransactionId": 75627945, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 269, + "CustomerInfo": 54652192, + "PaymentType": "Cash" + }, + { + "Id": 6597, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-08-16T13:57:22", + "TransactionId": 97623031, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 52, + "CustomerInfo": 81881794, + "PaymentType": "Debit Card" + }, + { + "Id": 6598, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-06-10T18:37:00", + "TransactionId": 69733517, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 132, + "CustomerInfo": 81304780, + "PaymentType": "Credit Card" + }, + { + "Id": 6599, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2016-05-07T12:45:39", + "TransactionId": 74961425, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 766, + "CustomerInfo": 21310926, + "PaymentType": "Credit Card" + }, + { + "Id": 6600, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2018-09-01T17:43:44", + "TransactionId": 9070671, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 477, + "CustomerInfo": 64658940, + "PaymentType": "Debit Card" + }, + { + "Id": 6601, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-12-03T08:57:50", + "TransactionId": 63614756, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 518, + "CustomerInfo": 62949348, + "PaymentType": "Cash" + }, + { + "Id": 6602, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2017-04-21T16:54:12", + "TransactionId": 97688877, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 504, + "CustomerInfo": 11391229, + "PaymentType": "Cash" + }, + { + "Id": 6603, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2019-04-09T19:17:11", + "TransactionId": 78015547, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 724, + "CustomerInfo": 62351743, + "PaymentType": "Debit Card" + }, + { + "Id": 6604, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2017-03-18T07:38:30", + "TransactionId": 40357897, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 952, + "CustomerInfo": 67738378, + "PaymentType": "Credit Card" + }, + { + "Id": 6605, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-02-19T16:20:47", + "TransactionId": 81993759, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 4, + "CustomerInfo": 5198266, + "PaymentType": "Credit Card" + }, + { + "Id": 6606, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2018-10-28T18:09:30", + "TransactionId": 31344984, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 543, + "CustomerInfo": 40385876, + "PaymentType": "Debit Card" + }, + { + "Id": 6607, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2017-08-09T18:53:43", + "TransactionId": 5551448, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 226, + "CustomerInfo": 40638975, + "PaymentType": "Debit Card" + }, + { + "Id": 6608, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2018-01-04T14:28:28", + "TransactionId": 98209185, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 285, + "CustomerInfo": 81121500, + "PaymentType": "Cash" + }, + { + "Id": 6609, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2016-02-18T09:42:12", + "TransactionId": 26483970, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 582, + "CustomerInfo": 91817193, + "PaymentType": "Debit Card" + }, + { + "Id": 6610, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-07-01T09:04:11", + "TransactionId": 87668706, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 976, + "CustomerInfo": 89217572, + "PaymentType": "Cash" + }, + { + "Id": 6611, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-01-04T17:22:25", + "TransactionId": 35701983, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 665, + "CustomerInfo": 68211428, + "PaymentType": "Credit Card" + }, + { + "Id": 6612, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-07-09T13:43:32", + "TransactionId": 73343388, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 730, + "CustomerInfo": 43997449, + "PaymentType": "Cash" + }, + { + "Id": 6613, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2019-08-13T14:49:21", + "TransactionId": 24063374, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 813, + "CustomerInfo": 6819726, + "PaymentType": "Cash" + }, + { + "Id": 6614, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-05-30T08:08:01", + "TransactionId": 38544324, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 557, + "CustomerInfo": 39348594, + "PaymentType": "Debit Card" + }, + { + "Id": 6615, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-12-16T10:46:16", + "TransactionId": 2471641, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 9150158, + "PaymentType": "Cash" + }, + { + "Id": 6616, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-08-25T18:28:22", + "TransactionId": 86428721, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 135, + "CustomerInfo": 42607672, + "PaymentType": "Debit Card" + }, + { + "Id": 6617, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2016-01-18T08:49:55", + "TransactionId": 54523701, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 548, + "CustomerInfo": 687147, + "PaymentType": "Credit Card" + }, + { + "Id": 6618, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2018-07-20T10:17:54", + "TransactionId": 59216927, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 788, + "CustomerInfo": 58794293, + "PaymentType": "Debit Card" + }, + { + "Id": 6619, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2018-01-29T14:52:57", + "TransactionId": 35938278, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 251, + "CustomerInfo": 40734222, + "PaymentType": "Debit Card" + }, + { + "Id": 6620, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-04-07T10:15:01", + "TransactionId": 79265817, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 670, + "CustomerInfo": 11226669, + "PaymentType": "Credit Card" + }, + { + "Id": 6621, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2019-11-10T15:58:28", + "TransactionId": 41262179, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 952, + "CustomerInfo": 8773016, + "PaymentType": "Cash" + }, + { + "Id": 6622, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-09-11T16:30:00", + "TransactionId": 20033703, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 24859666, + "PaymentType": "Debit Card" + }, + { + "Id": 6623, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2016-12-25T11:47:02", + "TransactionId": 45458783, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 622, + "CustomerInfo": 58481716, + "PaymentType": "Credit Card" + }, + { + "Id": 6624, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2018-05-07T09:01:44", + "TransactionId": 76451004, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 149, + "CustomerInfo": 95962385, + "PaymentType": "Debit Card" + }, + { + "Id": 6625, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-07-03T11:44:01", + "TransactionId": 7797935, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 155, + "CustomerInfo": 82296253, + "PaymentType": "Debit Card" + }, + { + "Id": 6626, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2018-08-01T14:25:09", + "TransactionId": 44350768, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 513, + "CustomerInfo": 67795252, + "PaymentType": "Credit Card" + }, + { + "Id": 6627, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2017-11-16T11:24:52", + "TransactionId": 57615888, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 887, + "CustomerInfo": 7356863, + "PaymentType": "Credit Card" + }, + { + "Id": 6628, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2018-08-08T08:37:58", + "TransactionId": 4911027, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 220, + "CustomerInfo": 26251384, + "PaymentType": "Cash" + }, + { + "Id": 6629, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2019-07-28T18:15:59", + "TransactionId": 24718487, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 811, + "CustomerInfo": 35240241, + "PaymentType": "Debit Card" + }, + { + "Id": 6630, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-09-18T08:45:53", + "TransactionId": 54656006, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 952, + "CustomerInfo": 7631206, + "PaymentType": "Debit Card" + }, + { + "Id": 6631, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2016-07-21T13:36:29", + "TransactionId": 7293545, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 74, + "CustomerInfo": 36368279, + "PaymentType": "Cash" + }, + { + "Id": 6632, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2017-04-24T15:10:05", + "TransactionId": 50898575, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 461, + "CustomerInfo": 95323183, + "PaymentType": "Cash" + }, + { + "Id": 6633, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2016-09-12T11:29:28", + "TransactionId": 70166258, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 506, + "CustomerInfo": 9487368, + "PaymentType": "Credit Card" + }, + { + "Id": 6634, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-08-04T17:50:38", + "TransactionId": 25880515, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 786, + "CustomerInfo": 78133583, + "PaymentType": "Debit Card" + }, + { + "Id": 6635, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2016-04-28T07:06:32", + "TransactionId": 53772276, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 122, + "CustomerInfo": 19860427, + "PaymentType": "Credit Card" + }, + { + "Id": 6636, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2017-02-07T07:59:31", + "TransactionId": 15084130, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 802, + "CustomerInfo": 67397801, + "PaymentType": "Credit Card" + }, + { + "Id": 6637, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2018-06-22T14:51:04", + "TransactionId": 34057572, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 943, + "CustomerInfo": 80050179, + "PaymentType": "Debit Card" + }, + { + "Id": 6638, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-02-23T12:13:32", + "TransactionId": 20656045, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 887, + "CustomerInfo": 2905199, + "PaymentType": "Debit Card" + }, + { + "Id": 6639, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2016-06-04T12:34:34", + "TransactionId": 72188774, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 508, + "CustomerInfo": 27439232, + "PaymentType": "Debit Card" + }, + { + "Id": 6640, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-04-09T14:18:58", + "TransactionId": 55730262, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 75432151, + "PaymentType": "Cash" + }, + { + "Id": 6641, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2016-06-17T08:02:41", + "TransactionId": 92791022, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 907, + "CustomerInfo": 67330784, + "PaymentType": "Debit Card" + }, + { + "Id": 6642, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-05-13T07:24:49", + "TransactionId": 62772509, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 730, + "CustomerInfo": 98889978, + "PaymentType": "Credit Card" + }, + { + "Id": 6643, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2019-11-23T08:46:19", + "TransactionId": 67961889, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 228, + "CustomerInfo": 7372421, + "PaymentType": "Debit Card" + }, + { + "Id": 6644, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-07-15T07:10:42", + "TransactionId": 35627535, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 392, + "CustomerInfo": 70923007, + "PaymentType": "Cash" + }, + { + "Id": 6645, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-04-18T15:18:52", + "TransactionId": 95762811, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 512, + "CustomerInfo": 58244944, + "PaymentType": "Cash" + }, + { + "Id": 6646, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2019-07-18T14:18:32", + "TransactionId": 23263059, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 749, + "CustomerInfo": 19596155, + "PaymentType": "Debit Card" + }, + { + "Id": 6647, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2017-10-01T17:09:53", + "TransactionId": 54542620, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 96, + "CustomerInfo": 35058338, + "PaymentType": "Credit Card" + }, + { + "Id": 6648, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2017-06-17T15:00:43", + "TransactionId": 63987849, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 276, + "CustomerInfo": 77259210, + "PaymentType": "Credit Card" + }, + { + "Id": 6649, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-09-17T19:04:57", + "TransactionId": 91472583, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 910, + "CustomerInfo": 56922117, + "PaymentType": "Credit Card" + }, + { + "Id": 6650, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-11-04T18:46:05", + "TransactionId": 5207941, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 518, + "CustomerInfo": 45945878, + "PaymentType": "Cash" + }, + { + "Id": 6651, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2017-01-20T08:21:16", + "TransactionId": 49002149, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 290, + "CustomerInfo": 53065843, + "PaymentType": "Debit Card" + }, + { + "Id": 6652, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-04-07T16:36:37", + "TransactionId": 70647290, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 411, + "CustomerInfo": 69453813, + "PaymentType": "Credit Card" + }, + { + "Id": 6653, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2017-11-14T13:18:46", + "TransactionId": 21520214, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 581, + "CustomerInfo": 75412418, + "PaymentType": "Credit Card" + }, + { + "Id": 6654, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-06-15T12:44:04", + "TransactionId": 53578604, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 530, + "CustomerInfo": 10529049, + "PaymentType": "Credit Card" + }, + { + "Id": 6655, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-02-28T09:43:21", + "TransactionId": 58755964, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 345, + "CustomerInfo": 13515010, + "PaymentType": "Cash" + }, + { + "Id": 6656, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2019-11-25T19:56:30", + "TransactionId": 9168265, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 948, + "CustomerInfo": 96525723, + "PaymentType": "Cash" + }, + { + "Id": 6657, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-04-14T16:15:10", + "TransactionId": 73745915, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 11, + "CustomerInfo": 97574263, + "PaymentType": "Cash" + }, + { + "Id": 6658, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-01-17T12:18:26", + "TransactionId": 21217221, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 9709502, + "PaymentType": "Cash" + }, + { + "Id": 6659, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2017-01-08T08:20:59", + "TransactionId": 23400901, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 169, + "CustomerInfo": 71615259, + "PaymentType": "Cash" + }, + { + "Id": 6660, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-08-25T12:56:10", + "TransactionId": 11169894, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 404, + "CustomerInfo": 29368367, + "PaymentType": "Cash" + }, + { + "Id": 6661, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-02-12T18:52:25", + "TransactionId": 37918053, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 595, + "CustomerInfo": 20841293, + "PaymentType": "Credit Card" + }, + { + "Id": 6662, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2016-12-17T08:32:12", + "TransactionId": 51536043, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 685, + "CustomerInfo": 95027961, + "PaymentType": "Credit Card" + }, + { + "Id": 6663, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2017-01-18T11:01:06", + "TransactionId": 26352789, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 981, + "CustomerInfo": 52373908, + "PaymentType": "Cash" + }, + { + "Id": 6664, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2018-01-14T16:57:13", + "TransactionId": 21911611, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 415, + "CustomerInfo": 30629637, + "PaymentType": "Credit Card" + }, + { + "Id": 6665, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-03-03T10:16:19", + "TransactionId": 94410755, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 109, + "CustomerInfo": 97692931, + "PaymentType": "Cash" + }, + { + "Id": 6666, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2018-09-26T19:58:57", + "TransactionId": 35138253, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 84603859, + "PaymentType": "Debit Card" + }, + { + "Id": 6667, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2019-10-18T19:44:41", + "TransactionId": 39288465, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 775, + "CustomerInfo": 39119112, + "PaymentType": "Debit Card" + }, + { + "Id": 6668, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-10-01T17:23:00", + "TransactionId": 13995966, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 652, + "CustomerInfo": 47301663, + "PaymentType": "Credit Card" + }, + { + "Id": 6669, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2018-05-10T17:12:12", + "TransactionId": 37982497, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 338, + "CustomerInfo": 48411128, + "PaymentType": "Debit Card" + }, + { + "Id": 6670, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2016-11-29T18:41:54", + "TransactionId": 76728564, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 972, + "CustomerInfo": 58876727, + "PaymentType": "Debit Card" + }, + { + "Id": 6671, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2018-07-21T14:08:10", + "TransactionId": 60973354, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 813, + "CustomerInfo": 41418362, + "PaymentType": "Debit Card" + }, + { + "Id": 6672, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-12-21T12:56:53", + "TransactionId": 19372066, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 808, + "CustomerInfo": 68561681, + "PaymentType": "Credit Card" + }, + { + "Id": 6673, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-03-25T13:25:24", + "TransactionId": 86828487, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 230, + "CustomerInfo": 13571730, + "PaymentType": "Debit Card" + }, + { + "Id": 6674, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2017-04-27T18:23:28", + "TransactionId": 61902886, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 892, + "CustomerInfo": 46311343, + "PaymentType": "Credit Card" + }, + { + "Id": 6675, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-12-09T07:48:17", + "TransactionId": 25451063, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 670, + "CustomerInfo": 92826221, + "PaymentType": "Credit Card" + }, + { + "Id": 6676, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2016-10-21T09:19:09", + "TransactionId": 19897133, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 961, + "CustomerInfo": 43368684, + "PaymentType": "Cash" + }, + { + "Id": 6677, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2019-09-14T17:01:15", + "TransactionId": 52449236, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 796, + "CustomerInfo": 23792311, + "PaymentType": "Debit Card" + }, + { + "Id": 6678, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2018-11-07T19:26:33", + "TransactionId": 37985129, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 203, + "CustomerInfo": 8759358, + "PaymentType": "Cash" + }, + { + "Id": 6679, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-07-31T10:17:28", + "TransactionId": 66453062, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 420, + "CustomerInfo": 19579175, + "PaymentType": "Debit Card" + }, + { + "Id": 6680, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2019-11-19T19:21:04", + "TransactionId": 46890406, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 211, + "CustomerInfo": 73114827, + "PaymentType": "Cash" + }, + { + "Id": 6681, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2018-08-21T14:41:25", + "TransactionId": 94270952, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 213, + "CustomerInfo": 15781614, + "PaymentType": "Cash" + }, + { + "Id": 6682, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2019-10-13T07:02:21", + "TransactionId": 19195240, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 329, + "CustomerInfo": 13261975, + "PaymentType": "Debit Card" + }, + { + "Id": 6683, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2018-03-09T15:27:04", + "TransactionId": 46511078, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 992, + "CustomerInfo": 446471, + "PaymentType": "Credit Card" + }, + { + "Id": 6684, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2018-04-08T12:02:36", + "TransactionId": 93376206, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 884, + "CustomerInfo": 89675281, + "PaymentType": "Cash" + }, + { + "Id": 6685, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2018-04-30T11:55:32", + "TransactionId": 66944693, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 172, + "CustomerInfo": 17004507, + "PaymentType": "Debit Card" + }, + { + "Id": 6686, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2018-03-19T08:50:47", + "TransactionId": 82949335, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 505, + "CustomerInfo": 31774793, + "PaymentType": "Cash" + }, + { + "Id": 6687, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2016-07-12T12:44:21", + "TransactionId": 51417137, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 521, + "CustomerInfo": 26225603, + "PaymentType": "Credit Card" + }, + { + "Id": 6688, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2019-01-30T11:20:50", + "TransactionId": 46134792, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 809, + "CustomerInfo": 78938644, + "PaymentType": "Credit Card" + }, + { + "Id": 6689, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2017-07-13T12:21:19", + "TransactionId": 98800006, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 935, + "CustomerInfo": 31428151, + "PaymentType": "Credit Card" + }, + { + "Id": 6690, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-09-22T07:47:51", + "TransactionId": 20018007, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 756, + "CustomerInfo": 18266241, + "PaymentType": "Credit Card" + }, + { + "Id": 6691, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-05-21T09:54:00", + "TransactionId": 11234109, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 376, + "CustomerInfo": 76824313, + "PaymentType": "Cash" + }, + { + "Id": 6692, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-06-14T16:43:15", + "TransactionId": 9496171, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 641, + "CustomerInfo": 79174098, + "PaymentType": "Credit Card" + }, + { + "Id": 6693, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2016-05-14T13:25:24", + "TransactionId": 56155234, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 399, + "CustomerInfo": 6502322, + "PaymentType": "Cash" + }, + { + "Id": 6694, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-04-13T16:45:24", + "TransactionId": 42701923, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 185, + "CustomerInfo": 71198859, + "PaymentType": "Debit Card" + }, + { + "Id": 6695, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-07-16T13:18:55", + "TransactionId": 35391182, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 350, + "CustomerInfo": 17239646, + "PaymentType": "Credit Card" + }, + { + "Id": 6696, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-02-28T13:57:48", + "TransactionId": 24454671, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 116, + "CustomerInfo": 58013737, + "PaymentType": "Debit Card" + }, + { + "Id": 6697, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-10-13T14:27:01", + "TransactionId": 48793391, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 934, + "CustomerInfo": 52431624, + "PaymentType": "Cash" + }, + { + "Id": 6698, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-01-05T08:39:07", + "TransactionId": 80351499, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 177, + "CustomerInfo": 23785465, + "PaymentType": "Cash" + }, + { + "Id": 6699, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2017-02-19T18:59:28", + "TransactionId": 37806878, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 239, + "CustomerInfo": 58297927, + "PaymentType": "Credit Card" + }, + { + "Id": 6700, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2019-06-06T07:29:00", + "TransactionId": 43439497, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 25238034, + "PaymentType": "Credit Card" + }, + { + "Id": 6701, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2019-04-28T13:58:05", + "TransactionId": 4782107, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 330, + "CustomerInfo": 10874522, + "PaymentType": "Credit Card" + }, + { + "Id": 6702, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2019-01-16T07:09:59", + "TransactionId": 35776178, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 434, + "CustomerInfo": 53250314, + "PaymentType": "Cash" + }, + { + "Id": 6703, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2018-06-01T11:20:50", + "TransactionId": 9670191, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 85723340, + "PaymentType": "Credit Card" + }, + { + "Id": 6704, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2017-04-16T10:41:05", + "TransactionId": 65941150, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 572, + "CustomerInfo": 93172647, + "PaymentType": "Cash" + }, + { + "Id": 6705, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-06-27T17:47:46", + "TransactionId": 17746023, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 876, + "CustomerInfo": 51861441, + "PaymentType": "Credit Card" + }, + { + "Id": 6706, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-06-25T11:36:23", + "TransactionId": 98605624, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 835, + "CustomerInfo": 56876330, + "PaymentType": "Credit Card" + }, + { + "Id": 6707, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2017-10-11T19:48:09", + "TransactionId": 40384537, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 696, + "CustomerInfo": 19173459, + "PaymentType": "Credit Card" + }, + { + "Id": 6708, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-12-23T19:32:10", + "TransactionId": 83661359, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 289, + "CustomerInfo": 33360852, + "PaymentType": "Debit Card" + }, + { + "Id": 6709, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2016-08-13T18:34:25", + "TransactionId": 46233082, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 188, + "CustomerInfo": 86488480, + "PaymentType": "Credit Card" + }, + { + "Id": 6710, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2019-07-16T11:16:22", + "TransactionId": 88747532, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 89, + "CustomerInfo": 81359895, + "PaymentType": "Cash" + }, + { + "Id": 6711, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2018-01-29T19:58:39", + "TransactionId": 39159456, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 772, + "CustomerInfo": 11235330, + "PaymentType": "Cash" + }, + { + "Id": 6712, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2019-05-03T15:34:34", + "TransactionId": 85102263, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 874, + "CustomerInfo": 54131420, + "PaymentType": "Credit Card" + }, + { + "Id": 6713, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2018-07-16T19:07:06", + "TransactionId": 16834733, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 917, + "CustomerInfo": 9460740, + "PaymentType": "Credit Card" + }, + { + "Id": 6714, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-09-15T15:25:38", + "TransactionId": 23456560, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 89134813, + "PaymentType": "Cash" + }, + { + "Id": 6715, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2019-05-04T19:49:26", + "TransactionId": 24240310, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 136, + "CustomerInfo": 71153442, + "PaymentType": "Credit Card" + }, + { + "Id": 6716, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2017-12-10T11:01:32", + "TransactionId": 10516646, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 857, + "CustomerInfo": 75823433, + "PaymentType": "Debit Card" + }, + { + "Id": 6717, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-08-16T13:47:43", + "TransactionId": 6934595, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 821, + "CustomerInfo": 21668595, + "PaymentType": "Debit Card" + }, + { + "Id": 6718, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-01-19T18:24:46", + "TransactionId": 55857609, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 589, + "CustomerInfo": 12218214, + "PaymentType": "Cash" + }, + { + "Id": 6719, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2016-03-28T13:22:05", + "TransactionId": 99082179, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 271, + "CustomerInfo": 72890683, + "PaymentType": "Credit Card" + }, + { + "Id": 6720, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-06-21T18:00:43", + "TransactionId": 66845198, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 698, + "CustomerInfo": 97181001, + "PaymentType": "Cash" + }, + { + "Id": 6721, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2019-05-11T11:53:40", + "TransactionId": 59718386, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 443, + "CustomerInfo": 26962786, + "PaymentType": "Cash" + }, + { + "Id": 6722, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-07-06T10:24:32", + "TransactionId": 54776862, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 600, + "CustomerInfo": 12347661, + "PaymentType": "Debit Card" + }, + { + "Id": 6723, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2016-10-03T08:45:19", + "TransactionId": 13748689, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 115, + "CustomerInfo": 71700315, + "PaymentType": "Debit Card" + }, + { + "Id": 6724, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2017-10-18T16:08:24", + "TransactionId": 76503531, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 870, + "CustomerInfo": 19381867, + "PaymentType": "Credit Card" + }, + { + "Id": 6725, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2017-08-03T19:08:24", + "TransactionId": 86164859, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 598, + "CustomerInfo": 57907008, + "PaymentType": "Cash" + }, + { + "Id": 6726, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2017-08-05T15:12:06", + "TransactionId": 87145954, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 584, + "CustomerInfo": 12260740, + "PaymentType": "Cash" + }, + { + "Id": 6727, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-06-30T18:29:14", + "TransactionId": 53921487, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 530, + "CustomerInfo": 31048283, + "PaymentType": "Debit Card" + }, + { + "Id": 6728, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-03-21T18:35:25", + "TransactionId": 33854785, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 153, + "CustomerInfo": 16668345, + "PaymentType": "Credit Card" + }, + { + "Id": 6729, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-07-08T15:54:00", + "TransactionId": 15580439, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 160, + "CustomerInfo": 45831049, + "PaymentType": "Cash" + }, + { + "Id": 6730, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-06-21T14:38:15", + "TransactionId": 70410861, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 414, + "CustomerInfo": 48446607, + "PaymentType": "Cash" + }, + { + "Id": 6731, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-12-12T17:18:23", + "TransactionId": 47641973, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 59, + "CustomerInfo": 61642977, + "PaymentType": "Credit Card" + }, + { + "Id": 6732, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-04-15T14:01:06", + "TransactionId": 7503759, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 60766587, + "PaymentType": "Cash" + }, + { + "Id": 6733, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2018-05-16T18:16:25", + "TransactionId": 51433473, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 626, + "CustomerInfo": 57925444, + "PaymentType": "Debit Card" + }, + { + "Id": 6734, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2018-07-07T13:11:17", + "TransactionId": 17849753, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 98043964, + "PaymentType": "Cash" + }, + { + "Id": 6735, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2017-03-29T10:17:37", + "TransactionId": 79436227, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 859, + "CustomerInfo": 57664552, + "PaymentType": "Debit Card" + }, + { + "Id": 6736, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2017-03-19T08:50:56", + "TransactionId": 22958654, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 408, + "CustomerInfo": 4408798, + "PaymentType": "Debit Card" + }, + { + "Id": 6737, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-09-18T14:11:46", + "TransactionId": 52767599, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 824, + "CustomerInfo": 75663049, + "PaymentType": "Cash" + }, + { + "Id": 6738, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-11-30T16:13:52", + "TransactionId": 39569330, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 757, + "CustomerInfo": 65767825, + "PaymentType": "Credit Card" + }, + { + "Id": 6739, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2016-08-20T18:25:21", + "TransactionId": 22788736, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 220, + "CustomerInfo": 68465578, + "PaymentType": "Credit Card" + }, + { + "Id": 6740, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-02-21T08:03:24", + "TransactionId": 17308736, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 708, + "CustomerInfo": 14077848, + "PaymentType": "Credit Card" + }, + { + "Id": 6741, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2019-10-10T08:42:00", + "TransactionId": 39011673, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 280, + "CustomerInfo": 59087979, + "PaymentType": "Debit Card" + }, + { + "Id": 6742, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-07-23T14:28:11", + "TransactionId": 78237295, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 214, + "CustomerInfo": 14919665, + "PaymentType": "Debit Card" + }, + { + "Id": 6743, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2019-06-05T18:35:43", + "TransactionId": 29293270, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 236, + "CustomerInfo": 60486597, + "PaymentType": "Credit Card" + }, + { + "Id": 6744, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2016-01-28T12:17:08", + "TransactionId": 35227982, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 636, + "CustomerInfo": 7813397, + "PaymentType": "Credit Card" + }, + { + "Id": 6745, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-02-16T19:46:34", + "TransactionId": 7694789, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 334, + "CustomerInfo": 26975290, + "PaymentType": "Cash" + }, + { + "Id": 6746, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-12-15T11:23:25", + "TransactionId": 21749049, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 943, + "CustomerInfo": 31390487, + "PaymentType": "Credit Card" + }, + { + "Id": 6747, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2016-06-07T13:12:35", + "TransactionId": 24860945, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 229, + "CustomerInfo": 59132457, + "PaymentType": "Cash" + }, + { + "Id": 6748, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2016-12-14T15:32:24", + "TransactionId": 45623578, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 79, + "CustomerInfo": 28108083, + "PaymentType": "Cash" + }, + { + "Id": 6749, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2018-08-07T14:35:23", + "TransactionId": 59091864, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 14, + "CustomerInfo": 66357426, + "PaymentType": "Cash" + }, + { + "Id": 6750, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-10-26T15:00:00", + "TransactionId": 38736203, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 56, + "CustomerInfo": 92990357, + "PaymentType": "Debit Card" + }, + { + "Id": 6751, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2019-01-21T16:42:06", + "TransactionId": 78755459, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 414, + "CustomerInfo": 83696479, + "PaymentType": "Credit Card" + }, + { + "Id": 6752, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2018-09-17T14:15:48", + "TransactionId": 61126259, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 189, + "CustomerInfo": 10194492, + "PaymentType": "Cash" + }, + { + "Id": 6753, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-06-18T14:53:31", + "TransactionId": 49217627, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 110, + "CustomerInfo": 95853417, + "PaymentType": "Cash" + }, + { + "Id": 6754, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2016-02-04T09:06:20", + "TransactionId": 51924066, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 980, + "CustomerInfo": 96352339, + "PaymentType": "Debit Card" + }, + { + "Id": 6755, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2017-04-10T16:54:46", + "TransactionId": 47090664, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 905, + "CustomerInfo": 38661493, + "PaymentType": "Cash" + }, + { + "Id": 6756, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-07-17T12:15:16", + "TransactionId": 88479888, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 84762753, + "PaymentType": "Credit Card" + }, + { + "Id": 6757, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2019-11-05T16:09:42", + "TransactionId": 68527618, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 161, + "CustomerInfo": 39615373, + "PaymentType": "Debit Card" + }, + { + "Id": 6758, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2018-07-02T17:45:45", + "TransactionId": 71903314, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 336, + "CustomerInfo": 27488684, + "PaymentType": "Cash" + }, + { + "Id": 6759, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-05-11T08:22:25", + "TransactionId": 71666629, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 229, + "CustomerInfo": 50531961, + "PaymentType": "Cash" + }, + { + "Id": 6760, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2018-04-06T19:06:32", + "TransactionId": 49610755, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 515, + "CustomerInfo": 28030683, + "PaymentType": "Credit Card" + }, + { + "Id": 6761, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-06-19T11:21:16", + "TransactionId": 66257970, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 33203148, + "PaymentType": "Credit Card" + }, + { + "Id": 6762, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2019-12-29T19:42:40", + "TransactionId": 69114754, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 34, + "CustomerInfo": 77879456, + "PaymentType": "Debit Card" + }, + { + "Id": 6763, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2016-12-12T13:12:00", + "TransactionId": 55848415, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 396, + "CustomerInfo": 39500408, + "PaymentType": "Cash" + }, + { + "Id": 6764, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-07-10T07:31:35", + "TransactionId": 60974947, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 260, + "CustomerInfo": 98598075, + "PaymentType": "Cash" + }, + { + "Id": 6765, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-09-29T16:48:35", + "TransactionId": 79606848, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 673, + "CustomerInfo": 42714386, + "PaymentType": "Credit Card" + }, + { + "Id": 6766, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2018-09-16T17:46:54", + "TransactionId": 63929298, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 647, + "CustomerInfo": 14449879, + "PaymentType": "Debit Card" + }, + { + "Id": 6767, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-06-26T18:17:25", + "TransactionId": 48889617, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 822, + "CustomerInfo": 62536867, + "PaymentType": "Cash" + }, + { + "Id": 6768, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-07-17T09:19:09", + "TransactionId": 76461745, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 809, + "CustomerInfo": 47847262, + "PaymentType": "Cash" + }, + { + "Id": 6769, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2017-08-17T13:15:19", + "TransactionId": 16943084, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 928, + "CustomerInfo": 90575308, + "PaymentType": "Debit Card" + }, + { + "Id": 6770, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-05-25T16:03:30", + "TransactionId": 15546380, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 979, + "CustomerInfo": 61062988, + "PaymentType": "Debit Card" + }, + { + "Id": 6771, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2017-05-22T12:09:13", + "TransactionId": 37853003, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 528, + "CustomerInfo": 20145317, + "PaymentType": "Credit Card" + }, + { + "Id": 6772, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-06-02T18:33:59", + "TransactionId": 23777759, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 393, + "CustomerInfo": 90298067, + "PaymentType": "Credit Card" + }, + { + "Id": 6773, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-11-22T09:08:21", + "TransactionId": 72903737, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 40, + "CustomerInfo": 75132551, + "PaymentType": "Credit Card" + }, + { + "Id": 6774, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-07-02T12:10:48", + "TransactionId": 23903656, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 495, + "CustomerInfo": 19707348, + "PaymentType": "Cash" + }, + { + "Id": 6775, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2017-01-29T11:12:37", + "TransactionId": 25388442, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 500, + "CustomerInfo": 91214413, + "PaymentType": "Debit Card" + }, + { + "Id": 6776, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-05-20T09:51:16", + "TransactionId": 80838245, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 874, + "CustomerInfo": 36372916, + "PaymentType": "Credit Card" + }, + { + "Id": 6777, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2016-05-20T10:52:02", + "TransactionId": 44542081, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 5, + "CustomerInfo": 98903276, + "PaymentType": "Credit Card" + }, + { + "Id": 6778, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2016-11-20T09:55:09", + "TransactionId": 47795368, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 917, + "CustomerInfo": 26309585, + "PaymentType": "Debit Card" + }, + { + "Id": 6779, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-09-06T16:02:21", + "TransactionId": 51003089, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 176, + "CustomerInfo": 70534087, + "PaymentType": "Credit Card" + }, + { + "Id": 6780, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2016-03-01T14:16:31", + "TransactionId": 82180431, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 890, + "CustomerInfo": 42446263, + "PaymentType": "Cash" + }, + { + "Id": 6781, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-08-15T10:45:07", + "TransactionId": 55158142, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 790, + "CustomerInfo": 63478081, + "PaymentType": "Cash" + }, + { + "Id": 6782, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2016-07-24T12:30:14", + "TransactionId": 45149613, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 417, + "CustomerInfo": 31653585, + "PaymentType": "Debit Card" + }, + { + "Id": 6783, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-01-27T13:19:21", + "TransactionId": 14061704, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 117, + "CustomerInfo": 33583470, + "PaymentType": "Debit Card" + }, + { + "Id": 6784, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-02-23T10:16:36", + "TransactionId": 24415189, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 267, + "CustomerInfo": 88668991, + "PaymentType": "Credit Card" + }, + { + "Id": 6785, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-11-28T14:39:07", + "TransactionId": 27062495, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 613, + "CustomerInfo": 78013782, + "PaymentType": "Debit Card" + }, + { + "Id": 6786, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-04-18T15:59:28", + "TransactionId": 60369673, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 116, + "CustomerInfo": 40266723, + "PaymentType": "Cash" + }, + { + "Id": 6787, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-12-28T17:58:08", + "TransactionId": 76029290, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 85, + "CustomerInfo": 33007232, + "PaymentType": "Debit Card" + }, + { + "Id": 6788, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2019-10-02T12:46:57", + "TransactionId": 84208384, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 448, + "CustomerInfo": 85972771, + "PaymentType": "Cash" + }, + { + "Id": 6789, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2017-01-18T15:03:10", + "TransactionId": 16913595, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 364, + "CustomerInfo": 2843973, + "PaymentType": "Debit Card" + }, + { + "Id": 6790, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2019-10-01T16:02:04", + "TransactionId": 81354929, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 622, + "CustomerInfo": 95813054, + "PaymentType": "Debit Card" + }, + { + "Id": 6791, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2018-12-19T09:04:02", + "TransactionId": 76961492, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 471, + "CustomerInfo": 15910825, + "PaymentType": "Credit Card" + }, + { + "Id": 6792, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2016-04-28T11:10:45", + "TransactionId": 62844807, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 855, + "CustomerInfo": 4558047, + "PaymentType": "Credit Card" + }, + { + "Id": 6793, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-04-23T16:41:48", + "TransactionId": 35589431, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 769, + "CustomerInfo": 79412148, + "PaymentType": "Debit Card" + }, + { + "Id": 6794, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-12-15T13:09:33", + "TransactionId": 34860673, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 469, + "CustomerInfo": 3631079, + "PaymentType": "Debit Card" + }, + { + "Id": 6795, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-03-19T09:42:46", + "TransactionId": 14944993, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 999, + "CustomerInfo": 61546651, + "PaymentType": "Credit Card" + }, + { + "Id": 6796, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2019-09-07T17:35:23", + "TransactionId": 35894279, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 685, + "CustomerInfo": 25894996, + "PaymentType": "Cash" + }, + { + "Id": 6797, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2019-10-28T11:49:21", + "TransactionId": 42596879, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 164, + "CustomerInfo": 97652769, + "PaymentType": "Debit Card" + }, + { + "Id": 6798, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-12-10T08:16:57", + "TransactionId": 15439189, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 265, + "CustomerInfo": 27633956, + "PaymentType": "Debit Card" + }, + { + "Id": 6799, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2018-11-29T17:05:25", + "TransactionId": 91878719, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 898, + "CustomerInfo": 44570471, + "PaymentType": "Credit Card" + }, + { + "Id": 6800, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2018-11-08T12:21:53", + "TransactionId": 25964319, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 3967293, + "PaymentType": "Cash" + }, + { + "Id": 6801, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-04-04T11:44:53", + "TransactionId": 36217295, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 841, + "CustomerInfo": 5216594, + "PaymentType": "Credit Card" + }, + { + "Id": 6802, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-08-22T18:39:01", + "TransactionId": 62265696, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 407, + "CustomerInfo": 77910995, + "PaymentType": "Credit Card" + }, + { + "Id": 6803, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-06-09T08:44:10", + "TransactionId": 71857411, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 259, + "CustomerInfo": 99088458, + "PaymentType": "Credit Card" + }, + { + "Id": 6804, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2017-05-29T10:58:31", + "TransactionId": 51967420, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 306, + "CustomerInfo": 79733073, + "PaymentType": "Credit Card" + }, + { + "Id": 6805, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-12-10T16:46:08", + "TransactionId": 77410663, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 655, + "CustomerInfo": 89714695, + "PaymentType": "Cash" + }, + { + "Id": 6806, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2017-12-03T08:30:29", + "TransactionId": 39455849, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 32, + "CustomerInfo": 97101371, + "PaymentType": "Cash" + }, + { + "Id": 6807, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-08-13T14:35:48", + "TransactionId": 27613216, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 22, + "CustomerInfo": 4514873, + "PaymentType": "Cash" + }, + { + "Id": 6808, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2017-11-27T13:40:39", + "TransactionId": 4204778, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 858, + "CustomerInfo": 31522958, + "PaymentType": "Credit Card" + }, + { + "Id": 6809, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2018-01-17T15:42:37", + "TransactionId": 959717, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 646, + "CustomerInfo": 93728142, + "PaymentType": "Cash" + }, + { + "Id": 6810, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2017-01-12T19:08:41", + "TransactionId": 58718735, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 373, + "CustomerInfo": 80126428, + "PaymentType": "Cash" + }, + { + "Id": 6811, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-10-04T13:03:48", + "TransactionId": 39506477, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 202, + "CustomerInfo": 60422755, + "PaymentType": "Debit Card" + }, + { + "Id": 6812, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2016-04-29T10:03:39", + "TransactionId": 32811432, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 645, + "CustomerInfo": 2225310, + "PaymentType": "Debit Card" + }, + { + "Id": 6813, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-11-12T17:08:44", + "TransactionId": 56969477, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 217, + "CustomerInfo": 45008676, + "PaymentType": "Credit Card" + }, + { + "Id": 6814, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-05-24T15:10:31", + "TransactionId": 73743026, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 499, + "CustomerInfo": 41167573, + "PaymentType": "Credit Card" + }, + { + "Id": 6815, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2017-02-10T09:55:00", + "TransactionId": 94166607, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 49, + "CustomerInfo": 8128924, + "PaymentType": "Debit Card" + }, + { + "Id": 6816, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-11-12T07:25:32", + "TransactionId": 95501735, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 244, + "CustomerInfo": 3372889, + "PaymentType": "Cash" + }, + { + "Id": 6817, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-03-15T17:41:00", + "TransactionId": 76833684, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 520, + "CustomerInfo": 48260136, + "PaymentType": "Debit Card" + }, + { + "Id": 6818, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2018-12-01T17:45:36", + "TransactionId": 10351806, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 397, + "CustomerInfo": 18049602, + "PaymentType": "Credit Card" + }, + { + "Id": 6819, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-12-07T11:26:27", + "TransactionId": 84028430, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 84070923, + "PaymentType": "Debit Card" + }, + { + "Id": 6820, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2019-04-20T12:18:09", + "TransactionId": 29521042, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 945, + "CustomerInfo": 59584794, + "PaymentType": "Cash" + }, + { + "Id": 6821, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-08-29T18:50:41", + "TransactionId": 11931377, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 466, + "CustomerInfo": 12715611, + "PaymentType": "Debit Card" + }, + { + "Id": 6822, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2018-05-20T07:46:51", + "TransactionId": 83583441, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 144, + "CustomerInfo": 96518282, + "PaymentType": "Debit Card" + }, + { + "Id": 6823, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2019-05-03T09:19:09", + "TransactionId": 12561189, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 199, + "CustomerInfo": 92284471, + "PaymentType": "Debit Card" + }, + { + "Id": 6824, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-05-18T15:31:41", + "TransactionId": 6137554, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 705, + "CustomerInfo": 22315332, + "PaymentType": "Debit Card" + }, + { + "Id": 6825, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-09-21T14:16:22", + "TransactionId": 5129936, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 588, + "CustomerInfo": 46282650, + "PaymentType": "Credit Card" + }, + { + "Id": 6826, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-06-01T12:39:36", + "TransactionId": 38240477, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 247, + "CustomerInfo": 81318810, + "PaymentType": "Credit Card" + }, + { + "Id": 6827, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-12-18T15:25:12", + "TransactionId": 44334580, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 561, + "CustomerInfo": 30941742, + "PaymentType": "Cash" + }, + { + "Id": 6828, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2018-01-29T15:16:42", + "TransactionId": 53693021, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 840, + "CustomerInfo": 19019903, + "PaymentType": "Credit Card" + }, + { + "Id": 6829, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-08-12T13:44:50", + "TransactionId": 54884947, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 181, + "CustomerInfo": 35608032, + "PaymentType": "Debit Card" + }, + { + "Id": 6830, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-07-18T13:45:16", + "TransactionId": 56204155, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 426, + "CustomerInfo": 36156673, + "PaymentType": "Cash" + }, + { + "Id": 6831, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-02-15T15:58:54", + "TransactionId": 8660913, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 501, + "CustomerInfo": 7427265, + "PaymentType": "Debit Card" + }, + { + "Id": 6832, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-10-18T18:57:10", + "TransactionId": 6486126, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 605, + "CustomerInfo": 78101968, + "PaymentType": "Credit Card" + }, + { + "Id": 6833, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2016-08-20T09:06:55", + "TransactionId": 88070116, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 328, + "CustomerInfo": 38208950, + "PaymentType": "Credit Card" + }, + { + "Id": 6834, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-02-18T07:06:23", + "TransactionId": 27437482, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 205, + "CustomerInfo": 99697411, + "PaymentType": "Credit Card" + }, + { + "Id": 6835, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-09-25T15:03:10", + "TransactionId": 69109623, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 594, + "CustomerInfo": 57714579, + "PaymentType": "Debit Card" + }, + { + "Id": 6836, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2016-11-19T17:41:34", + "TransactionId": 63357814, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 774, + "CustomerInfo": 20986223, + "PaymentType": "Cash" + }, + { + "Id": 6837, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-07-20T09:35:43", + "TransactionId": 30675748, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 538, + "CustomerInfo": 2881950, + "PaymentType": "Credit Card" + }, + { + "Id": 6838, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2017-03-10T15:32:50", + "TransactionId": 2409946, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 352, + "CustomerInfo": 5578783, + "PaymentType": "Cash" + }, + { + "Id": 6839, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2018-12-12T09:00:43", + "TransactionId": 22469770, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 990, + "CustomerInfo": 90646595, + "PaymentType": "Debit Card" + }, + { + "Id": 6840, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2019-12-30T18:28:31", + "TransactionId": 46801055, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 121, + "CustomerInfo": 24338270, + "PaymentType": "Debit Card" + }, + { + "Id": 6841, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2019-02-23T08:42:17", + "TransactionId": 17991468, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 909, + "CustomerInfo": 47939736, + "PaymentType": "Cash" + }, + { + "Id": 6842, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2019-01-15T07:59:48", + "TransactionId": 1692435, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 386, + "CustomerInfo": 59123554, + "PaymentType": "Cash" + }, + { + "Id": 6843, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2016-12-18T11:01:58", + "TransactionId": 35430382, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 991, + "CustomerInfo": 69302566, + "PaymentType": "Cash" + }, + { + "Id": 6844, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-03-12T10:34:54", + "TransactionId": 95750110, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 617, + "CustomerInfo": 77518491, + "PaymentType": "Cash" + }, + { + "Id": 6845, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2016-06-19T15:39:45", + "TransactionId": 20272957, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 258, + "CustomerInfo": 83310829, + "PaymentType": "Cash" + }, + { + "Id": 6846, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-01-05T12:27:13", + "TransactionId": 19495579, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 226, + "CustomerInfo": 18254922, + "PaymentType": "Debit Card" + }, + { + "Id": 6847, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2018-11-02T18:01:26", + "TransactionId": 44471251, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 463, + "CustomerInfo": 29747051, + "PaymentType": "Debit Card" + }, + { + "Id": 6848, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2018-05-29T17:49:12", + "TransactionId": 74320072, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 953, + "CustomerInfo": 3538662, + "PaymentType": "Credit Card" + }, + { + "Id": 6849, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2017-01-28T14:34:57", + "TransactionId": 63754094, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 754, + "CustomerInfo": 49975902, + "PaymentType": "Credit Card" + }, + { + "Id": 6850, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2019-09-11T10:58:48", + "TransactionId": 42475350, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 550, + "CustomerInfo": 56810770, + "PaymentType": "Debit Card" + }, + { + "Id": 6851, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-10-09T13:28:25", + "TransactionId": 82766407, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 11903685, + "PaymentType": "Credit Card" + }, + { + "Id": 6852, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-11-07T15:30:06", + "TransactionId": 5025850, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 614, + "CustomerInfo": 60714003, + "PaymentType": "Debit Card" + }, + { + "Id": 6853, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-07-29T15:26:30", + "TransactionId": 54878695, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 464, + "CustomerInfo": 48930713, + "PaymentType": "Credit Card" + }, + { + "Id": 6854, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-01-12T17:48:03", + "TransactionId": 31354056, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 770, + "CustomerInfo": 6441708, + "PaymentType": "Cash" + }, + { + "Id": 6855, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2016-09-14T18:05:46", + "TransactionId": 45551689, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 2, + "CustomerInfo": 88527960, + "PaymentType": "Debit Card" + }, + { + "Id": 6856, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2017-07-18T12:45:30", + "TransactionId": 80692149, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 192, + "CustomerInfo": 55954313, + "PaymentType": "Cash" + }, + { + "Id": 6857, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-11-30T19:31:09", + "TransactionId": 90343252, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 61, + "CustomerInfo": 64233473, + "PaymentType": "Debit Card" + }, + { + "Id": 6858, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2016-05-29T07:04:57", + "TransactionId": 85144587, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 802, + "CustomerInfo": 68828588, + "PaymentType": "Debit Card" + }, + { + "Id": 6859, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2017-09-09T12:57:36", + "TransactionId": 98429013, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 110, + "CustomerInfo": 84148892, + "PaymentType": "Debit Card" + }, + { + "Id": 6860, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-10-02T07:32:18", + "TransactionId": 63696243, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 238, + "CustomerInfo": 56895449, + "PaymentType": "Debit Card" + }, + { + "Id": 6861, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2017-04-09T19:15:53", + "TransactionId": 64953278, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 700, + "CustomerInfo": 11260740, + "PaymentType": "Cash" + }, + { + "Id": 6862, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-02-05T10:25:15", + "TransactionId": 56550254, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 402, + "CustomerInfo": 46838117, + "PaymentType": "Debit Card" + }, + { + "Id": 6863, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-04-10T11:30:03", + "TransactionId": 42885873, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 92, + "CustomerInfo": 96647838, + "PaymentType": "Cash" + }, + { + "Id": 6864, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-11-10T08:24:35", + "TransactionId": 81799226, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 328, + "CustomerInfo": 36495503, + "PaymentType": "Debit Card" + }, + { + "Id": 6865, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2016-07-17T11:17:31", + "TransactionId": 59793196, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 115, + "CustomerInfo": 11737926, + "PaymentType": "Cash" + }, + { + "Id": 6866, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2016-12-24T18:15:24", + "TransactionId": 70367123, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 610, + "CustomerInfo": 10863898, + "PaymentType": "Cash" + }, + { + "Id": 6867, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2018-07-20T16:04:05", + "TransactionId": 40911446, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 916, + "CustomerInfo": 9866247, + "PaymentType": "Credit Card" + }, + { + "Id": 6868, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2019-06-25T12:48:06", + "TransactionId": 79044869, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 292, + "CustomerInfo": 5710822, + "PaymentType": "Cash" + }, + { + "Id": 6869, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2017-04-05T07:04:22", + "TransactionId": 37606781, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 208, + "CustomerInfo": 63763097, + "PaymentType": "Credit Card" + }, + { + "Id": 6870, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2017-07-11T18:56:01", + "TransactionId": 24322571, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 7, + "CustomerInfo": 42968330, + "PaymentType": "Debit Card" + }, + { + "Id": 6871, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2019-08-24T08:11:11", + "TransactionId": 17361783, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 986, + "CustomerInfo": 63656900, + "PaymentType": "Credit Card" + }, + { + "Id": 6872, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2018-02-11T12:30:23", + "TransactionId": 94797013, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 164, + "CustomerInfo": 99918994, + "PaymentType": "Debit Card" + }, + { + "Id": 6873, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-07-02T19:45:07", + "TransactionId": 54253875, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 353, + "CustomerInfo": 51856848, + "PaymentType": "Cash" + }, + { + "Id": 6874, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2016-09-04T17:54:06", + "TransactionId": 50438633, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 51, + "CustomerInfo": 33669871, + "PaymentType": "Cash" + }, + { + "Id": 6875, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-05-27T08:35:57", + "TransactionId": 33172140, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 547, + "CustomerInfo": 80166569, + "PaymentType": "Cash" + }, + { + "Id": 6876, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2019-10-22T17:17:23", + "TransactionId": 64174597, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 212, + "CustomerInfo": 6459333, + "PaymentType": "Debit Card" + }, + { + "Id": 6877, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2018-08-03T09:59:28", + "TransactionId": 2835381, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 337, + "CustomerInfo": 31083085, + "PaymentType": "Credit Card" + }, + { + "Id": 6878, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-11-06T15:01:18", + "TransactionId": 80568883, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 551, + "CustomerInfo": 24758933, + "PaymentType": "Credit Card" + }, + { + "Id": 6879, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2016-11-10T15:39:27", + "TransactionId": 79982074, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 43, + "CustomerInfo": 16914318, + "PaymentType": "Credit Card" + }, + { + "Id": 6880, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-06-28T12:21:10", + "TransactionId": 11597069, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 67742146, + "PaymentType": "Debit Card" + }, + { + "Id": 6881, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2019-01-03T11:19:49", + "TransactionId": 90781681, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 965, + "CustomerInfo": 54108903, + "PaymentType": "Debit Card" + }, + { + "Id": 6882, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-06-26T19:09:42", + "TransactionId": 59892320, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 561, + "CustomerInfo": 80365700, + "PaymentType": "Credit Card" + }, + { + "Id": 6883, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-03-15T10:51:01", + "TransactionId": 29428696, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 645, + "CustomerInfo": 10636919, + "PaymentType": "Credit Card" + }, + { + "Id": 6884, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2016-08-22T15:03:36", + "TransactionId": 38765398, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 518, + "CustomerInfo": 2585739, + "PaymentType": "Cash" + }, + { + "Id": 6885, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2019-10-27T09:44:04", + "TransactionId": 33297247, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 276, + "CustomerInfo": 50847745, + "PaymentType": "Debit Card" + }, + { + "Id": 6886, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-02-16T14:17:48", + "TransactionId": 53665782, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 417, + "CustomerInfo": 87240181, + "PaymentType": "Debit Card" + }, + { + "Id": 6887, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-05-25T11:50:04", + "TransactionId": 87178863, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 776, + "CustomerInfo": 18575211, + "PaymentType": "Debit Card" + }, + { + "Id": 6888, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-07-20T11:23:51", + "TransactionId": 59084645, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 327, + "CustomerInfo": 78751180, + "PaymentType": "Credit Card" + }, + { + "Id": 6889, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-01-29T18:40:28", + "TransactionId": 10997587, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 677, + "CustomerInfo": 18251551, + "PaymentType": "Credit Card" + }, + { + "Id": 6890, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-12-07T13:39:22", + "TransactionId": 82626072, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 152, + "CustomerInfo": 15286649, + "PaymentType": "Cash" + }, + { + "Id": 6891, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2016-04-12T14:18:14", + "TransactionId": 11710136, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 886, + "CustomerInfo": 24585650, + "PaymentType": "Cash" + }, + { + "Id": 6892, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-08-08T10:58:13", + "TransactionId": 94645506, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 319, + "CustomerInfo": 80682199, + "PaymentType": "Credit Card" + }, + { + "Id": 6893, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-08-10T17:06:09", + "TransactionId": 39384938, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 369, + "CustomerInfo": 80052763, + "PaymentType": "Credit Card" + }, + { + "Id": 6894, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2016-06-18T19:08:41", + "TransactionId": 88845030, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 110, + "CustomerInfo": 10811406, + "PaymentType": "Debit Card" + }, + { + "Id": 6895, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2016-04-26T12:30:49", + "TransactionId": 85505289, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 461, + "CustomerInfo": 75527928, + "PaymentType": "Debit Card" + }, + { + "Id": 6896, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-04-10T10:31:35", + "TransactionId": 5169696, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 269, + "CustomerInfo": 59695277, + "PaymentType": "Debit Card" + }, + { + "Id": 6897, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-12-10T13:08:15", + "TransactionId": 9385008, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 820, + "CustomerInfo": 86554655, + "PaymentType": "Cash" + }, + { + "Id": 6898, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-05-31T09:34:34", + "TransactionId": 7918769, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 96668417, + "PaymentType": "Debit Card" + }, + { + "Id": 6899, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2019-04-15T19:56:56", + "TransactionId": 87944659, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 428, + "CustomerInfo": 89335605, + "PaymentType": "Debit Card" + }, + { + "Id": 6900, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2017-10-12T11:38:59", + "TransactionId": 45899306, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 904, + "CustomerInfo": 77805410, + "PaymentType": "Credit Card" + }, + { + "Id": 6901, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-02-16T10:48:35", + "TransactionId": 85458951, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 743, + "CustomerInfo": 32236385, + "PaymentType": "Debit Card" + }, + { + "Id": 6902, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2016-01-07T07:38:30", + "TransactionId": 6678886, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 257, + "CustomerInfo": 16103181, + "PaymentType": "Cash" + }, + { + "Id": 6903, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2016-05-07T09:47:40", + "TransactionId": 12658040, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 465, + "CustomerInfo": 78268842, + "PaymentType": "Credit Card" + }, + { + "Id": 6904, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2018-08-02T14:44:44", + "TransactionId": 56788078, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 842, + "CustomerInfo": 27005105, + "PaymentType": "Debit Card" + }, + { + "Id": 6905, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2016-10-22T19:37:55", + "TransactionId": 54513740, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 315, + "CustomerInfo": 62254140, + "PaymentType": "Debit Card" + }, + { + "Id": 6906, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2019-01-24T17:24:17", + "TransactionId": 65962689, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 63, + "CustomerInfo": 54299745, + "PaymentType": "Credit Card" + }, + { + "Id": 6907, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2018-04-03T19:31:44", + "TransactionId": 79524302, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 639, + "CustomerInfo": 41701414, + "PaymentType": "Debit Card" + }, + { + "Id": 6908, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2018-04-13T07:02:04", + "TransactionId": 45158545, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 81, + "CustomerInfo": 96963368, + "PaymentType": "Credit Card" + }, + { + "Id": 6909, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2017-03-11T14:12:29", + "TransactionId": 782817, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 430, + "CustomerInfo": 52591314, + "PaymentType": "Debit Card" + }, + { + "Id": 6910, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2017-09-14T15:55:44", + "TransactionId": 40924678, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 536, + "CustomerInfo": 17251633, + "PaymentType": "Debit Card" + }, + { + "Id": 6911, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2018-04-06T14:43:52", + "TransactionId": 46687384, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 868, + "CustomerInfo": 12841218, + "PaymentType": "Credit Card" + }, + { + "Id": 6912, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-08-10T17:44:18", + "TransactionId": 26788489, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 814, + "CustomerInfo": 92524306, + "PaymentType": "Credit Card" + }, + { + "Id": 6913, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-05-18T11:44:18", + "TransactionId": 82343382, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 580, + "CustomerInfo": 74169297, + "PaymentType": "Credit Card" + }, + { + "Id": 6914, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2019-07-25T10:24:14", + "TransactionId": 51406230, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 64, + "CustomerInfo": 99393963, + "PaymentType": "Cash" + }, + { + "Id": 6915, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-06-14T15:30:14", + "TransactionId": 75272888, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 699, + "CustomerInfo": 85971534, + "PaymentType": "Debit Card" + }, + { + "Id": 6916, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2019-02-03T07:57:56", + "TransactionId": 41070822, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 723, + "CustomerInfo": 51952076, + "PaymentType": "Debit Card" + }, + { + "Id": 6917, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-04-05T16:14:36", + "TransactionId": 52828743, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 944, + "CustomerInfo": 91757537, + "PaymentType": "Credit Card" + }, + { + "Id": 6918, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-10-02T16:20:21", + "TransactionId": 69984191, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 58018808, + "PaymentType": "Credit Card" + }, + { + "Id": 6919, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2016-02-07T16:12:43", + "TransactionId": 22830869, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 720, + "CustomerInfo": 87263442, + "PaymentType": "Cash" + }, + { + "Id": 6920, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-12-11T19:47:00", + "TransactionId": 29347920, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 648, + "CustomerInfo": 82352217, + "PaymentType": "Credit Card" + }, + { + "Id": 6921, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2016-03-16T16:45:07", + "TransactionId": 33698446, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 967, + "CustomerInfo": 53519319, + "PaymentType": "Cash" + }, + { + "Id": 6922, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2019-09-02T07:52:36", + "TransactionId": 18307163, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 955, + "CustomerInfo": 74920445, + "PaymentType": "Cash" + }, + { + "Id": 6923, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2017-10-26T18:45:22", + "TransactionId": 99157962, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 126, + "CustomerInfo": 15090771, + "PaymentType": "Debit Card" + }, + { + "Id": 6924, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2017-09-02T14:58:42", + "TransactionId": 27131858, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 939, + "CustomerInfo": 14860164, + "PaymentType": "Cash" + }, + { + "Id": 6925, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-10-02T13:55:38", + "TransactionId": 65093936, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 916, + "CustomerInfo": 20617633, + "PaymentType": "Credit Card" + }, + { + "Id": 6926, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-09-18T13:25:58", + "TransactionId": 18725138, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 107, + "CustomerInfo": 6425855, + "PaymentType": "Debit Card" + }, + { + "Id": 6927, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2017-08-26T09:51:59", + "TransactionId": 43332728, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 67, + "CustomerInfo": 90207187, + "PaymentType": "Credit Card" + }, + { + "Id": 6928, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-01-05T14:51:48", + "TransactionId": 55671107, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 383, + "CustomerInfo": 36041413, + "PaymentType": "Debit Card" + }, + { + "Id": 6929, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2016-01-02T17:29:20", + "TransactionId": 25378662, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 157, + "CustomerInfo": 86126130, + "PaymentType": "Credit Card" + }, + { + "Id": 6930, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-12-06T10:20:56", + "TransactionId": 20321280, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 54, + "CustomerInfo": 67816654, + "PaymentType": "Cash" + }, + { + "Id": 6931, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2017-04-28T16:19:03", + "TransactionId": 62080865, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 538, + "CustomerInfo": 12836537, + "PaymentType": "Credit Card" + }, + { + "Id": 6932, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2019-12-23T18:13:32", + "TransactionId": 47321998, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 329, + "CustomerInfo": 79156835, + "PaymentType": "Credit Card" + }, + { + "Id": 6933, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-12-09T13:44:15", + "TransactionId": 39806195, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 315, + "CustomerInfo": 74877440, + "PaymentType": "Debit Card" + }, + { + "Id": 6934, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2019-11-17T15:50:07", + "TransactionId": 55671217, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 278, + "CustomerInfo": 48248553, + "PaymentType": "Credit Card" + }, + { + "Id": 6935, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2017-04-28T19:31:26", + "TransactionId": 20370937, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 599, + "CustomerInfo": 34372668, + "PaymentType": "Credit Card" + }, + { + "Id": 6936, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-12-01T09:20:53", + "TransactionId": 47922331, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 611, + "CustomerInfo": 89694505, + "PaymentType": "Credit Card" + }, + { + "Id": 6937, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-03-18T14:58:51", + "TransactionId": 6639996, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 58, + "CustomerInfo": 25225395, + "PaymentType": "Cash" + }, + { + "Id": 6938, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2018-06-08T18:47:40", + "TransactionId": 12519263, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 445, + "CustomerInfo": 72186641, + "PaymentType": "Debit Card" + }, + { + "Id": 6939, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-04-02T17:22:51", + "TransactionId": 81039134, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 629, + "CustomerInfo": 76628209, + "PaymentType": "Cash" + }, + { + "Id": 6940, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-10-26T12:16:34", + "TransactionId": 13674435, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 520, + "CustomerInfo": 4669772, + "PaymentType": "Debit Card" + }, + { + "Id": 6941, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2016-11-21T08:01:24", + "TransactionId": 90140771, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 884, + "CustomerInfo": 79950982, + "PaymentType": "Cash" + }, + { + "Id": 6942, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-12-18T07:46:51", + "TransactionId": 25996224, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 303, + "CustomerInfo": 90532075, + "PaymentType": "Credit Card" + }, + { + "Id": 6943, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2018-10-23T10:45:42", + "TransactionId": 74501746, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 562, + "CustomerInfo": 33135486, + "PaymentType": "Cash" + }, + { + "Id": 6944, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-08-05T19:30:52", + "TransactionId": 47402180, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 293, + "CustomerInfo": 15055502, + "PaymentType": "Debit Card" + }, + { + "Id": 6945, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-07-24T18:57:45", + "TransactionId": 81291670, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 450, + "CustomerInfo": 36951452, + "PaymentType": "Debit Card" + }, + { + "Id": 6946, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-05-09T18:38:01", + "TransactionId": 15447554, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 85, + "CustomerInfo": 36708853, + "PaymentType": "Debit Card" + }, + { + "Id": 6947, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-01-17T09:18:09", + "TransactionId": 51551575, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 51, + "CustomerInfo": 50119325, + "PaymentType": "Credit Card" + }, + { + "Id": 6948, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-02-27T10:51:27", + "TransactionId": 98412270, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 368, + "CustomerInfo": 76511252, + "PaymentType": "Cash" + }, + { + "Id": 6949, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-09-10T08:44:44", + "TransactionId": 63288765, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 478, + "CustomerInfo": 53013359, + "PaymentType": "Cash" + }, + { + "Id": 6950, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-05-01T09:03:45", + "TransactionId": 34027299, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 448, + "CustomerInfo": 33770165, + "PaymentType": "Debit Card" + }, + { + "Id": 6951, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2019-01-22T07:54:20", + "TransactionId": 32393773, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 545, + "CustomerInfo": 36245406, + "PaymentType": "Credit Card" + }, + { + "Id": 6952, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2016-06-25T19:14:10", + "TransactionId": 28861177, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 805, + "CustomerInfo": 17219284, + "PaymentType": "Cash" + }, + { + "Id": 6953, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2018-09-15T10:21:13", + "TransactionId": 66231370, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 30931562, + "PaymentType": "Cash" + }, + { + "Id": 6954, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-04-09T19:56:04", + "TransactionId": 41209274, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 415, + "CustomerInfo": 42791104, + "PaymentType": "Cash" + }, + { + "Id": 6955, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-09-15T19:09:07", + "TransactionId": 54180119, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 2, + "CustomerInfo": 35746088, + "PaymentType": "Credit Card" + }, + { + "Id": 6956, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2016-01-20T08:48:20", + "TransactionId": 53017295, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 511, + "CustomerInfo": 49721255, + "PaymentType": "Credit Card" + }, + { + "Id": 6957, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2018-07-03T15:46:13", + "TransactionId": 24433352, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 741, + "CustomerInfo": 73526829, + "PaymentType": "Debit Card" + }, + { + "Id": 6958, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2016-05-11T14:28:02", + "TransactionId": 54574859, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 246, + "CustomerInfo": 40388823, + "PaymentType": "Cash" + }, + { + "Id": 6959, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2019-02-05T18:21:53", + "TransactionId": 90096537, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 871, + "CustomerInfo": 81322199, + "PaymentType": "Cash" + }, + { + "Id": 6960, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-08-22T15:32:24", + "TransactionId": 54385551, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 212, + "CustomerInfo": 8520772, + "PaymentType": "Credit Card" + }, + { + "Id": 6961, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2018-04-02T08:34:39", + "TransactionId": 58950915, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 145, + "CustomerInfo": 77601731, + "PaymentType": "Debit Card" + }, + { + "Id": 6962, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-04-12T08:16:48", + "TransactionId": 51123445, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 115, + "CustomerInfo": 85546270, + "PaymentType": "Credit Card" + }, + { + "Id": 6963, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2019-01-16T11:41:00", + "TransactionId": 93441849, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 419, + "CustomerInfo": 90264355, + "PaymentType": "Credit Card" + }, + { + "Id": 6964, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-05-04T08:03:16", + "TransactionId": 75759192, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 385, + "CustomerInfo": 9692310, + "PaymentType": "Debit Card" + }, + { + "Id": 6965, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2018-06-19T17:34:05", + "TransactionId": 47483717, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 930, + "CustomerInfo": 89040408, + "PaymentType": "Cash" + }, + { + "Id": 6966, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2019-01-08T09:17:17", + "TransactionId": 81457883, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 468, + "CustomerInfo": 76016637, + "PaymentType": "Credit Card" + }, + { + "Id": 6967, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-07-13T11:13:21", + "TransactionId": 11760549, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 1512267, + "PaymentType": "Debit Card" + }, + { + "Id": 6968, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2018-01-29T07:35:02", + "TransactionId": 24685442, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 91, + "CustomerInfo": 22652647, + "PaymentType": "Credit Card" + }, + { + "Id": 6969, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-02-03T19:13:09", + "TransactionId": 49057384, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 696, + "CustomerInfo": 30075364, + "PaymentType": "Cash" + }, + { + "Id": 6970, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-11-14T16:19:03", + "TransactionId": 76981777, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 979, + "CustomerInfo": 26470537, + "PaymentType": "Cash" + }, + { + "Id": 6971, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-07-10T12:44:30", + "TransactionId": 86949797, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 373, + "CustomerInfo": 24798065, + "PaymentType": "Cash" + }, + { + "Id": 6972, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2017-12-27T07:36:20", + "TransactionId": 3553859, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 206, + "CustomerInfo": 69267128, + "PaymentType": "Cash" + }, + { + "Id": 6973, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-04-06T09:28:39", + "TransactionId": 41860088, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 131, + "CustomerInfo": 68658333, + "PaymentType": "Debit Card" + }, + { + "Id": 6974, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2016-06-04T16:33:10", + "TransactionId": 24905878, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 823, + "CustomerInfo": 67494364, + "PaymentType": "Debit Card" + }, + { + "Id": 6975, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-06-06T12:04:11", + "TransactionId": 21680827, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 725, + "CustomerInfo": 99019853, + "PaymentType": "Credit Card" + }, + { + "Id": 6976, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2019-08-07T07:10:51", + "TransactionId": 22105351, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 152, + "CustomerInfo": 73044392, + "PaymentType": "Cash" + }, + { + "Id": 6977, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2016-05-12T14:41:00", + "TransactionId": 46678757, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 981, + "CustomerInfo": 62417851, + "PaymentType": "Cash" + }, + { + "Id": 6978, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-03-10T10:40:22", + "TransactionId": 11329627, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 1000, + "CustomerInfo": 14468472, + "PaymentType": "Cash" + }, + { + "Id": 6979, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-05-25T19:30:43", + "TransactionId": 59775573, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 303, + "CustomerInfo": 62855277, + "PaymentType": "Credit Card" + }, + { + "Id": 6980, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2017-06-24T12:00:00", + "TransactionId": 11271691, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 162, + "CustomerInfo": 61437214, + "PaymentType": "Debit Card" + }, + { + "Id": 6981, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-03-05T10:35:20", + "TransactionId": 5790423, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 544, + "CustomerInfo": 52589623, + "PaymentType": "Debit Card" + }, + { + "Id": 6982, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2018-09-15T16:47:17", + "TransactionId": 44038797, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 4, + "CustomerInfo": 99124328, + "PaymentType": "Cash" + }, + { + "Id": 6983, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-09-09T11:10:02", + "TransactionId": 93784557, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 498, + "CustomerInfo": 54611931, + "PaymentType": "Credit Card" + }, + { + "Id": 6984, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-10-17T11:32:12", + "TransactionId": 10346656, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 117, + "CustomerInfo": 82163044, + "PaymentType": "Debit Card" + }, + { + "Id": 6985, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2017-12-06T14:39:50", + "TransactionId": 44574504, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 371, + "CustomerInfo": 52345293, + "PaymentType": "Credit Card" + }, + { + "Id": 6986, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2017-06-20T13:31:09", + "TransactionId": 77474478, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 111, + "CustomerInfo": 29691164, + "PaymentType": "Debit Card" + }, + { + "Id": 6987, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2016-11-19T09:39:10", + "TransactionId": 94409663, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 959, + "CustomerInfo": 41332753, + "PaymentType": "Cash" + }, + { + "Id": 6988, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-09-25T10:19:21", + "TransactionId": 72092861, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 983, + "CustomerInfo": 96509216, + "PaymentType": "Debit Card" + }, + { + "Id": 6989, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2019-03-22T14:18:23", + "TransactionId": 26648857, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 445, + "CustomerInfo": 32913223, + "PaymentType": "Debit Card" + }, + { + "Id": 6990, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2018-02-23T10:28:16", + "TransactionId": 34834972, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 266, + "CustomerInfo": 38049814, + "PaymentType": "Credit Card" + }, + { + "Id": 6991, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2016-07-19T17:20:41", + "TransactionId": 82076565, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 353, + "CustomerInfo": 67032340, + "PaymentType": "Cash" + }, + { + "Id": 6992, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2016-04-07T12:15:59", + "TransactionId": 24040152, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 857, + "CustomerInfo": 51171287, + "PaymentType": "Cash" + }, + { + "Id": 6993, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-05-25T07:12:43", + "TransactionId": 4236557, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 39872836, + "PaymentType": "Cash" + }, + { + "Id": 6994, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-06-18T08:16:39", + "TransactionId": 18344991, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 616, + "CustomerInfo": 55172383, + "PaymentType": "Debit Card" + }, + { + "Id": 6995, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-05-06T18:10:39", + "TransactionId": 75317599, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 947, + "CustomerInfo": 71904677, + "PaymentType": "Debit Card" + }, + { + "Id": 6996, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2017-06-28T16:46:08", + "TransactionId": 51033225, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 389, + "CustomerInfo": 87918403, + "PaymentType": "Credit Card" + }, + { + "Id": 6997, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-02-26T11:39:24", + "TransactionId": 5991151, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 650, + "CustomerInfo": 33286392, + "PaymentType": "Cash" + }, + { + "Id": 6998, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-09-12T14:04:51", + "TransactionId": 9711894, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 72212244, + "PaymentType": "Debit Card" + }, + { + "Id": 6999, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-09-30T17:48:29", + "TransactionId": 15753717, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 701, + "CustomerInfo": 49619030, + "PaymentType": "Cash" + }, + { + "Id": 7000, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-08-02T10:59:40", + "TransactionId": 37816294, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 106, + "CustomerInfo": 18290509, + "PaymentType": "Debit Card" + }, + { + "Id": 7001, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-08-09T13:38:12", + "TransactionId": 47044144, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 473, + "CustomerInfo": 36958515, + "PaymentType": "Debit Card" + }, + { + "Id": 7002, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-12-04T12:22:19", + "TransactionId": 62811411, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 224, + "CustomerInfo": 66549052, + "PaymentType": "Cash" + }, + { + "Id": 7003, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2016-02-02T13:08:50", + "TransactionId": 42942076, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 890, + "CustomerInfo": 78166392, + "PaymentType": "Cash" + }, + { + "Id": 7004, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-06-04T18:24:37", + "TransactionId": 6456502, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 667, + "CustomerInfo": 75222005, + "PaymentType": "Credit Card" + }, + { + "Id": 7005, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2018-04-07T07:55:03", + "TransactionId": 25512463, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 193, + "CustomerInfo": 23333874, + "PaymentType": "Credit Card" + }, + { + "Id": 7006, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2018-11-23T14:01:24", + "TransactionId": 59419937, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 722, + "CustomerInfo": 21494210, + "PaymentType": "Debit Card" + }, + { + "Id": 7007, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2016-04-08T13:53:20", + "TransactionId": 61300349, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 291, + "CustomerInfo": 10161566, + "PaymentType": "Cash" + }, + { + "Id": 7008, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2017-03-30T14:35:48", + "TransactionId": 66599894, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 748, + "CustomerInfo": 82151196, + "PaymentType": "Debit Card" + }, + { + "Id": 7009, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2019-02-07T11:20:07", + "TransactionId": 32310248, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 895, + "CustomerInfo": 57533336, + "PaymentType": "Cash" + }, + { + "Id": 7010, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2019-03-27T15:09:30", + "TransactionId": 53856390, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 702, + "CustomerInfo": 60134762, + "PaymentType": "Cash" + }, + { + "Id": 7011, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-10-09T15:35:08", + "TransactionId": 4036487, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 152, + "CustomerInfo": 67877137, + "PaymentType": "Debit Card" + }, + { + "Id": 7012, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-03-07T07:10:08", + "TransactionId": 28537450, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 143, + "CustomerInfo": 17223197, + "PaymentType": "Credit Card" + }, + { + "Id": 7013, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2016-11-10T15:46:39", + "TransactionId": 81193837, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 444, + "CustomerInfo": 7910582, + "PaymentType": "Debit Card" + }, + { + "Id": 7014, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-03-16T12:12:58", + "TransactionId": 65932322, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 518, + "CustomerInfo": 63174687, + "PaymentType": "Debit Card" + }, + { + "Id": 7015, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-09-13T12:41:11", + "TransactionId": 60981592, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 622, + "CustomerInfo": 10711359, + "PaymentType": "Debit Card" + }, + { + "Id": 7016, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-07-06T09:26:04", + "TransactionId": 97508556, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 839, + "CustomerInfo": 17198239, + "PaymentType": "Debit Card" + }, + { + "Id": 7017, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-07-31T08:03:59", + "TransactionId": 27250440, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 736, + "CustomerInfo": 6222094, + "PaymentType": "Credit Card" + }, + { + "Id": 7018, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-08-18T18:09:56", + "TransactionId": 21611279, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 117, + "CustomerInfo": 48308799, + "PaymentType": "Debit Card" + }, + { + "Id": 7019, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2017-01-10T07:14:44", + "TransactionId": 75521368, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 66, + "CustomerInfo": 92753249, + "PaymentType": "Debit Card" + }, + { + "Id": 7020, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2016-11-09T14:02:59", + "TransactionId": 63280085, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 295, + "CustomerInfo": 69552708, + "PaymentType": "Credit Card" + }, + { + "Id": 7021, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-03-03T16:26:15", + "TransactionId": 13486467, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 370, + "CustomerInfo": 86745656, + "PaymentType": "Debit Card" + }, + { + "Id": 7022, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-03-10T16:30:26", + "TransactionId": 63373690, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 543, + "CustomerInfo": 18374634, + "PaymentType": "Credit Card" + }, + { + "Id": 7023, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2019-04-02T13:20:21", + "TransactionId": 64852433, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 630, + "CustomerInfo": 30248598, + "PaymentType": "Debit Card" + }, + { + "Id": 7024, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-07-16T07:15:36", + "TransactionId": 38265473, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 142, + "CustomerInfo": 33603280, + "PaymentType": "Credit Card" + }, + { + "Id": 7025, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-03-16T12:18:26", + "TransactionId": 64758153, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 574, + "CustomerInfo": 10647197, + "PaymentType": "Cash" + }, + { + "Id": 7026, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-04-11T12:57:45", + "TransactionId": 78279718, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 817, + "CustomerInfo": 63623793, + "PaymentType": "Debit Card" + }, + { + "Id": 7027, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-03-05T17:45:01", + "TransactionId": 38729568, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 351, + "CustomerInfo": 71098137, + "PaymentType": "Credit Card" + }, + { + "Id": 7028, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2017-07-28T08:25:52", + "TransactionId": 19323103, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 359, + "CustomerInfo": 22610925, + "PaymentType": "Debit Card" + }, + { + "Id": 7029, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2019-02-11T10:03:04", + "TransactionId": 41508065, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 751, + "CustomerInfo": 70009211, + "PaymentType": "Credit Card" + }, + { + "Id": 7030, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2016-03-13T11:45:45", + "TransactionId": 88153003, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 658, + "CustomerInfo": 83193276, + "PaymentType": "Debit Card" + }, + { + "Id": 7031, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-05-11T17:20:33", + "TransactionId": 97570415, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 742, + "CustomerInfo": 63584635, + "PaymentType": "Debit Card" + }, + { + "Id": 7032, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-02-22T18:47:40", + "TransactionId": 72216721, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 368, + "CustomerInfo": 30895418, + "PaymentType": "Debit Card" + }, + { + "Id": 7033, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2019-01-22T10:49:09", + "TransactionId": 24997497, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 496, + "CustomerInfo": 23342024, + "PaymentType": "Credit Card" + }, + { + "Id": 7034, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2018-02-06T08:45:36", + "TransactionId": 5044863, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 140, + "CustomerInfo": 31930864, + "PaymentType": "Debit Card" + }, + { + "Id": 7035, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2016-04-01T16:04:57", + "TransactionId": 53839468, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 414, + "CustomerInfo": 42641970, + "PaymentType": "Cash" + }, + { + "Id": 7036, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-06-25T18:29:23", + "TransactionId": 92062903, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 772, + "CustomerInfo": 7828317, + "PaymentType": "Debit Card" + }, + { + "Id": 7037, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2018-02-04T17:49:47", + "TransactionId": 1543248, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 391, + "CustomerInfo": 10859037, + "PaymentType": "Credit Card" + }, + { + "Id": 7038, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2016-08-18T18:55:35", + "TransactionId": 50092038, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 269, + "CustomerInfo": 85145830, + "PaymentType": "Cash" + }, + { + "Id": 7039, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2019-06-05T16:12:09", + "TransactionId": 7902418, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 967, + "CustomerInfo": 5029244, + "PaymentType": "Debit Card" + }, + { + "Id": 7040, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-11-05T18:51:24", + "TransactionId": 40819313, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 968, + "CustomerInfo": 12215992, + "PaymentType": "Credit Card" + }, + { + "Id": 7041, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2019-01-21T14:32:04", + "TransactionId": 25305856, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 67, + "CustomerInfo": 63591470, + "PaymentType": "Credit Card" + }, + { + "Id": 7042, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-10-05T15:59:28", + "TransactionId": 11564786, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 760, + "CustomerInfo": 56648828, + "PaymentType": "Cash" + }, + { + "Id": 7043, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-06-15T17:00:49", + "TransactionId": 52778838, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 669, + "CustomerInfo": 19551736, + "PaymentType": "Cash" + }, + { + "Id": 7044, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2016-09-28T16:37:38", + "TransactionId": 3823694, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 915, + "CustomerInfo": 65324362, + "PaymentType": "Debit Card" + }, + { + "Id": 7045, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-08-24T11:02:50", + "TransactionId": 76436492, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 721, + "CustomerInfo": 27156464, + "PaymentType": "Credit Card" + }, + { + "Id": 7046, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-05-15T12:56:44", + "TransactionId": 75972569, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 871, + "CustomerInfo": 78846009, + "PaymentType": "Debit Card" + }, + { + "Id": 7047, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2016-08-20T11:09:27", + "TransactionId": 86994017, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 359, + "CustomerInfo": 25137279, + "PaymentType": "Debit Card" + }, + { + "Id": 7048, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2017-01-13T10:27:33", + "TransactionId": 91683993, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 927, + "CustomerInfo": 58150434, + "PaymentType": "Debit Card" + }, + { + "Id": 7049, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-10-22T15:53:17", + "TransactionId": 90628116, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 522, + "CustomerInfo": 46346336, + "PaymentType": "Credit Card" + }, + { + "Id": 7050, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2016-11-07T17:07:52", + "TransactionId": 74053388, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 461, + "CustomerInfo": 16066454, + "PaymentType": "Credit Card" + }, + { + "Id": 7051, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2019-05-21T07:43:15", + "TransactionId": 33053671, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 125, + "CustomerInfo": 71318198, + "PaymentType": "Debit Card" + }, + { + "Id": 7052, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-07-04T18:56:18", + "TransactionId": 71687596, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 93130850, + "PaymentType": "Cash" + }, + { + "Id": 7053, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2019-08-16T17:04:25", + "TransactionId": 5241112, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 310, + "CustomerInfo": 63927529, + "PaymentType": "Credit Card" + }, + { + "Id": 7054, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-08-08T18:39:10", + "TransactionId": 60076658, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 774, + "CustomerInfo": 83329009, + "PaymentType": "Debit Card" + }, + { + "Id": 7055, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2017-05-26T18:34:08", + "TransactionId": 96575031, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 968, + "CustomerInfo": 8968447, + "PaymentType": "Debit Card" + }, + { + "Id": 7056, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2019-03-19T14:50:30", + "TransactionId": 47861327, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 135, + "CustomerInfo": 78440784, + "PaymentType": "Cash" + }, + { + "Id": 7057, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-07-29T11:31:12", + "TransactionId": 77031744, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 125, + "CustomerInfo": 17737128, + "PaymentType": "Cash" + }, + { + "Id": 7058, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-03-08T19:58:39", + "TransactionId": 40850092, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 63, + "CustomerInfo": 6305470, + "PaymentType": "Cash" + }, + { + "Id": 7059, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-12-21T07:09:07", + "TransactionId": 80998512, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 812, + "CustomerInfo": 13274133, + "PaymentType": "Debit Card" + }, + { + "Id": 7060, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-10-21T15:36:17", + "TransactionId": 59558295, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 945, + "CustomerInfo": 39728540, + "PaymentType": "Debit Card" + }, + { + "Id": 7061, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2019-09-24T17:14:47", + "TransactionId": 20196173, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 316, + "CustomerInfo": 91578262, + "PaymentType": "Cash" + }, + { + "Id": 7062, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-10-23T18:17:00", + "TransactionId": 11717199, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 82370036, + "PaymentType": "Cash" + }, + { + "Id": 7063, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-09-20T09:20:27", + "TransactionId": 33385513, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 677, + "CustomerInfo": 41355014, + "PaymentType": "Credit Card" + }, + { + "Id": 7064, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2017-02-11T10:22:13", + "TransactionId": 44687634, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 488, + "CustomerInfo": 28945088, + "PaymentType": "Debit Card" + }, + { + "Id": 7065, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2017-01-15T16:55:38", + "TransactionId": 1102958, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 77746644, + "PaymentType": "Cash" + }, + { + "Id": 7066, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-08-07T16:04:57", + "TransactionId": 4524549, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 864, + "CustomerInfo": 55675380, + "PaymentType": "Debit Card" + }, + { + "Id": 7067, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2017-12-19T08:14:47", + "TransactionId": 47711921, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 68890604, + "PaymentType": "Credit Card" + }, + { + "Id": 7068, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2018-04-24T17:58:51", + "TransactionId": 92184460, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 859, + "CustomerInfo": 97937977, + "PaymentType": "Credit Card" + }, + { + "Id": 7069, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-01-09T16:35:28", + "TransactionId": 56980091, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 931, + "CustomerInfo": 9141188, + "PaymentType": "Cash" + }, + { + "Id": 7070, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-08-15T19:56:21", + "TransactionId": 11463668, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 348, + "CustomerInfo": 25399809, + "PaymentType": "Cash" + }, + { + "Id": 7071, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2019-05-27T09:03:53", + "TransactionId": 27022625, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 33082322, + "PaymentType": "Cash" + }, + { + "Id": 7072, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2018-08-27T12:34:51", + "TransactionId": 65453418, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 776, + "CustomerInfo": 17275559, + "PaymentType": "Cash" + }, + { + "Id": 7073, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2019-10-18T17:53:14", + "TransactionId": 64077428, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 315, + "CustomerInfo": 96051071, + "PaymentType": "Debit Card" + }, + { + "Id": 7074, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2016-03-31T19:18:55", + "TransactionId": 67035914, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 311, + "CustomerInfo": 73251832, + "PaymentType": "Credit Card" + }, + { + "Id": 7075, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-01-29T14:24:43", + "TransactionId": 78701071, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 961, + "CustomerInfo": 47326905, + "PaymentType": "Debit Card" + }, + { + "Id": 7076, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-06-23T10:45:42", + "TransactionId": 55643956, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 97110731, + "PaymentType": "Cash" + }, + { + "Id": 7077, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2017-03-31T12:52:08", + "TransactionId": 99941296, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 339, + "CustomerInfo": 78004609, + "PaymentType": "Cash" + }, + { + "Id": 7078, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2019-09-17T18:37:26", + "TransactionId": 69847980, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 130, + "CustomerInfo": 23979402, + "PaymentType": "Cash" + }, + { + "Id": 7079, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-11-28T15:32:33", + "TransactionId": 25978590, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 912, + "CustomerInfo": 68345845, + "PaymentType": "Debit Card" + }, + { + "Id": 7080, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-11-29T18:43:38", + "TransactionId": 50769417, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 640, + "CustomerInfo": 37184570, + "PaymentType": "Debit Card" + }, + { + "Id": 7081, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2019-08-31T08:28:19", + "TransactionId": 81286260, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 311, + "CustomerInfo": 57472945, + "PaymentType": "Cash" + }, + { + "Id": 7082, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2016-09-20T09:13:24", + "TransactionId": 76993378, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 162, + "CustomerInfo": 20803765, + "PaymentType": "Debit Card" + }, + { + "Id": 7083, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2017-08-16T09:26:56", + "TransactionId": 58499359, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 307, + "CustomerInfo": 63957980, + "PaymentType": "Credit Card" + }, + { + "Id": 7084, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2017-10-10T13:15:01", + "TransactionId": 86063467, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 570, + "CustomerInfo": 4142056, + "PaymentType": "Credit Card" + }, + { + "Id": 7085, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-08-09T18:13:15", + "TransactionId": 217094, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 621, + "CustomerInfo": 4142164, + "PaymentType": "Cash" + }, + { + "Id": 7086, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-08-04T15:14:24", + "TransactionId": 89923254, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 12590936, + "PaymentType": "Cash" + }, + { + "Id": 7087, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-09-05T19:39:22", + "TransactionId": 85067249, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 985, + "CustomerInfo": 19826839, + "PaymentType": "Cash" + }, + { + "Id": 7088, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2016-12-07T18:55:35", + "TransactionId": 31140854, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 819, + "CustomerInfo": 61364035, + "PaymentType": "Debit Card" + }, + { + "Id": 7089, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-07-28T17:18:06", + "TransactionId": 52971148, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 913, + "CustomerInfo": 69084488, + "PaymentType": "Debit Card" + }, + { + "Id": 7090, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2018-12-15T09:51:33", + "TransactionId": 63083815, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 537, + "CustomerInfo": 80471297, + "PaymentType": "Credit Card" + }, + { + "Id": 7091, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-10-26T14:48:37", + "TransactionId": 59419334, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 138, + "CustomerInfo": 55862522, + "PaymentType": "Cash" + }, + { + "Id": 7092, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-10-06T09:16:25", + "TransactionId": 3129734, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 200, + "CustomerInfo": 68689437, + "PaymentType": "Debit Card" + }, + { + "Id": 7093, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2016-06-18T08:14:12", + "TransactionId": 99819967, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 383, + "CustomerInfo": 59111924, + "PaymentType": "Debit Card" + }, + { + "Id": 7094, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2018-07-02T13:51:45", + "TransactionId": 10141364, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 331, + "CustomerInfo": 57141010, + "PaymentType": "Credit Card" + }, + { + "Id": 7095, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2016-11-19T14:36:40", + "TransactionId": 5726663, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 374, + "CustomerInfo": 80886868, + "PaymentType": "Credit Card" + }, + { + "Id": 7096, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2016-10-26T08:20:33", + "TransactionId": 16609064, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 87, + "CustomerInfo": 46244047, + "PaymentType": "Debit Card" + }, + { + "Id": 7097, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-09-12T17:37:24", + "TransactionId": 21455144, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 417, + "CustomerInfo": 28784857, + "PaymentType": "Credit Card" + }, + { + "Id": 7098, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2019-08-26T18:10:39", + "TransactionId": 28494788, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 91, + "CustomerInfo": 19751506, + "PaymentType": "Credit Card" + }, + { + "Id": 7099, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2017-04-10T13:55:21", + "TransactionId": 89145283, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 436, + "CustomerInfo": 31123777, + "PaymentType": "Credit Card" + }, + { + "Id": 7100, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2019-09-23T11:46:28", + "TransactionId": 4519361, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 189, + "CustomerInfo": 4359773, + "PaymentType": "Credit Card" + }, + { + "Id": 7101, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-03-19T14:53:31", + "TransactionId": 99412154, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 518, + "CustomerInfo": 24797424, + "PaymentType": "Debit Card" + }, + { + "Id": 7102, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2018-06-09T18:42:03", + "TransactionId": 66396875, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 229, + "CustomerInfo": 62241507, + "PaymentType": "Cash" + }, + { + "Id": 7103, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2016-10-31T12:11:14", + "TransactionId": 37744513, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 153, + "CustomerInfo": 8157705, + "PaymentType": "Credit Card" + }, + { + "Id": 7104, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2017-05-01T08:01:41", + "TransactionId": 46281398, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 709, + "CustomerInfo": 920318, + "PaymentType": "Cash" + }, + { + "Id": 7105, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2016-03-05T07:24:14", + "TransactionId": 59521990, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 37, + "CustomerInfo": 5182441, + "PaymentType": "Credit Card" + }, + { + "Id": 7106, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2018-06-29T12:16:25", + "TransactionId": 45491442, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 65003467, + "PaymentType": "Credit Card" + }, + { + "Id": 7107, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-08-09T12:31:32", + "TransactionId": 4052734, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 66695865, + "PaymentType": "Debit Card" + }, + { + "Id": 7108, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-08-03T09:45:56", + "TransactionId": 41616450, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 129, + "CustomerInfo": 44764654, + "PaymentType": "Cash" + }, + { + "Id": 7109, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2016-11-23T14:44:27", + "TransactionId": 17667210, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 549, + "CustomerInfo": 8388608, + "PaymentType": "Cash" + }, + { + "Id": 7110, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2016-06-18T19:51:53", + "TransactionId": 23691417, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 536015, + "PaymentType": "Cash" + }, + { + "Id": 7111, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-03-27T17:48:46", + "TransactionId": 81573012, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 581, + "CustomerInfo": 60891134, + "PaymentType": "Credit Card" + }, + { + "Id": 7112, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2016-05-31T13:58:05", + "TransactionId": 87427774, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 465, + "CustomerInfo": 5032117, + "PaymentType": "Credit Card" + }, + { + "Id": 7113, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-10-21T16:24:40", + "TransactionId": 24307578, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 224, + "CustomerInfo": 75361920, + "PaymentType": "Debit Card" + }, + { + "Id": 7114, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2016-01-10T19:42:23", + "TransactionId": 93585728, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 629, + "CustomerInfo": 42493896, + "PaymentType": "Cash" + }, + { + "Id": 7115, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2018-09-28T19:23:23", + "TransactionId": 82537112, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 564, + "CustomerInfo": 87617964, + "PaymentType": "Credit Card" + }, + { + "Id": 7116, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2018-12-21T13:22:48", + "TransactionId": 80571818, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 893, + "CustomerInfo": 42914713, + "PaymentType": "Credit Card" + }, + { + "Id": 7117, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-10-08T10:14:53", + "TransactionId": 80002853, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 825, + "CustomerInfo": 68132652, + "PaymentType": "Debit Card" + }, + { + "Id": 7118, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-10-19T07:47:08", + "TransactionId": 31974880, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 454, + "CustomerInfo": 17990419, + "PaymentType": "Cash" + }, + { + "Id": 7119, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2017-10-02T14:36:06", + "TransactionId": 49595830, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 543, + "CustomerInfo": 58304205, + "PaymentType": "Cash" + }, + { + "Id": 7120, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2018-07-16T07:06:23", + "TransactionId": 28189334, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 540, + "CustomerInfo": 82574825, + "PaymentType": "Credit Card" + }, + { + "Id": 7121, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-02-11T19:13:26", + "TransactionId": 59281706, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 882, + "CustomerInfo": 78181298, + "PaymentType": "Debit Card" + }, + { + "Id": 7122, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-09-06T08:21:07", + "TransactionId": 50540401, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 420, + "CustomerInfo": 43140325, + "PaymentType": "Credit Card" + }, + { + "Id": 7123, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2016-04-03T18:32:15", + "TransactionId": 94280757, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 233, + "CustomerInfo": 42406401, + "PaymentType": "Debit Card" + }, + { + "Id": 7124, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-08-29T07:32:53", + "TransactionId": 85596089, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 549, + "CustomerInfo": 92103054, + "PaymentType": "Debit Card" + }, + { + "Id": 7125, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-02-10T16:26:50", + "TransactionId": 5747903, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 252, + "CustomerInfo": 8574356, + "PaymentType": "Debit Card" + }, + { + "Id": 7126, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-04-05T17:07:52", + "TransactionId": 95962599, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 747, + "CustomerInfo": 60744643, + "PaymentType": "Cash" + }, + { + "Id": 7127, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2017-07-02T14:06:43", + "TransactionId": 63656817, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 417, + "CustomerInfo": 10468922, + "PaymentType": "Cash" + }, + { + "Id": 7128, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-10-08T10:15:01", + "TransactionId": 6471241, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 982, + "CustomerInfo": 69145717, + "PaymentType": "Debit Card" + }, + { + "Id": 7129, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-10-25T19:25:06", + "TransactionId": 90556854, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 851, + "CustomerInfo": 63022159, + "PaymentType": "Cash" + }, + { + "Id": 7130, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-06-22T12:48:14", + "TransactionId": 44469236, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 6, + "CustomerInfo": 33156595, + "PaymentType": "Cash" + }, + { + "Id": 7131, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-06-22T11:48:46", + "TransactionId": 60147382, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 545, + "CustomerInfo": 77093155, + "PaymentType": "Debit Card" + }, + { + "Id": 7132, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-10-04T16:59:48", + "TransactionId": 64943259, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 132, + "CustomerInfo": 13376844, + "PaymentType": "Debit Card" + }, + { + "Id": 7133, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-01-20T13:07:24", + "TransactionId": 36622177, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 266, + "CustomerInfo": 8788970, + "PaymentType": "Debit Card" + }, + { + "Id": 7134, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2016-10-04T10:29:34", + "TransactionId": 7624335, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 436, + "CustomerInfo": 74626430, + "PaymentType": "Credit Card" + }, + { + "Id": 7135, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2017-09-25T12:44:47", + "TransactionId": 80019267, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 454, + "CustomerInfo": 68824004, + "PaymentType": "Credit Card" + }, + { + "Id": 7136, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-11-10T11:03:42", + "TransactionId": 26800415, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 342, + "CustomerInfo": 53664081, + "PaymentType": "Credit Card" + }, + { + "Id": 7137, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2017-05-27T12:46:57", + "TransactionId": 71886511, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 730, + "CustomerInfo": 76709090, + "PaymentType": "Credit Card" + }, + { + "Id": 7138, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2018-08-30T08:28:28", + "TransactionId": 69929171, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 250, + "CustomerInfo": 25269916, + "PaymentType": "Credit Card" + }, + { + "Id": 7139, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2018-07-13T17:13:29", + "TransactionId": 36454286, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 87, + "CustomerInfo": 40623586, + "PaymentType": "Debit Card" + }, + { + "Id": 7140, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-07-22T18:04:11", + "TransactionId": 83146182, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 737, + "CustomerInfo": 62698094, + "PaymentType": "Cash" + }, + { + "Id": 7141, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-02-21T16:39:56", + "TransactionId": 54077920, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 961, + "CustomerInfo": 61898191, + "PaymentType": "Debit Card" + }, + { + "Id": 7142, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-04-19T08:08:36", + "TransactionId": 4714126, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 161, + "CustomerInfo": 70586464, + "PaymentType": "Credit Card" + }, + { + "Id": 7143, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2016-10-28T19:57:22", + "TransactionId": 26792849, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 741, + "CustomerInfo": 79468440, + "PaymentType": "Credit Card" + }, + { + "Id": 7144, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2017-05-06T08:59:34", + "TransactionId": 7384580, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 197, + "CustomerInfo": 29554035, + "PaymentType": "Cash" + }, + { + "Id": 7145, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-07-20T10:54:55", + "TransactionId": 43718854, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 531, + "CustomerInfo": 53266313, + "PaymentType": "Debit Card" + }, + { + "Id": 7146, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-12-07T08:22:08", + "TransactionId": 32248268, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 668, + "CustomerInfo": 54208213, + "PaymentType": "Debit Card" + }, + { + "Id": 7147, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2017-05-04T13:18:55", + "TransactionId": 97841865, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 250, + "CustomerInfo": 49037961, + "PaymentType": "Cash" + }, + { + "Id": 7148, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2016-06-01T12:36:09", + "TransactionId": 34394484, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 278, + "CustomerInfo": 64893659, + "PaymentType": "Credit Card" + }, + { + "Id": 7149, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2016-08-22T08:03:59", + "TransactionId": 83987999, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 978, + "CustomerInfo": 65090301, + "PaymentType": "Debit Card" + }, + { + "Id": 7150, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2016-10-11T15:42:03", + "TransactionId": 4968914, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 41, + "CustomerInfo": 89375311, + "PaymentType": "Debit Card" + }, + { + "Id": 7151, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-06-18T16:59:57", + "TransactionId": 60799470, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 966, + "CustomerInfo": 77537940, + "PaymentType": "Credit Card" + }, + { + "Id": 7152, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2019-01-18T07:26:33", + "TransactionId": 36880186, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 176, + "CustomerInfo": 88094622, + "PaymentType": "Debit Card" + }, + { + "Id": 7153, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-06-29T16:25:24", + "TransactionId": 10227258, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 992, + "CustomerInfo": 48024703, + "PaymentType": "Cash" + }, + { + "Id": 7154, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-12-22T07:43:41", + "TransactionId": 42761399, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 154, + "CustomerInfo": 48921477, + "PaymentType": "Cash" + }, + { + "Id": 7155, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2018-03-09T19:51:53", + "TransactionId": 81331586, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 849, + "CustomerInfo": 55162016, + "PaymentType": "Debit Card" + }, + { + "Id": 7156, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-08-10T10:04:05", + "TransactionId": 51798977, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 687, + "CustomerInfo": 31004351, + "PaymentType": "Credit Card" + }, + { + "Id": 7157, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-05-14T13:43:24", + "TransactionId": 21231207, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 763, + "CustomerInfo": 68858797, + "PaymentType": "Debit Card" + }, + { + "Id": 7158, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2018-10-05T11:53:23", + "TransactionId": 13650896, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 50967061, + "PaymentType": "Debit Card" + }, + { + "Id": 7159, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-02-04T16:28:51", + "TransactionId": 57019404, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 669, + "CustomerInfo": 88698191, + "PaymentType": "Debit Card" + }, + { + "Id": 7160, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2017-10-31T10:17:28", + "TransactionId": 57601151, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 797, + "CustomerInfo": 61773637, + "PaymentType": "Debit Card" + }, + { + "Id": 7161, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2018-09-28T19:34:36", + "TransactionId": 27066867, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 119, + "CustomerInfo": 17732944, + "PaymentType": "Credit Card" + }, + { + "Id": 7162, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-05-02T10:07:49", + "TransactionId": 89831382, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 63, + "CustomerInfo": 36373948, + "PaymentType": "Debit Card" + }, + { + "Id": 7163, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-10-30T09:37:35", + "TransactionId": 6907683, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 797, + "CustomerInfo": 48802303, + "PaymentType": "Debit Card" + }, + { + "Id": 7164, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-10-04T16:55:03", + "TransactionId": 23472773, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 376, + "CustomerInfo": 17461922, + "PaymentType": "Debit Card" + }, + { + "Id": 7165, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-06-12T10:05:14", + "TransactionId": 91339126, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 818, + "CustomerInfo": 3446879, + "PaymentType": "Debit Card" + }, + { + "Id": 7166, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2016-12-25T19:29:51", + "TransactionId": 8536688, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 486, + "CustomerInfo": 26704389, + "PaymentType": "Debit Card" + }, + { + "Id": 7167, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2017-08-29T11:01:32", + "TransactionId": 16421375, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 344, + "CustomerInfo": 35243269, + "PaymentType": "Cash" + }, + { + "Id": 7168, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2018-10-23T13:34:11", + "TransactionId": 75946855, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 152, + "CustomerInfo": 36385147, + "PaymentType": "Credit Card" + }, + { + "Id": 7169, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2018-05-01T17:46:02", + "TransactionId": 89635270, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 723, + "CustomerInfo": 15061718, + "PaymentType": "Cash" + }, + { + "Id": 7170, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-10-19T14:29:20", + "TransactionId": 97827282, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 541, + "CustomerInfo": 24464892, + "PaymentType": "Cash" + }, + { + "Id": 7171, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-02-01T08:00:23", + "TransactionId": 7370634, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 12, + "CustomerInfo": 10839104, + "PaymentType": "Debit Card" + }, + { + "Id": 7172, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-12-14T12:25:55", + "TransactionId": 3908259, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 91234262, + "PaymentType": "Credit Card" + }, + { + "Id": 7173, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-12-31T11:03:16", + "TransactionId": 80895419, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 763, + "CustomerInfo": 38266248, + "PaymentType": "Credit Card" + }, + { + "Id": 7174, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2019-05-15T10:29:51", + "TransactionId": 88195363, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 153, + "CustomerInfo": 1513669, + "PaymentType": "Credit Card" + }, + { + "Id": 7175, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-10-24T08:54:06", + "TransactionId": 50057683, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 538, + "CustomerInfo": 65056166, + "PaymentType": "Cash" + }, + { + "Id": 7176, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-03-12T12:47:57", + "TransactionId": 43421713, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 501, + "CustomerInfo": 80811788, + "PaymentType": "Debit Card" + }, + { + "Id": 7177, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-06-24T12:42:55", + "TransactionId": 58535372, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 75, + "CustomerInfo": 67411108, + "PaymentType": "Credit Card" + }, + { + "Id": 7178, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-02-12T08:08:44", + "TransactionId": 67799307, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 881, + "CustomerInfo": 69877136, + "PaymentType": "Debit Card" + }, + { + "Id": 7179, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2019-09-18T13:50:01", + "TransactionId": 38425858, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 185, + "CustomerInfo": 61401576, + "PaymentType": "Cash" + }, + { + "Id": 7180, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2019-03-12T10:15:10", + "TransactionId": 46628660, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 412, + "CustomerInfo": 71385123, + "PaymentType": "Debit Card" + }, + { + "Id": 7181, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-01-20T15:15:42", + "TransactionId": 94280433, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 540, + "CustomerInfo": 71902954, + "PaymentType": "Credit Card" + }, + { + "Id": 7182, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-09-06T13:08:59", + "TransactionId": 55177845, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 66, + "CustomerInfo": 10147731, + "PaymentType": "Debit Card" + }, + { + "Id": 7183, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2016-05-23T19:03:39", + "TransactionId": 97920293, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 369, + "CustomerInfo": 48342224, + "PaymentType": "Cash" + }, + { + "Id": 7184, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2019-03-01T10:36:55", + "TransactionId": 82163900, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 56, + "CustomerInfo": 77340308, + "PaymentType": "Debit Card" + }, + { + "Id": 7185, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-07-05T14:12:12", + "TransactionId": 54366807, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 944, + "CustomerInfo": 96710241, + "PaymentType": "Cash" + }, + { + "Id": 7186, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2016-09-01T10:18:46", + "TransactionId": 477980, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 477, + "CustomerInfo": 62744409, + "PaymentType": "Debit Card" + }, + { + "Id": 7187, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2016-09-04T17:09:36", + "TransactionId": 84649354, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 838, + "CustomerInfo": 11535766, + "PaymentType": "Cash" + }, + { + "Id": 7188, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2016-05-10T09:07:21", + "TransactionId": 96824663, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 496, + "CustomerInfo": 5761148, + "PaymentType": "Credit Card" + }, + { + "Id": 7189, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-11-18T10:46:42", + "TransactionId": 57972193, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 260, + "CustomerInfo": 84055688, + "PaymentType": "Cash" + }, + { + "Id": 7190, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2017-04-21T15:45:30", + "TransactionId": 76876051, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 135, + "CustomerInfo": 97077092, + "PaymentType": "Debit Card" + }, + { + "Id": 7191, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-04-01T13:54:20", + "TransactionId": 98653015, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 86, + "CustomerInfo": 73938919, + "PaymentType": "Cash" + }, + { + "Id": 7192, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2018-09-27T09:44:30", + "TransactionId": 24006422, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 669, + "CustomerInfo": 91988185, + "PaymentType": "Cash" + }, + { + "Id": 7193, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-09-27T18:00:09", + "TransactionId": 47720759, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 311, + "CustomerInfo": 58037711, + "PaymentType": "Debit Card" + }, + { + "Id": 7194, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2018-03-28T16:03:30", + "TransactionId": 79164834, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 606, + "CustomerInfo": 36208121, + "PaymentType": "Debit Card" + }, + { + "Id": 7195, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-04-28T13:08:07", + "TransactionId": 25635329, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 944, + "CustomerInfo": 40959082, + "PaymentType": "Cash" + }, + { + "Id": 7196, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2017-10-10T16:00:46", + "TransactionId": 61778771, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 806, + "CustomerInfo": 51222409, + "PaymentType": "Credit Card" + }, + { + "Id": 7197, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-08-17T13:06:58", + "TransactionId": 11541024, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 395, + "CustomerInfo": 4355576, + "PaymentType": "Debit Card" + }, + { + "Id": 7198, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-08-30T11:06:26", + "TransactionId": 18769216, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 49, + "CustomerInfo": 66968406, + "PaymentType": "Debit Card" + }, + { + "Id": 7199, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2018-05-02T08:54:32", + "TransactionId": 72306661, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 933, + "CustomerInfo": 80857174, + "PaymentType": "Debit Card" + }, + { + "Id": 7200, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-08-27T10:06:06", + "TransactionId": 73863087, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 994, + "CustomerInfo": 51808829, + "PaymentType": "Debit Card" + }, + { + "Id": 7201, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-12-23T19:26:07", + "TransactionId": 1465651, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 197, + "CustomerInfo": 42650035, + "PaymentType": "Cash" + }, + { + "Id": 7202, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2018-12-17T19:22:22", + "TransactionId": 14921308, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 421, + "CustomerInfo": 65082236, + "PaymentType": "Cash" + }, + { + "Id": 7203, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-11-25T07:46:34", + "TransactionId": 79424923, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 162, + "CustomerInfo": 72345358, + "PaymentType": "Credit Card" + }, + { + "Id": 7204, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2016-04-09T09:51:16", + "TransactionId": 38057295, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 15, + "CustomerInfo": 28166617, + "PaymentType": "Cash" + }, + { + "Id": 7205, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-06-16T17:42:52", + "TransactionId": 83893493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 19327738, + "PaymentType": "Cash" + }, + { + "Id": 7206, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-03-12T14:59:17", + "TransactionId": 55678573, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 610, + "CustomerInfo": 88665857, + "PaymentType": "Debit Card" + }, + { + "Id": 7207, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-07-27T14:59:34", + "TransactionId": 31211316, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 178, + "CustomerInfo": 72976466, + "PaymentType": "Debit Card" + }, + { + "Id": 7208, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-12-05T07:51:10", + "TransactionId": 93736608, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 385, + "CustomerInfo": 29766374, + "PaymentType": "Cash" + }, + { + "Id": 7209, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-04-12T13:40:57", + "TransactionId": 11656401, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 25121774, + "PaymentType": "Credit Card" + }, + { + "Id": 7210, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2016-04-01T18:16:08", + "TransactionId": 63752132, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 657, + "CustomerInfo": 86215393, + "PaymentType": "Cash" + }, + { + "Id": 7211, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2016-07-14T15:19:18", + "TransactionId": 99962429, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 69370907, + "PaymentType": "Credit Card" + }, + { + "Id": 7212, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2016-08-09T19:22:48", + "TransactionId": 4498721, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 232, + "CustomerInfo": 71058690, + "PaymentType": "Debit Card" + }, + { + "Id": 7213, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-11-07T19:10:51", + "TransactionId": 11994701, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 632, + "CustomerInfo": 4471495, + "PaymentType": "Cash" + }, + { + "Id": 7214, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-08-07T11:39:33", + "TransactionId": 54035967, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 379, + "CustomerInfo": 30098800, + "PaymentType": "Debit Card" + }, + { + "Id": 7215, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2016-08-02T07:13:44", + "TransactionId": 32706460, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 874, + "CustomerInfo": 54926738, + "PaymentType": "Cash" + }, + { + "Id": 7216, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2016-03-09T08:06:17", + "TransactionId": 17605708, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 7252569, + "PaymentType": "Debit Card" + }, + { + "Id": 7217, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2019-05-21T12:39:53", + "TransactionId": 25345069, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 533, + "CustomerInfo": 33934326, + "PaymentType": "Cash" + }, + { + "Id": 7218, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-09-01T17:24:43", + "TransactionId": 66641231, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 305, + "CustomerInfo": 89967163, + "PaymentType": "Credit Card" + }, + { + "Id": 7219, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2016-01-17T15:47:48", + "TransactionId": 27351842, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 440, + "CustomerInfo": 41978105, + "PaymentType": "Debit Card" + }, + { + "Id": 7220, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2017-10-01T18:20:27", + "TransactionId": 83201871, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 366, + "CustomerInfo": 24374911, + "PaymentType": "Credit Card" + }, + { + "Id": 7221, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2017-12-27T15:51:24", + "TransactionId": 28602886, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 442, + "CustomerInfo": 5352785, + "PaymentType": "Cash" + }, + { + "Id": 7222, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-12-29T18:31:15", + "TransactionId": 68157563, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 481, + "CustomerInfo": 94435982, + "PaymentType": "Credit Card" + }, + { + "Id": 7223, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2017-03-22T08:06:35", + "TransactionId": 45312022, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 37, + "CustomerInfo": 69934394, + "PaymentType": "Debit Card" + }, + { + "Id": 7224, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-03-06T08:12:46", + "TransactionId": 49085614, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 543, + "CustomerInfo": 71769726, + "PaymentType": "Cash" + }, + { + "Id": 7225, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2017-02-17T13:07:06", + "TransactionId": 74516922, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 219, + "CustomerInfo": 36074480, + "PaymentType": "Cash" + }, + { + "Id": 7226, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-07-15T11:31:38", + "TransactionId": 72152312, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 855, + "CustomerInfo": 5747287, + "PaymentType": "Cash" + }, + { + "Id": 7227, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-09-05T07:11:17", + "TransactionId": 96871459, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 861, + "CustomerInfo": 87614802, + "PaymentType": "Debit Card" + }, + { + "Id": 7228, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2016-06-19T16:52:36", + "TransactionId": 36346753, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 560, + "CustomerInfo": 92226469, + "PaymentType": "Debit Card" + }, + { + "Id": 7229, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2019-04-27T13:33:19", + "TransactionId": 72261575, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 269, + "CustomerInfo": 18171721, + "PaymentType": "Debit Card" + }, + { + "Id": 7230, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-03-07T15:01:26", + "TransactionId": 48860299, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 275, + "CustomerInfo": 3702449, + "PaymentType": "Debit Card" + }, + { + "Id": 7231, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2017-12-12T13:27:24", + "TransactionId": 68859852, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 210, + "CustomerInfo": 62810142, + "PaymentType": "Cash" + }, + { + "Id": 7232, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2016-02-15T10:58:48", + "TransactionId": 52832058, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 158, + "CustomerInfo": 43348035, + "PaymentType": "Credit Card" + }, + { + "Id": 7233, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-10-19T09:04:36", + "TransactionId": 41021543, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 147, + "CustomerInfo": 21597201, + "PaymentType": "Debit Card" + }, + { + "Id": 7234, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2018-09-05T10:08:24", + "TransactionId": 99879443, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 546, + "CustomerInfo": 56171214, + "PaymentType": "Cash" + }, + { + "Id": 7235, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2017-08-31T08:41:00", + "TransactionId": 86396394, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 830, + "CustomerInfo": 2700364, + "PaymentType": "Debit Card" + }, + { + "Id": 7236, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-09-10T15:38:53", + "TransactionId": 68422540, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 670, + "CustomerInfo": 98338357, + "PaymentType": "Debit Card" + }, + { + "Id": 7237, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-02-23T19:40:57", + "TransactionId": 28364679, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 9247771, + "PaymentType": "Credit Card" + }, + { + "Id": 7238, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-06-02T07:57:04", + "TransactionId": 32640475, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 934, + "CustomerInfo": 58328977, + "PaymentType": "Cash" + }, + { + "Id": 7239, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2017-07-28T16:21:48", + "TransactionId": 16672173, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 311, + "CustomerInfo": 61743436, + "PaymentType": "Credit Card" + }, + { + "Id": 7240, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2017-02-27T11:55:06", + "TransactionId": 77561230, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 189, + "CustomerInfo": 89415362, + "PaymentType": "Debit Card" + }, + { + "Id": 7241, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-03-21T14:48:12", + "TransactionId": 11895195, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 601, + "CustomerInfo": 84409337, + "PaymentType": "Cash" + }, + { + "Id": 7242, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2016-07-01T07:24:06", + "TransactionId": 80021607, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 48, + "CustomerInfo": 74204596, + "PaymentType": "Debit Card" + }, + { + "Id": 7243, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2016-09-26T16:37:03", + "TransactionId": 31955788, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 963, + "CustomerInfo": 44077206, + "PaymentType": "Debit Card" + }, + { + "Id": 7244, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-03-02T16:09:42", + "TransactionId": 32393143, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 73, + "CustomerInfo": 34052701, + "PaymentType": "Debit Card" + }, + { + "Id": 7245, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-11-01T14:34:39", + "TransactionId": 30566472, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 280, + "CustomerInfo": 95281184, + "PaymentType": "Credit Card" + }, + { + "Id": 7246, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-01-09T13:04:39", + "TransactionId": 9724052, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 279, + "CustomerInfo": 87735071, + "PaymentType": "Cash" + }, + { + "Id": 7247, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-10-27T11:40:42", + "TransactionId": 23513977, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 89, + "CustomerInfo": 32864900, + "PaymentType": "Cash" + }, + { + "Id": 7248, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-04-12T19:14:10", + "TransactionId": 60639237, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 42, + "CustomerInfo": 36544228, + "PaymentType": "Debit Card" + }, + { + "Id": 7249, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-04-14T14:00:14", + "TransactionId": 82528898, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 888, + "CustomerInfo": 9750918, + "PaymentType": "Cash" + }, + { + "Id": 7250, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-12-01T17:54:49", + "TransactionId": 58058289, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 558, + "CustomerInfo": 7698109, + "PaymentType": "Credit Card" + }, + { + "Id": 7251, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2018-06-14T11:39:42", + "TransactionId": 1420032, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 958, + "CustomerInfo": 39965106, + "PaymentType": "Credit Card" + }, + { + "Id": 7252, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2019-10-26T11:01:15", + "TransactionId": 14804724, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 976, + "CustomerInfo": 81958170, + "PaymentType": "Credit Card" + }, + { + "Id": 7253, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-06-26T12:54:35", + "TransactionId": 138193, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 218, + "CustomerInfo": 41027440, + "PaymentType": "Debit Card" + }, + { + "Id": 7254, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2018-09-27T11:29:54", + "TransactionId": 33198745, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 715, + "CustomerInfo": 53979880, + "PaymentType": "Cash" + }, + { + "Id": 7255, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2019-02-08T12:29:31", + "TransactionId": 90175046, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 766, + "CustomerInfo": 54768245, + "PaymentType": "Credit Card" + }, + { + "Id": 7256, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2017-01-24T17:24:00", + "TransactionId": 54828430, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 663, + "CustomerInfo": 56086222, + "PaymentType": "Cash" + }, + { + "Id": 7257, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2018-08-07T09:16:42", + "TransactionId": 46274497, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 806, + "CustomerInfo": 50729918, + "PaymentType": "Cash" + }, + { + "Id": 7258, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-12-03T09:02:10", + "TransactionId": 3755890, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 18, + "CustomerInfo": 91404928, + "PaymentType": "Credit Card" + }, + { + "Id": 7259, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2019-06-27T19:14:27", + "TransactionId": 52224109, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 72, + "CustomerInfo": 72790340, + "PaymentType": "Credit Card" + }, + { + "Id": 7260, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-03-31T13:02:21", + "TransactionId": 46903732, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 488, + "CustomerInfo": 32509554, + "PaymentType": "Cash" + }, + { + "Id": 7261, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2018-09-22T13:02:56", + "TransactionId": 75350497, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 503, + "CustomerInfo": 72316199, + "PaymentType": "Cash" + }, + { + "Id": 7262, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-11-28T18:20:18", + "TransactionId": 49715064, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 885, + "CustomerInfo": 62774337, + "PaymentType": "Credit Card" + }, + { + "Id": 7263, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2016-07-18T09:07:21", + "TransactionId": 99936865, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 7, + "CustomerInfo": 96403952, + "PaymentType": "Cash" + }, + { + "Id": 7264, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2018-03-28T08:34:48", + "TransactionId": 95458280, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 742, + "CustomerInfo": 79636409, + "PaymentType": "Credit Card" + }, + { + "Id": 7265, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-10-02T15:13:15", + "TransactionId": 60407755, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 664, + "CustomerInfo": 33896532, + "PaymentType": "Credit Card" + }, + { + "Id": 7266, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-05-17T12:30:32", + "TransactionId": 59182049, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 664, + "CustomerInfo": 80131936, + "PaymentType": "Cash" + }, + { + "Id": 7267, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-02-18T18:37:52", + "TransactionId": 85458090, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 221, + "CustomerInfo": 21623041, + "PaymentType": "Debit Card" + }, + { + "Id": 7268, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-08-05T19:33:36", + "TransactionId": 40778731, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 200, + "CustomerInfo": 64993381, + "PaymentType": "Debit Card" + }, + { + "Id": 7269, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-12-13T10:38:38", + "TransactionId": 49297031, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 442, + "CustomerInfo": 77305473, + "PaymentType": "Cash" + }, + { + "Id": 7270, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2018-07-02T19:55:21", + "TransactionId": 21082122, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 547, + "CustomerInfo": 20999571, + "PaymentType": "Cash" + }, + { + "Id": 7271, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-12-25T10:55:47", + "TransactionId": 46027090, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 541, + "CustomerInfo": 55249325, + "PaymentType": "Debit Card" + }, + { + "Id": 7272, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-09-17T16:52:28", + "TransactionId": 12951386, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 474, + "CustomerInfo": 30461255, + "PaymentType": "Credit Card" + }, + { + "Id": 7273, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-03-30T13:16:45", + "TransactionId": 45072612, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 891, + "CustomerInfo": 43233630, + "PaymentType": "Debit Card" + }, + { + "Id": 7274, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2017-07-14T19:17:02", + "TransactionId": 2577344, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 76, + "CustomerInfo": 15348668, + "PaymentType": "Cash" + }, + { + "Id": 7275, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2018-08-22T12:29:14", + "TransactionId": 87748647, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 802, + "CustomerInfo": 18653234, + "PaymentType": "Cash" + }, + { + "Id": 7276, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2018-07-12T16:19:12", + "TransactionId": 40977998, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 202, + "CustomerInfo": 59382907, + "PaymentType": "Credit Card" + }, + { + "Id": 7277, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-07-28T12:14:24", + "TransactionId": 87600991, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 463, + "CustomerInfo": 38952399, + "PaymentType": "Cash" + }, + { + "Id": 7278, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-02-04T16:48:00", + "TransactionId": 50857950, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 614, + "CustomerInfo": 76102638, + "PaymentType": "Cash" + }, + { + "Id": 7279, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-04-11T07:19:21", + "TransactionId": 84489967, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 80, + "CustomerInfo": 38436049, + "PaymentType": "Cash" + }, + { + "Id": 7280, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-09-22T07:37:29", + "TransactionId": 34866491, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 669, + "CustomerInfo": 44231304, + "PaymentType": "Credit Card" + }, + { + "Id": 7281, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-02-28T19:09:33", + "TransactionId": 70395010, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 903, + "CustomerInfo": 95231636, + "PaymentType": "Credit Card" + }, + { + "Id": 7282, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2019-09-15T13:52:36", + "TransactionId": 88860906, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 537, + "CustomerInfo": 42174902, + "PaymentType": "Credit Card" + }, + { + "Id": 7283, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-07-23T12:45:13", + "TransactionId": 21046286, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 263, + "CustomerInfo": 15843248, + "PaymentType": "Debit Card" + }, + { + "Id": 7284, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2016-06-20T19:06:06", + "TransactionId": 89002385, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 97, + "CustomerInfo": 1297052, + "PaymentType": "Debit Card" + }, + { + "Id": 7285, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-07-13T10:52:54", + "TransactionId": 10786463, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 189, + "CustomerInfo": 17765921, + "PaymentType": "Debit Card" + }, + { + "Id": 7286, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-09-16T16:22:57", + "TransactionId": 34665170, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 960, + "CustomerInfo": 95944478, + "PaymentType": "Cash" + }, + { + "Id": 7287, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2017-01-31T17:42:26", + "TransactionId": 12998869, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 859, + "CustomerInfo": 5921747, + "PaymentType": "Credit Card" + }, + { + "Id": 7288, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2017-12-23T18:17:08", + "TransactionId": 48961015, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 685, + "CustomerInfo": 46869956, + "PaymentType": "Credit Card" + }, + { + "Id": 7289, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2018-08-11T18:29:31", + "TransactionId": 52871321, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 621, + "CustomerInfo": 3987424, + "PaymentType": "Credit Card" + }, + { + "Id": 7290, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-03-17T14:11:54", + "TransactionId": 95326216, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 694, + "CustomerInfo": 31696073, + "PaymentType": "Credit Card" + }, + { + "Id": 7291, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-07-22T11:10:45", + "TransactionId": 51278714, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 130, + "CustomerInfo": 19195059, + "PaymentType": "Debit Card" + }, + { + "Id": 7292, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-06-03T09:15:24", + "TransactionId": 67527000, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 174, + "CustomerInfo": 54408802, + "PaymentType": "Debit Card" + }, + { + "Id": 7293, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2019-09-28T15:38:18", + "TransactionId": 20856570, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 898, + "CustomerInfo": 53900290, + "PaymentType": "Cash" + }, + { + "Id": 7294, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-07-14T10:22:05", + "TransactionId": 90278309, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 350, + "CustomerInfo": 4591480, + "PaymentType": "Credit Card" + }, + { + "Id": 7295, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2018-09-30T18:34:25", + "TransactionId": 78737033, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 650, + "CustomerInfo": 48344599, + "PaymentType": "Credit Card" + }, + { + "Id": 7296, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2017-09-03T08:55:06", + "TransactionId": 51447128, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 972, + "CustomerInfo": 17768639, + "PaymentType": "Cash" + }, + { + "Id": 7297, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2017-08-16T09:02:27", + "TransactionId": 7256623, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 101, + "CustomerInfo": 21433201, + "PaymentType": "Cash" + }, + { + "Id": 7298, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2016-09-14T10:00:46", + "TransactionId": 80761739, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 526, + "CustomerInfo": 43982517, + "PaymentType": "Debit Card" + }, + { + "Id": 7299, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2017-02-17T10:56:30", + "TransactionId": 49677100, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 663, + "CustomerInfo": 89142084, + "PaymentType": "Credit Card" + }, + { + "Id": 7300, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2016-01-10T19:37:12", + "TransactionId": 65455195, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 194, + "CustomerInfo": 68377130, + "PaymentType": "Cash" + }, + { + "Id": 7301, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2018-10-14T17:29:54", + "TransactionId": 58348260, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 968, + "CustomerInfo": 77119286, + "PaymentType": "Cash" + }, + { + "Id": 7302, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-05-23T10:24:49", + "TransactionId": 88086993, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 861, + "CustomerInfo": 12514754, + "PaymentType": "Cash" + }, + { + "Id": 7303, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2016-08-22T13:00:29", + "TransactionId": 83815028, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 173, + "CustomerInfo": 40455757, + "PaymentType": "Cash" + }, + { + "Id": 7304, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2017-05-07T12:33:33", + "TransactionId": 44246569, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 379, + "CustomerInfo": 14262050, + "PaymentType": "Cash" + }, + { + "Id": 7305, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2017-01-12T13:25:15", + "TransactionId": 85250941, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 746, + "CustomerInfo": 7848688, + "PaymentType": "Credit Card" + }, + { + "Id": 7306, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-08-05T13:58:22", + "TransactionId": 40513620, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 780, + "CustomerInfo": 81255879, + "PaymentType": "Cash" + }, + { + "Id": 7307, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-01-05T16:55:55", + "TransactionId": 96309868, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 778, + "CustomerInfo": 7507064, + "PaymentType": "Debit Card" + }, + { + "Id": 7308, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-03-06T09:56:44", + "TransactionId": 18755220, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 221, + "CustomerInfo": 71310640, + "PaymentType": "Credit Card" + }, + { + "Id": 7309, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-02-02T09:50:07", + "TransactionId": 69991660, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 727, + "CustomerInfo": 94217074, + "PaymentType": "Credit Card" + }, + { + "Id": 7310, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-06-12T09:58:19", + "TransactionId": 46040019, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 513, + "CustomerInfo": 67761790, + "PaymentType": "Credit Card" + }, + { + "Id": 7311, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2017-05-12T14:56:07", + "TransactionId": 37218182, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 211, + "CustomerInfo": 78180356, + "PaymentType": "Credit Card" + }, + { + "Id": 7312, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2017-06-07T07:23:05", + "TransactionId": 53593447, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 770, + "CustomerInfo": 25140606, + "PaymentType": "Debit Card" + }, + { + "Id": 7313, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-01-03T19:05:57", + "TransactionId": 83465486, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 73, + "CustomerInfo": 17649118, + "PaymentType": "Cash" + }, + { + "Id": 7314, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2017-06-30T10:01:38", + "TransactionId": 20631626, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 731, + "CustomerInfo": 69029521, + "PaymentType": "Debit Card" + }, + { + "Id": 7315, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-05-15T19:09:07", + "TransactionId": 77492401, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 463, + "CustomerInfo": 68735583, + "PaymentType": "Cash" + }, + { + "Id": 7316, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-07-14T13:36:29", + "TransactionId": 72227850, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 910, + "CustomerInfo": 39402400, + "PaymentType": "Cash" + }, + { + "Id": 7317, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2016-06-14T19:11:43", + "TransactionId": 7787765, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 433, + "CustomerInfo": 3366643, + "PaymentType": "Cash" + }, + { + "Id": 7318, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2018-01-07T12:01:09", + "TransactionId": 37798351, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 314, + "CustomerInfo": 74203373, + "PaymentType": "Cash" + }, + { + "Id": 7319, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2018-10-27T07:37:03", + "TransactionId": 46472698, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 960, + "CustomerInfo": 72085954, + "PaymentType": "Credit Card" + }, + { + "Id": 7320, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-07-04T18:21:01", + "TransactionId": 17091572, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 59, + "CustomerInfo": 37638782, + "PaymentType": "Credit Card" + }, + { + "Id": 7321, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-08-27T12:24:20", + "TransactionId": 84414362, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 452, + "CustomerInfo": 58792145, + "PaymentType": "Credit Card" + }, + { + "Id": 7322, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2016-11-16T10:56:04", + "TransactionId": 40756559, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 556, + "CustomerInfo": 77991147, + "PaymentType": "Debit Card" + }, + { + "Id": 7323, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2016-09-16T15:45:04", + "TransactionId": 76638351, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 715, + "CustomerInfo": 49460911, + "PaymentType": "Credit Card" + }, + { + "Id": 7324, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2016-09-19T08:41:08", + "TransactionId": 49024607, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 57, + "CustomerInfo": 56012605, + "PaymentType": "Debit Card" + }, + { + "Id": 7325, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-07-04T10:50:01", + "TransactionId": 74987816, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 148, + "CustomerInfo": 73200993, + "PaymentType": "Debit Card" + }, + { + "Id": 7326, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-09-15T10:12:43", + "TransactionId": 55518432, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 407, + "CustomerInfo": 24529526, + "PaymentType": "Credit Card" + }, + { + "Id": 7327, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-04-22T07:56:12", + "TransactionId": 20571050, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 471, + "CustomerInfo": 21036060, + "PaymentType": "Credit Card" + }, + { + "Id": 7328, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2016-05-07T14:36:06", + "TransactionId": 50588239, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 91, + "CustomerInfo": 47892989, + "PaymentType": "Debit Card" + }, + { + "Id": 7329, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2017-09-02T15:22:36", + "TransactionId": 4796545, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 829, + "CustomerInfo": 94047791, + "PaymentType": "Debit Card" + }, + { + "Id": 7330, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2018-06-04T12:31:41", + "TransactionId": 86465068, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 294, + "CustomerInfo": 28244478, + "PaymentType": "Debit Card" + }, + { + "Id": 7331, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-12-08T14:23:25", + "TransactionId": 44719293, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 155, + "CustomerInfo": 86968263, + "PaymentType": "Debit Card" + }, + { + "Id": 7332, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2019-06-04T09:26:30", + "TransactionId": 58315370, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 9, + "CustomerInfo": 46222874, + "PaymentType": "Credit Card" + }, + { + "Id": 7333, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2018-08-21T07:16:28", + "TransactionId": 65786750, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 549, + "CustomerInfo": 27435774, + "PaymentType": "Credit Card" + }, + { + "Id": 7334, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-08-01T11:00:40", + "TransactionId": 31485049, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 311, + "CustomerInfo": 14574131, + "PaymentType": "Cash" + }, + { + "Id": 7335, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2019-10-01T08:26:53", + "TransactionId": 56158129, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 707, + "CustomerInfo": 36632338, + "PaymentType": "Credit Card" + }, + { + "Id": 7336, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2019-05-21T14:30:29", + "TransactionId": 1194924, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 615, + "CustomerInfo": 74642785, + "PaymentType": "Cash" + }, + { + "Id": 7337, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-07-28T07:16:45", + "TransactionId": 44575545, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 365, + "CustomerInfo": 4282553, + "PaymentType": "Cash" + }, + { + "Id": 7338, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-09-24T07:14:53", + "TransactionId": 71890314, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 967, + "CustomerInfo": 47059742, + "PaymentType": "Debit Card" + }, + { + "Id": 7339, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2019-04-10T17:23:34", + "TransactionId": 88041960, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 749, + "CustomerInfo": 51879060, + "PaymentType": "Credit Card" + }, + { + "Id": 7340, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-05-09T19:16:45", + "TransactionId": 27234474, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 582, + "CustomerInfo": 57115244, + "PaymentType": "Cash" + }, + { + "Id": 7341, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-08-09T16:06:14", + "TransactionId": 79602313, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 287, + "CustomerInfo": 46785471, + "PaymentType": "Cash" + }, + { + "Id": 7342, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-10-06T15:03:27", + "TransactionId": 89276417, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 975, + "CustomerInfo": 11912099, + "PaymentType": "Cash" + }, + { + "Id": 7343, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2019-08-08T17:54:14", + "TransactionId": 45483777, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 370, + "CustomerInfo": 99472084, + "PaymentType": "Credit Card" + }, + { + "Id": 7344, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-09-18T07:09:16", + "TransactionId": 71341579, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 569, + "CustomerInfo": 93912239, + "PaymentType": "Debit Card" + }, + { + "Id": 7345, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2019-06-10T18:45:04", + "TransactionId": 88213011, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 934, + "CustomerInfo": 43693698, + "PaymentType": "Credit Card" + }, + { + "Id": 7346, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2019-06-04T17:24:52", + "TransactionId": 50559214, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 575, + "CustomerInfo": 99352132, + "PaymentType": "Debit Card" + }, + { + "Id": 7347, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2016-03-16T12:11:40", + "TransactionId": 14808678, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 919, + "CustomerInfo": 52101581, + "PaymentType": "Debit Card" + }, + { + "Id": 7348, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-06-12T12:41:46", + "TransactionId": 61951395, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 667, + "CustomerInfo": 9747496, + "PaymentType": "Debit Card" + }, + { + "Id": 7349, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2018-04-07T17:23:08", + "TransactionId": 1297225, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 157, + "CustomerInfo": 44493881, + "PaymentType": "Debit Card" + }, + { + "Id": 7350, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-04-27T19:27:16", + "TransactionId": 75582226, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 34, + "CustomerInfo": 84393819, + "PaymentType": "Cash" + }, + { + "Id": 7351, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2018-11-19T08:26:01", + "TransactionId": 9352894, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 973, + "CustomerInfo": 43058212, + "PaymentType": "Credit Card" + }, + { + "Id": 7352, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2019-04-01T07:59:23", + "TransactionId": 53967894, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 934, + "CustomerInfo": 52944388, + "PaymentType": "Cash" + }, + { + "Id": 7353, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-10-17T12:27:56", + "TransactionId": 64895958, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 716, + "CustomerInfo": 89438135, + "PaymentType": "Cash" + }, + { + "Id": 7354, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-04-05T16:31:18", + "TransactionId": 6111485, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 191, + "CustomerInfo": 69851973, + "PaymentType": "Debit Card" + }, + { + "Id": 7355, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-01-16T17:55:32", + "TransactionId": 34051886, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 487, + "CustomerInfo": 43798297, + "PaymentType": "Debit Card" + }, + { + "Id": 7356, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2016-08-21T19:45:33", + "TransactionId": 25181850, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 59, + "CustomerInfo": 91929984, + "PaymentType": "Credit Card" + }, + { + "Id": 7357, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-06-30T09:56:18", + "TransactionId": 40842907, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 453, + "CustomerInfo": 41851815, + "PaymentType": "Cash" + }, + { + "Id": 7358, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-07-22T17:28:54", + "TransactionId": 59938974, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 326, + "CustomerInfo": 54492492, + "PaymentType": "Cash" + }, + { + "Id": 7359, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2018-11-11T14:36:14", + "TransactionId": 37140401, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 558, + "CustomerInfo": 98712993, + "PaymentType": "Cash" + }, + { + "Id": 7360, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-04-14T12:06:29", + "TransactionId": 14251691, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 30735580, + "PaymentType": "Credit Card" + }, + { + "Id": 7361, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-04-20T19:04:57", + "TransactionId": 22303342, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 447, + "CustomerInfo": 59821529, + "PaymentType": "Cash" + }, + { + "Id": 7362, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-05-23T07:30:09", + "TransactionId": 16151876, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 73, + "CustomerInfo": 36799, + "PaymentType": "Credit Card" + }, + { + "Id": 7363, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-07-04T09:57:53", + "TransactionId": 67393772, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 726, + "CustomerInfo": 17033801, + "PaymentType": "Debit Card" + }, + { + "Id": 7364, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-05-05T11:04:25", + "TransactionId": 52040245, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 555, + "CustomerInfo": 15824600, + "PaymentType": "Credit Card" + }, + { + "Id": 7365, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-05-19T17:45:19", + "TransactionId": 22907922, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 10, + "CustomerInfo": 31512790, + "PaymentType": "Cash" + }, + { + "Id": 7366, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-03-13T18:19:18", + "TransactionId": 14723412, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 191, + "CustomerInfo": 65471034, + "PaymentType": "Credit Card" + }, + { + "Id": 7367, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-05-13T10:37:03", + "TransactionId": 2722902, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 603, + "CustomerInfo": 9789171, + "PaymentType": "Cash" + }, + { + "Id": 7368, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2017-04-04T08:30:55", + "TransactionId": 99618420, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 282, + "CustomerInfo": 43222882, + "PaymentType": "Cash" + }, + { + "Id": 7369, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2016-02-20T19:31:35", + "TransactionId": 38608858, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 723, + "CustomerInfo": 75769017, + "PaymentType": "Cash" + }, + { + "Id": 7370, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2017-05-19T13:29:08", + "TransactionId": 37213437, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 672, + "CustomerInfo": 62248886, + "PaymentType": "Credit Card" + }, + { + "Id": 7371, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-06-19T18:41:11", + "TransactionId": 20459691, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 433, + "CustomerInfo": 13385291, + "PaymentType": "Cash" + }, + { + "Id": 7372, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2017-02-20T17:43:35", + "TransactionId": 65576775, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 101, + "CustomerInfo": 69243968, + "PaymentType": "Cash" + }, + { + "Id": 7373, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2017-03-06T11:46:54", + "TransactionId": 76289964, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 153, + "CustomerInfo": 70383365, + "PaymentType": "Cash" + }, + { + "Id": 7374, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-06-16T10:22:39", + "TransactionId": 94457775, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 94, + "CustomerInfo": 50078960, + "PaymentType": "Debit Card" + }, + { + "Id": 7375, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2016-12-28T09:21:01", + "TransactionId": 62200269, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 128, + "CustomerInfo": 47634445, + "PaymentType": "Cash" + }, + { + "Id": 7376, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2019-05-14T11:55:32", + "TransactionId": 86547335, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 313, + "CustomerInfo": 70590200, + "PaymentType": "Debit Card" + }, + { + "Id": 7377, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-09-21T19:53:37", + "TransactionId": 18724612, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 514, + "CustomerInfo": 32963505, + "PaymentType": "Cash" + }, + { + "Id": 7378, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2017-04-19T15:41:37", + "TransactionId": 40262247, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 919, + "CustomerInfo": 99189158, + "PaymentType": "Credit Card" + }, + { + "Id": 7379, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-10-31T10:08:33", + "TransactionId": 32372828, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 482, + "CustomerInfo": 47945092, + "PaymentType": "Cash" + }, + { + "Id": 7380, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-11-26T16:05:57", + "TransactionId": 45577465, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 144, + "CustomerInfo": 72800126, + "PaymentType": "Credit Card" + }, + { + "Id": 7381, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-10-21T10:40:57", + "TransactionId": 79752893, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 454, + "CustomerInfo": 22132798, + "PaymentType": "Debit Card" + }, + { + "Id": 7382, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-03-18T16:34:11", + "TransactionId": 16167824, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 967, + "CustomerInfo": 22287336, + "PaymentType": "Debit Card" + }, + { + "Id": 7383, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2019-10-11T19:35:37", + "TransactionId": 53635953, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 37666705, + "PaymentType": "Cash" + }, + { + "Id": 7384, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2019-11-02T13:11:08", + "TransactionId": 67273426, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 412, + "CustomerInfo": 87679569, + "PaymentType": "Debit Card" + }, + { + "Id": 7385, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-09-03T13:25:58", + "TransactionId": 33651267, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 468, + "CustomerInfo": 66275420, + "PaymentType": "Debit Card" + }, + { + "Id": 7386, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-09-19T18:43:47", + "TransactionId": 24154470, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 881, + "CustomerInfo": 74493981, + "PaymentType": "Debit Card" + }, + { + "Id": 7387, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2017-07-02T10:53:11", + "TransactionId": 18796157, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 495, + "CustomerInfo": 90284977, + "PaymentType": "Debit Card" + }, + { + "Id": 7388, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-06-27T08:45:53", + "TransactionId": 7378378, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 169, + "CustomerInfo": 69441190, + "PaymentType": "Credit Card" + }, + { + "Id": 7389, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-12-20T14:39:33", + "TransactionId": 51948562, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 855, + "CustomerInfo": 65226154, + "PaymentType": "Cash" + }, + { + "Id": 7390, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2019-09-11T17:05:51", + "TransactionId": 73558880, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 346, + "CustomerInfo": 39630367, + "PaymentType": "Credit Card" + }, + { + "Id": 7391, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-03-24T11:29:37", + "TransactionId": 10434236, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 115, + "CustomerInfo": 15288597, + "PaymentType": "Debit Card" + }, + { + "Id": 7392, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-12-26T09:05:28", + "TransactionId": 37854232, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 19, + "CustomerInfo": 54702141, + "PaymentType": "Debit Card" + }, + { + "Id": 7393, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-01-13T07:18:20", + "TransactionId": 75761974, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 685, + "CustomerInfo": 94167696, + "PaymentType": "Cash" + }, + { + "Id": 7394, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-12-07T09:02:53", + "TransactionId": 58509796, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 269, + "CustomerInfo": 57732568, + "PaymentType": "Debit Card" + }, + { + "Id": 7395, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-10-10T15:45:56", + "TransactionId": 73843511, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 946, + "CustomerInfo": 49176151, + "PaymentType": "Debit Card" + }, + { + "Id": 7396, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2018-01-31T11:14:56", + "TransactionId": 56154398, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 739, + "CustomerInfo": 98732818, + "PaymentType": "Credit Card" + }, + { + "Id": 7397, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2018-01-04T08:30:29", + "TransactionId": 84060085, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 909, + "CustomerInfo": 78002028, + "PaymentType": "Credit Card" + }, + { + "Id": 7398, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-02-10T09:55:18", + "TransactionId": 98213781, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 281, + "CustomerInfo": 90530012, + "PaymentType": "Credit Card" + }, + { + "Id": 7399, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-08-25T10:07:41", + "TransactionId": 26645306, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 513, + "CustomerInfo": 13028904, + "PaymentType": "Credit Card" + }, + { + "Id": 7400, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2017-11-23T11:19:06", + "TransactionId": 62005696, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 183, + "CustomerInfo": 21737265, + "PaymentType": "Debit Card" + }, + { + "Id": 7401, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-07-21T15:36:43", + "TransactionId": 14887194, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 586, + "CustomerInfo": 51813450, + "PaymentType": "Debit Card" + }, + { + "Id": 7402, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2018-10-08T17:53:23", + "TransactionId": 62033651, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 952, + "CustomerInfo": 94751574, + "PaymentType": "Debit Card" + }, + { + "Id": 7403, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2018-09-18T19:52:11", + "TransactionId": 97998929, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 6093537, + "PaymentType": "Credit Card" + }, + { + "Id": 7404, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-06-03T07:02:30", + "TransactionId": 21145033, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 450, + "CustomerInfo": 71582200, + "PaymentType": "Credit Card" + }, + { + "Id": 7405, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2018-03-26T18:15:24", + "TransactionId": 12134454, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 378, + "CustomerInfo": 69498522, + "PaymentType": "Debit Card" + }, + { + "Id": 7406, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-04-04T11:05:34", + "TransactionId": 88068865, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 991, + "CustomerInfo": 21831120, + "PaymentType": "Debit Card" + }, + { + "Id": 7407, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-03-02T11:44:53", + "TransactionId": 61144996, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 851, + "CustomerInfo": 12537734, + "PaymentType": "Cash" + }, + { + "Id": 7408, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2019-06-18T15:01:44", + "TransactionId": 92281356, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 694, + "CustomerInfo": 26438038, + "PaymentType": "Credit Card" + }, + { + "Id": 7409, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2017-03-23T07:31:52", + "TransactionId": 22980952, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 649, + "CustomerInfo": 19376428, + "PaymentType": "Credit Card" + }, + { + "Id": 7410, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-12-20T15:53:17", + "TransactionId": 86851288, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 425, + "CustomerInfo": 84907288, + "PaymentType": "Credit Card" + }, + { + "Id": 7411, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2016-03-10T15:14:59", + "TransactionId": 86721128, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 825, + "CustomerInfo": 65571327, + "PaymentType": "Credit Card" + }, + { + "Id": 7412, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2019-11-16T14:10:11", + "TransactionId": 31205026, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 530, + "CustomerInfo": 41694563, + "PaymentType": "Debit Card" + }, + { + "Id": 7413, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-02-12T09:55:18", + "TransactionId": 33183384, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 761, + "CustomerInfo": 53496678, + "PaymentType": "Credit Card" + }, + { + "Id": 7414, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2019-03-27T17:25:44", + "TransactionId": 21793339, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 445, + "CustomerInfo": 88469683, + "PaymentType": "Debit Card" + }, + { + "Id": 7415, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2017-10-07T18:17:25", + "TransactionId": 39580834, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 411, + "CustomerInfo": 44484470, + "PaymentType": "Credit Card" + }, + { + "Id": 7416, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-01-19T08:00:49", + "TransactionId": 26167511, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 369, + "CustomerInfo": 80598702, + "PaymentType": "Credit Card" + }, + { + "Id": 7417, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-04-22T08:54:49", + "TransactionId": 56005806, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 557, + "CustomerInfo": 4099786, + "PaymentType": "Cash" + }, + { + "Id": 7418, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-06-25T11:29:02", + "TransactionId": 55362509, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 631, + "CustomerInfo": 8942412, + "PaymentType": "Cash" + }, + { + "Id": 7419, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2016-10-08T18:07:21", + "TransactionId": 40587187, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 21, + "CustomerInfo": 5725965, + "PaymentType": "Cash" + }, + { + "Id": 7420, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2019-01-23T08:00:06", + "TransactionId": 88728007, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 7, + "CustomerInfo": 59944114, + "PaymentType": "Cash" + }, + { + "Id": 7421, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-09-07T11:35:48", + "TransactionId": 65202833, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 545, + "CustomerInfo": 49639207, + "PaymentType": "Cash" + }, + { + "Id": 7422, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-03-07T07:14:10", + "TransactionId": 98145593, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 78, + "CustomerInfo": 64139498, + "PaymentType": "Credit Card" + }, + { + "Id": 7423, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2018-11-05T07:40:05", + "TransactionId": 44592597, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 474, + "CustomerInfo": 52167507, + "PaymentType": "Cash" + }, + { + "Id": 7424, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2016-10-07T09:41:02", + "TransactionId": 6225561, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 26, + "CustomerInfo": 84202878, + "PaymentType": "Credit Card" + }, + { + "Id": 7425, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2017-03-18T17:17:14", + "TransactionId": 47281681, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 615, + "CustomerInfo": 39051870, + "PaymentType": "Debit Card" + }, + { + "Id": 7426, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-08-04T17:58:08", + "TransactionId": 83267123, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 907, + "CustomerInfo": 52470766, + "PaymentType": "Cash" + }, + { + "Id": 7427, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-07-04T16:31:18", + "TransactionId": 37894917, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 356, + "CustomerInfo": 87696275, + "PaymentType": "Debit Card" + }, + { + "Id": 7428, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2016-12-13T19:37:47", + "TransactionId": 12582516, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 967, + "CustomerInfo": 38865584, + "PaymentType": "Cash" + }, + { + "Id": 7429, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-07-22T16:27:33", + "TransactionId": 25582339, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 63470567, + "PaymentType": "Debit Card" + }, + { + "Id": 7430, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2019-05-13T07:26:15", + "TransactionId": 80508527, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 83, + "CustomerInfo": 24885194, + "PaymentType": "Debit Card" + }, + { + "Id": 7431, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2018-05-30T17:37:06", + "TransactionId": 54465110, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 214, + "CustomerInfo": 69035701, + "PaymentType": "Cash" + }, + { + "Id": 7432, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2019-05-13T12:57:01", + "TransactionId": 67090920, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 491, + "CustomerInfo": 95106178, + "PaymentType": "Debit Card" + }, + { + "Id": 7433, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-12-26T07:13:35", + "TransactionId": 57861106, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 942, + "CustomerInfo": 75992910, + "PaymentType": "Debit Card" + }, + { + "Id": 7434, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-03-11T18:31:24", + "TransactionId": 62170275, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 882, + "CustomerInfo": 26287234, + "PaymentType": "Debit Card" + }, + { + "Id": 7435, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-06-07T11:23:34", + "TransactionId": 79928483, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 8, + "CustomerInfo": 21845734, + "PaymentType": "Debit Card" + }, + { + "Id": 7436, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2017-01-11T09:22:36", + "TransactionId": 73317370, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 872, + "CustomerInfo": 23152011, + "PaymentType": "Cash" + }, + { + "Id": 7437, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-04-17T15:12:23", + "TransactionId": 57093423, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 80, + "CustomerInfo": 18919984, + "PaymentType": "Debit Card" + }, + { + "Id": 7438, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-05-29T07:58:48", + "TransactionId": 64098115, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 208, + "CustomerInfo": 23742602, + "PaymentType": "Cash" + }, + { + "Id": 7439, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-01-08T08:10:02", + "TransactionId": 13275097, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 148, + "CustomerInfo": 1281405, + "PaymentType": "Cash" + }, + { + "Id": 7440, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2017-02-15T12:24:55", + "TransactionId": 88881366, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 85, + "CustomerInfo": 26833309, + "PaymentType": "Cash" + }, + { + "Id": 7441, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2017-10-17T08:57:16", + "TransactionId": 32129042, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 740, + "CustomerInfo": 37266567, + "PaymentType": "Debit Card" + }, + { + "Id": 7442, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2016-07-11T16:10:51", + "TransactionId": 3026906, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 78, + "CustomerInfo": 65004414, + "PaymentType": "Debit Card" + }, + { + "Id": 7443, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-10-28T11:25:26", + "TransactionId": 37807520, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 576, + "CustomerInfo": 89847400, + "PaymentType": "Credit Card" + }, + { + "Id": 7444, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2016-07-31T17:15:30", + "TransactionId": 39733151, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 604, + "CustomerInfo": 28887469, + "PaymentType": "Cash" + }, + { + "Id": 7445, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2016-10-31T13:35:54", + "TransactionId": 7021041, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 253, + "CustomerInfo": 77101391, + "PaymentType": "Cash" + }, + { + "Id": 7446, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2017-11-21T09:03:45", + "TransactionId": 16845281, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 55110492, + "PaymentType": "Debit Card" + }, + { + "Id": 7447, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-11-28T10:12:43", + "TransactionId": 43015836, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 200, + "CustomerInfo": 71556940, + "PaymentType": "Credit Card" + }, + { + "Id": 7448, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-05-31T18:05:28", + "TransactionId": 82012869, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 568, + "CustomerInfo": 93274941, + "PaymentType": "Cash" + }, + { + "Id": 7449, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2019-05-31T10:06:58", + "TransactionId": 88565437, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 781, + "CustomerInfo": 54460995, + "PaymentType": "Debit Card" + }, + { + "Id": 7450, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-01-18T17:37:49", + "TransactionId": 9088115, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 352, + "CustomerInfo": 34909354, + "PaymentType": "Debit Card" + }, + { + "Id": 7451, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-10-09T09:25:21", + "TransactionId": 64945439, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 253, + "CustomerInfo": 83088674, + "PaymentType": "Credit Card" + }, + { + "Id": 7452, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2019-10-22T08:59:51", + "TransactionId": 51779985, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 697, + "CustomerInfo": 93409952, + "PaymentType": "Debit Card" + }, + { + "Id": 7453, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2017-08-27T09:21:53", + "TransactionId": 13915456, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 907, + "CustomerInfo": 50137932, + "PaymentType": "Cash" + }, + { + "Id": 7454, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2018-11-13T15:30:58", + "TransactionId": 67713351, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 91362888, + "PaymentType": "Debit Card" + }, + { + "Id": 7455, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2018-12-23T13:51:53", + "TransactionId": 69842391, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 212, + "CustomerInfo": 24442084, + "PaymentType": "Cash" + }, + { + "Id": 7456, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2019-01-24T16:04:13", + "TransactionId": 35732786, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 633, + "CustomerInfo": 86170593, + "PaymentType": "Cash" + }, + { + "Id": 7457, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2017-04-06T16:14:36", + "TransactionId": 90056001, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 74, + "CustomerInfo": 11560406, + "PaymentType": "Cash" + }, + { + "Id": 7458, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2016-03-01T17:36:58", + "TransactionId": 22537094, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 79, + "CustomerInfo": 18733532, + "PaymentType": "Credit Card" + }, + { + "Id": 7459, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2016-09-21T09:11:48", + "TransactionId": 6062070, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 70035797, + "PaymentType": "Credit Card" + }, + { + "Id": 7460, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-11-17T19:57:22", + "TransactionId": 83579321, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 977, + "CustomerInfo": 26511451, + "PaymentType": "Cash" + }, + { + "Id": 7461, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2018-05-18T15:18:26", + "TransactionId": 15377171, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 810, + "CustomerInfo": 12148212, + "PaymentType": "Cash" + }, + { + "Id": 7462, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2016-10-11T15:43:55", + "TransactionId": 98420948, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 664, + "CustomerInfo": 93349776, + "PaymentType": "Credit Card" + }, + { + "Id": 7463, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-03-10T16:51:36", + "TransactionId": 2256263, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 340, + "CustomerInfo": 67455675, + "PaymentType": "Credit Card" + }, + { + "Id": 7464, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-12-28T16:42:49", + "TransactionId": 78826385, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 60, + "CustomerInfo": 76263872, + "PaymentType": "Cash" + }, + { + "Id": 7465, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2018-08-16T15:22:11", + "TransactionId": 58458112, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 775, + "CustomerInfo": 2786308, + "PaymentType": "Debit Card" + }, + { + "Id": 7466, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-06-19T18:03:01", + "TransactionId": 28074826, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 166, + "CustomerInfo": 24815092, + "PaymentType": "Debit Card" + }, + { + "Id": 7467, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2016-06-15T17:04:51", + "TransactionId": 18444648, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 305, + "CustomerInfo": 74193778, + "PaymentType": "Debit Card" + }, + { + "Id": 7468, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2018-10-21T07:18:46", + "TransactionId": 33488940, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 11832967, + "PaymentType": "Credit Card" + }, + { + "Id": 7469, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2018-01-15T13:54:20", + "TransactionId": 58374561, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 547, + "CustomerInfo": 44086991, + "PaymentType": "Credit Card" + }, + { + "Id": 7470, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-08-09T11:51:04", + "TransactionId": 22095741, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 383, + "CustomerInfo": 190560, + "PaymentType": "Credit Card" + }, + { + "Id": 7471, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2019-05-23T17:53:05", + "TransactionId": 59690216, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 451, + "CustomerInfo": 99651624, + "PaymentType": "Credit Card" + }, + { + "Id": 7472, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2018-08-30T19:55:21", + "TransactionId": 37455378, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 297, + "CustomerInfo": 59690004, + "PaymentType": "Credit Card" + }, + { + "Id": 7473, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2017-12-25T19:49:44", + "TransactionId": 53131564, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 940, + "CustomerInfo": 57971748, + "PaymentType": "Cash" + }, + { + "Id": 7474, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-07-25T19:56:47", + "TransactionId": 17990085, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 967, + "CustomerInfo": 68784926, + "PaymentType": "Credit Card" + }, + { + "Id": 7475, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2018-01-01T18:43:38", + "TransactionId": 88271653, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 416, + "CustomerInfo": 65187264, + "PaymentType": "Debit Card" + }, + { + "Id": 7476, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2017-04-18T14:52:31", + "TransactionId": 61334489, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 848, + "CustomerInfo": 50717069, + "PaymentType": "Cash" + }, + { + "Id": 7477, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-06-01T12:56:44", + "TransactionId": 46033432, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 984, + "CustomerInfo": 58888128, + "PaymentType": "Credit Card" + }, + { + "Id": 7478, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-09-29T09:18:52", + "TransactionId": 80560634, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 427, + "CustomerInfo": 63444325, + "PaymentType": "Debit Card" + }, + { + "Id": 7479, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2017-11-20T11:46:54", + "TransactionId": 33048432, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 892, + "CustomerInfo": 12999543, + "PaymentType": "Cash" + }, + { + "Id": 7480, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-05-03T17:53:14", + "TransactionId": 15940401, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 415, + "CustomerInfo": 24577974, + "PaymentType": "Cash" + }, + { + "Id": 7481, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2017-04-18T19:32:36", + "TransactionId": 39899568, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 7, + "CustomerInfo": 79873095, + "PaymentType": "Cash" + }, + { + "Id": 7482, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2017-10-27T12:08:56", + "TransactionId": 66071671, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 70, + "CustomerInfo": 20707643, + "PaymentType": "Debit Card" + }, + { + "Id": 7483, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-09-11T11:12:20", + "TransactionId": 66458301, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 570, + "CustomerInfo": 41188993, + "PaymentType": "Credit Card" + }, + { + "Id": 7484, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-10-09T08:23:08", + "TransactionId": 21073932, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 644, + "CustomerInfo": 24048547, + "PaymentType": "Credit Card" + }, + { + "Id": 7485, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2017-06-07T09:47:57", + "TransactionId": 60025545, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 440, + "CustomerInfo": 65425856, + "PaymentType": "Debit Card" + }, + { + "Id": 7486, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-07-30T19:22:13", + "TransactionId": 62273540, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 443, + "CustomerInfo": 21412678, + "PaymentType": "Debit Card" + }, + { + "Id": 7487, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-03-03T15:10:31", + "TransactionId": 20756989, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 668, + "CustomerInfo": 36618098, + "PaymentType": "Debit Card" + }, + { + "Id": 7488, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-01-24T17:41:51", + "TransactionId": 75804245, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 862, + "CustomerInfo": 81875100, + "PaymentType": "Debit Card" + }, + { + "Id": 7489, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2018-01-15T09:45:48", + "TransactionId": 96536753, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 225, + "CustomerInfo": 54104971, + "PaymentType": "Debit Card" + }, + { + "Id": 7490, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2017-03-01T18:53:08", + "TransactionId": 21980119, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 224, + "CustomerInfo": 25185641, + "PaymentType": "Debit Card" + }, + { + "Id": 7491, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2016-01-12T10:18:46", + "TransactionId": 82533393, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 915, + "CustomerInfo": 89486458, + "PaymentType": "Debit Card" + }, + { + "Id": 7492, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-12-18T09:37:26", + "TransactionId": 59548273, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 778, + "CustomerInfo": 22787835, + "PaymentType": "Cash" + }, + { + "Id": 7493, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-06-01T19:49:09", + "TransactionId": 14160872, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 260, + "CustomerInfo": 94327411, + "PaymentType": "Debit Card" + }, + { + "Id": 7494, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2019-06-06T13:35:28", + "TransactionId": 17266043, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 230, + "CustomerInfo": 23760330, + "PaymentType": "Cash" + }, + { + "Id": 7495, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-12-06T10:00:12", + "TransactionId": 50123755, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 98, + "CustomerInfo": 65564013, + "PaymentType": "Debit Card" + }, + { + "Id": 7496, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2017-02-13T17:14:04", + "TransactionId": 48537193, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 73, + "CustomerInfo": 4963310, + "PaymentType": "Debit Card" + }, + { + "Id": 7497, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2018-12-23T17:50:47", + "TransactionId": 68505488, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 557, + "CustomerInfo": 13181820, + "PaymentType": "Debit Card" + }, + { + "Id": 7498, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-09-30T09:19:18", + "TransactionId": 91380388, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 398, + "CustomerInfo": 22362222, + "PaymentType": "Cash" + }, + { + "Id": 7499, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-10-24T11:24:35", + "TransactionId": 5069051, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 982, + "CustomerInfo": 44453631, + "PaymentType": "Credit Card" + }, + { + "Id": 7500, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-11-12T16:45:33", + "TransactionId": 44711875, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 626, + "CustomerInfo": 73133085, + "PaymentType": "Debit Card" + }, + { + "Id": 7501, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-06-19T19:37:47", + "TransactionId": 14971919, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 101, + "CustomerInfo": 18658045, + "PaymentType": "Credit Card" + }, + { + "Id": 7502, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2019-12-13T14:16:13", + "TransactionId": 94485617, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 6990394, + "PaymentType": "Credit Card" + }, + { + "Id": 7503, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2018-06-10T08:20:41", + "TransactionId": 65739770, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 912, + "CustomerInfo": 1541250, + "PaymentType": "Cash" + }, + { + "Id": 7504, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2019-06-27T12:24:03", + "TransactionId": 58803902, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 661, + "CustomerInfo": 96911058, + "PaymentType": "Credit Card" + }, + { + "Id": 7505, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-06-04T12:26:12", + "TransactionId": 83883077, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 814, + "CustomerInfo": 3401893, + "PaymentType": "Debit Card" + }, + { + "Id": 7506, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-09-03T16:37:29", + "TransactionId": 29530167, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 49, + "CustomerInfo": 53056229, + "PaymentType": "Debit Card" + }, + { + "Id": 7507, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2018-09-08T11:11:02", + "TransactionId": 98658203, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 874, + "CustomerInfo": 53592212, + "PaymentType": "Debit Card" + }, + { + "Id": 7508, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-10-09T13:35:02", + "TransactionId": 2109319, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 375, + "CustomerInfo": 42289337, + "PaymentType": "Cash" + }, + { + "Id": 7509, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2017-04-28T11:03:59", + "TransactionId": 43235132, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 876, + "CustomerInfo": 73775535, + "PaymentType": "Debit Card" + }, + { + "Id": 7510, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-03-19T15:04:02", + "TransactionId": 37978123, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 383, + "CustomerInfo": 48565290, + "PaymentType": "Credit Card" + }, + { + "Id": 7511, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2017-08-07T07:27:24", + "TransactionId": 57960047, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 52, + "CustomerInfo": 73139088, + "PaymentType": "Cash" + }, + { + "Id": 7512, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2017-02-17T12:46:31", + "TransactionId": 70219257, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 383, + "CustomerInfo": 52434166, + "PaymentType": "Cash" + }, + { + "Id": 7513, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-04-26T10:35:11", + "TransactionId": 40901110, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 64, + "CustomerInfo": 68317116, + "PaymentType": "Debit Card" + }, + { + "Id": 7514, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-06-02T10:15:27", + "TransactionId": 13698526, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 561, + "CustomerInfo": 71264557, + "PaymentType": "Cash" + }, + { + "Id": 7515, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-02-01T11:47:28", + "TransactionId": 80204973, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 600, + "CustomerInfo": 27530221, + "PaymentType": "Debit Card" + }, + { + "Id": 7516, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-10-08T07:20:12", + "TransactionId": 30839709, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 404, + "CustomerInfo": 30264099, + "PaymentType": "Cash" + }, + { + "Id": 7517, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2017-03-03T07:06:49", + "TransactionId": 26987664, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 711, + "CustomerInfo": 51475457, + "PaymentType": "Debit Card" + }, + { + "Id": 7518, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-09-04T07:15:27", + "TransactionId": 43410880, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 918, + "CustomerInfo": 35279428, + "PaymentType": "Debit Card" + }, + { + "Id": 7519, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2018-11-30T14:42:17", + "TransactionId": 87246152, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 430, + "CustomerInfo": 68379511, + "PaymentType": "Credit Card" + }, + { + "Id": 7520, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-08-20T19:01:55", + "TransactionId": 536900, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 715, + "CustomerInfo": 26850259, + "PaymentType": "Credit Card" + }, + { + "Id": 7521, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2018-03-06T07:18:55", + "TransactionId": 59054212, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 954, + "CustomerInfo": 12118223, + "PaymentType": "Debit Card" + }, + { + "Id": 7522, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-03-05T18:02:36", + "TransactionId": 28385350, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 519, + "CustomerInfo": 6927267, + "PaymentType": "Cash" + }, + { + "Id": 7523, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-07-30T09:18:35", + "TransactionId": 38416352, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 29, + "CustomerInfo": 62809384, + "PaymentType": "Credit Card" + }, + { + "Id": 7524, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-05-03T13:55:55", + "TransactionId": 76783890, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 933, + "CustomerInfo": 7672767, + "PaymentType": "Debit Card" + }, + { + "Id": 7525, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-02-10T08:51:56", + "TransactionId": 9410221, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 550, + "CustomerInfo": 96225476, + "PaymentType": "Debit Card" + }, + { + "Id": 7526, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-01-02T13:44:59", + "TransactionId": 51731939, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 42, + "CustomerInfo": 28744809, + "PaymentType": "Debit Card" + }, + { + "Id": 7527, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-03-29T12:11:14", + "TransactionId": 84501005, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 444, + "CustomerInfo": 46961757, + "PaymentType": "Credit Card" + }, + { + "Id": 7528, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2016-11-01T16:48:09", + "TransactionId": 88310566, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 195, + "CustomerInfo": 59678096, + "PaymentType": "Debit Card" + }, + { + "Id": 7529, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-05-03T19:08:50", + "TransactionId": 28692799, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 143, + "CustomerInfo": 19865050, + "PaymentType": "Cash" + }, + { + "Id": 7530, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-07-15T16:32:44", + "TransactionId": 49596166, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 937, + "CustomerInfo": 18316221, + "PaymentType": "Cash" + }, + { + "Id": 7531, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2018-11-03T12:33:42", + "TransactionId": 45271092, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 689, + "CustomerInfo": 97406605, + "PaymentType": "Cash" + }, + { + "Id": 7532, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-07-22T15:21:10", + "TransactionId": 72442713, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 536, + "CustomerInfo": 48795925, + "PaymentType": "Cash" + }, + { + "Id": 7533, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2019-07-02T19:05:40", + "TransactionId": 93044126, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 744, + "CustomerInfo": 60156159, + "PaymentType": "Credit Card" + }, + { + "Id": 7534, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2018-05-15T11:33:13", + "TransactionId": 78246557, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 46, + "CustomerInfo": 20618645, + "PaymentType": "Cash" + }, + { + "Id": 7535, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-05-19T16:50:18", + "TransactionId": 12954441, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 967, + "CustomerInfo": 37959733, + "PaymentType": "Cash" + }, + { + "Id": 7536, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-10-08T13:02:12", + "TransactionId": 83821625, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 279, + "CustomerInfo": 86418649, + "PaymentType": "Cash" + }, + { + "Id": 7537, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-03-14T08:03:24", + "TransactionId": 61986832, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 81397072, + "PaymentType": "Debit Card" + }, + { + "Id": 7538, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2017-11-03T16:45:07", + "TransactionId": 96677536, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 17, + "CustomerInfo": 10821103, + "PaymentType": "Debit Card" + }, + { + "Id": 7539, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-01-19T09:35:00", + "TransactionId": 62631702, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 497, + "CustomerInfo": 31796294, + "PaymentType": "Credit Card" + }, + { + "Id": 7540, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2018-05-13T19:53:54", + "TransactionId": 40629073, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 990, + "CustomerInfo": 55679624, + "PaymentType": "Credit Card" + }, + { + "Id": 7541, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2018-02-24T17:56:59", + "TransactionId": 37633213, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 981, + "CustomerInfo": 2516192, + "PaymentType": "Debit Card" + }, + { + "Id": 7542, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-05-05T16:34:45", + "TransactionId": 12344948, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 26, + "CustomerInfo": 31439105, + "PaymentType": "Debit Card" + }, + { + "Id": 7543, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-03-11T16:44:41", + "TransactionId": 71299603, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 698, + "CustomerInfo": 11888138, + "PaymentType": "Debit Card" + }, + { + "Id": 7544, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2017-03-15T17:50:30", + "TransactionId": 22732516, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 570, + "CustomerInfo": 19633750, + "PaymentType": "Debit Card" + }, + { + "Id": 7545, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2018-12-01T17:14:12", + "TransactionId": 65130843, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 183, + "CustomerInfo": 54881907, + "PaymentType": "Debit Card" + }, + { + "Id": 7546, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2019-10-13T11:03:59", + "TransactionId": 20047977, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 89, + "CustomerInfo": 29724175, + "PaymentType": "Cash" + }, + { + "Id": 7547, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2017-06-21T15:02:44", + "TransactionId": 36205880, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 661, + "CustomerInfo": 12886254, + "PaymentType": "Debit Card" + }, + { + "Id": 7548, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2018-02-21T16:08:59", + "TransactionId": 25656487, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 653, + "CustomerInfo": 30894206, + "PaymentType": "Cash" + }, + { + "Id": 7549, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2019-06-12T10:23:31", + "TransactionId": 8491173, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 223, + "CustomerInfo": 33693763, + "PaymentType": "Debit Card" + }, + { + "Id": 7550, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2018-02-22T07:48:43", + "TransactionId": 56224283, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 491, + "CustomerInfo": 40642268, + "PaymentType": "Debit Card" + }, + { + "Id": 7551, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2018-03-06T08:50:38", + "TransactionId": 34774117, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 479, + "CustomerInfo": 98997126, + "PaymentType": "Credit Card" + }, + { + "Id": 7552, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-09-15T18:12:58", + "TransactionId": 16258217, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 21912459, + "PaymentType": "Debit Card" + }, + { + "Id": 7553, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2017-02-25T12:41:37", + "TransactionId": 81009143, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 256, + "CustomerInfo": 5186467, + "PaymentType": "Cash" + }, + { + "Id": 7554, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-11-06T17:46:02", + "TransactionId": 68270015, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 983, + "CustomerInfo": 65887349, + "PaymentType": "Debit Card" + }, + { + "Id": 7555, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2018-11-11T11:09:27", + "TransactionId": 62724158, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 36980382, + "PaymentType": "Cash" + }, + { + "Id": 7556, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2018-10-10T09:37:44", + "TransactionId": 6640483, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 358, + "CustomerInfo": 12719979, + "PaymentType": "Cash" + }, + { + "Id": 7557, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-03-25T19:26:24", + "TransactionId": 13468466, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 1, + "CustomerInfo": 82382504, + "PaymentType": "Credit Card" + }, + { + "Id": 7558, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2019-01-06T18:02:36", + "TransactionId": 27276168, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 960, + "CustomerInfo": 8435017, + "PaymentType": "Credit Card" + }, + { + "Id": 7559, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2019-10-22T16:29:08", + "TransactionId": 93497088, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 866, + "CustomerInfo": 12394604, + "PaymentType": "Credit Card" + }, + { + "Id": 7560, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-03-28T17:04:16", + "TransactionId": 92419518, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 76, + "CustomerInfo": 46940401, + "PaymentType": "Debit Card" + }, + { + "Id": 7561, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2017-12-16T17:33:22", + "TransactionId": 38742685, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 907, + "CustomerInfo": 93469736, + "PaymentType": "Debit Card" + }, + { + "Id": 7562, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-04-05T09:53:51", + "TransactionId": 32304306, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 767, + "CustomerInfo": 27951868, + "PaymentType": "Credit Card" + }, + { + "Id": 7563, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-08-12T15:12:40", + "TransactionId": 98478143, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 834, + "CustomerInfo": 95403549, + "PaymentType": "Credit Card" + }, + { + "Id": 7564, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-07-08T15:59:46", + "TransactionId": 75465360, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 777, + "CustomerInfo": 34632679, + "PaymentType": "Cash" + }, + { + "Id": 7565, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-01-29T18:08:30", + "TransactionId": 75471058, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 371, + "CustomerInfo": 6568264, + "PaymentType": "Credit Card" + }, + { + "Id": 7566, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-04-10T18:35:00", + "TransactionId": 13949201, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 517, + "CustomerInfo": 90620105, + "PaymentType": "Cash" + }, + { + "Id": 7567, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-06-14T11:59:51", + "TransactionId": 46621054, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 442, + "CustomerInfo": 98507273, + "PaymentType": "Cash" + }, + { + "Id": 7568, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-12-28T18:47:57", + "TransactionId": 28189772, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 706, + "CustomerInfo": 27165746, + "PaymentType": "Debit Card" + }, + { + "Id": 7569, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-03-02T10:29:08", + "TransactionId": 51054340, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 398, + "CustomerInfo": 98314832, + "PaymentType": "Credit Card" + }, + { + "Id": 7570, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2016-04-24T13:25:41", + "TransactionId": 4916064, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 667, + "CustomerInfo": 99395467, + "PaymentType": "Credit Card" + }, + { + "Id": 7571, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-12-10T10:07:49", + "TransactionId": 86535247, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 462, + "CustomerInfo": 15105366, + "PaymentType": "Cash" + }, + { + "Id": 7572, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-02-06T10:29:08", + "TransactionId": 99034882, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 26, + "CustomerInfo": 15910535, + "PaymentType": "Debit Card" + }, + { + "Id": 7573, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-06-18T09:42:12", + "TransactionId": 41837353, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 650, + "CustomerInfo": 45276114, + "PaymentType": "Credit Card" + }, + { + "Id": 7574, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-02-26T16:14:10", + "TransactionId": 53323287, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 340, + "CustomerInfo": 45496252, + "PaymentType": "Credit Card" + }, + { + "Id": 7575, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2019-04-28T11:36:32", + "TransactionId": 12434679, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 89224874, + "PaymentType": "Debit Card" + }, + { + "Id": 7576, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-10-29T15:07:29", + "TransactionId": 69378455, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 472, + "CustomerInfo": 15648264, + "PaymentType": "Cash" + }, + { + "Id": 7577, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-06-08T15:31:24", + "TransactionId": 41423818, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 509, + "CustomerInfo": 11763060, + "PaymentType": "Debit Card" + }, + { + "Id": 7578, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-11-26T15:29:57", + "TransactionId": 86597649, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 766, + "CustomerInfo": 1889191, + "PaymentType": "Cash" + }, + { + "Id": 7579, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2019-11-06T12:48:06", + "TransactionId": 28365932, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 355, + "CustomerInfo": 20238228, + "PaymentType": "Debit Card" + }, + { + "Id": 7580, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2017-03-11T13:54:03", + "TransactionId": 14443365, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 713, + "CustomerInfo": 33603210, + "PaymentType": "Debit Card" + }, + { + "Id": 7581, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-03-27T15:02:44", + "TransactionId": 95361510, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 696, + "CustomerInfo": 19254643, + "PaymentType": "Cash" + }, + { + "Id": 7582, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-01-30T14:20:07", + "TransactionId": 85506949, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 887, + "CustomerInfo": 86395674, + "PaymentType": "Cash" + }, + { + "Id": 7583, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2017-04-26T08:48:03", + "TransactionId": 84569496, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 323, + "CustomerInfo": 94686040, + "PaymentType": "Cash" + }, + { + "Id": 7584, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2018-04-28T17:24:09", + "TransactionId": 32126029, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 596, + "CustomerInfo": 57541008, + "PaymentType": "Cash" + }, + { + "Id": 7585, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2017-04-28T08:32:04", + "TransactionId": 83128860, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 251, + "CustomerInfo": 31877735, + "PaymentType": "Cash" + }, + { + "Id": 7586, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-09-08T09:56:01", + "TransactionId": 53494344, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 573, + "CustomerInfo": 19095541, + "PaymentType": "Debit Card" + }, + { + "Id": 7587, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2017-08-09T07:32:01", + "TransactionId": 37065195, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 16, + "CustomerInfo": 7630123, + "PaymentType": "Cash" + }, + { + "Id": 7588, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-02-17T14:12:29", + "TransactionId": 21275411, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 695, + "CustomerInfo": 39357413, + "PaymentType": "Credit Card" + }, + { + "Id": 7589, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-07-25T09:40:45", + "TransactionId": 9757026, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 551, + "CustomerInfo": 48098720, + "PaymentType": "Credit Card" + }, + { + "Id": 7590, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2017-04-05T07:32:10", + "TransactionId": 91129821, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 133, + "CustomerInfo": 6546146, + "PaymentType": "Debit Card" + }, + { + "Id": 7591, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-07-21T17:25:26", + "TransactionId": 58360630, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 39, + "CustomerInfo": 30132899, + "PaymentType": "Credit Card" + }, + { + "Id": 7592, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-10-01T14:22:25", + "TransactionId": 56267524, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 339, + "CustomerInfo": 90198289, + "PaymentType": "Debit Card" + }, + { + "Id": 7593, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2017-05-21T10:00:03", + "TransactionId": 65921608, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 189, + "CustomerInfo": 38697869, + "PaymentType": "Credit Card" + }, + { + "Id": 7594, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-12-27T19:20:47", + "TransactionId": 95632618, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 947, + "CustomerInfo": 67525716, + "PaymentType": "Debit Card" + }, + { + "Id": 7595, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-05-28T09:06:29", + "TransactionId": 47614819, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 591, + "CustomerInfo": 75061065, + "PaymentType": "Cash" + }, + { + "Id": 7596, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-11-26T11:08:53", + "TransactionId": 70738043, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 349, + "CustomerInfo": 73574272, + "PaymentType": "Cash" + }, + { + "Id": 7597, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2017-04-13T15:17:34", + "TransactionId": 59122716, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 400, + "CustomerInfo": 24234318, + "PaymentType": "Credit Card" + }, + { + "Id": 7598, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2017-12-09T17:21:24", + "TransactionId": 35566170, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 625, + "CustomerInfo": 43480659, + "PaymentType": "Credit Card" + }, + { + "Id": 7599, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-11-03T09:48:14", + "TransactionId": 26712912, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 405, + "CustomerInfo": 25743331, + "PaymentType": "Cash" + }, + { + "Id": 7600, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2016-10-05T15:35:34", + "TransactionId": 32069059, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 135, + "CustomerInfo": 50186988, + "PaymentType": "Cash" + }, + { + "Id": 7601, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-01-16T10:15:36", + "TransactionId": 75678929, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 812, + "CustomerInfo": 22632665, + "PaymentType": "Debit Card" + }, + { + "Id": 7602, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2019-07-27T15:46:31", + "TransactionId": 85917931, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 454, + "CustomerInfo": 24852545, + "PaymentType": "Cash" + }, + { + "Id": 7603, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2018-03-28T18:42:12", + "TransactionId": 83905572, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 240, + "CustomerInfo": 96114434, + "PaymentType": "Credit Card" + }, + { + "Id": 7604, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-02-05T07:10:08", + "TransactionId": 18499497, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 282, + "CustomerInfo": 47678121, + "PaymentType": "Debit Card" + }, + { + "Id": 7605, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-10-30T19:28:34", + "TransactionId": 94379816, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 17, + "CustomerInfo": 18591726, + "PaymentType": "Credit Card" + }, + { + "Id": 7606, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2019-10-08T16:08:24", + "TransactionId": 19348168, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 641, + "CustomerInfo": 49267901, + "PaymentType": "Debit Card" + }, + { + "Id": 7607, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2019-10-02T10:46:42", + "TransactionId": 19957112, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 285, + "CustomerInfo": 73545854, + "PaymentType": "Credit Card" + }, + { + "Id": 7608, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2018-04-02T18:12:06", + "TransactionId": 36067406, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 770, + "CustomerInfo": 56151546, + "PaymentType": "Credit Card" + }, + { + "Id": 7609, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2016-03-06T16:43:06", + "TransactionId": 26615572, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 15147892, + "PaymentType": "Debit Card" + }, + { + "Id": 7610, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-02-14T11:26:53", + "TransactionId": 89843996, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 908, + "CustomerInfo": 86402761, + "PaymentType": "Debit Card" + }, + { + "Id": 7611, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-01-31T07:47:08", + "TransactionId": 42377261, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 27, + "CustomerInfo": 34778698, + "PaymentType": "Debit Card" + }, + { + "Id": 7612, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2019-06-01T14:06:52", + "TransactionId": 81246998, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 894, + "CustomerInfo": 35975513, + "PaymentType": "Credit Card" + }, + { + "Id": 7613, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-01-27T16:51:36", + "TransactionId": 92689832, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 603, + "CustomerInfo": 75677029, + "PaymentType": "Debit Card" + }, + { + "Id": 7614, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2019-07-18T14:37:49", + "TransactionId": 63403606, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 438, + "CustomerInfo": 36327876, + "PaymentType": "Cash" + }, + { + "Id": 7615, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2019-02-02T09:21:10", + "TransactionId": 28326617, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 740, + "CustomerInfo": 36727323, + "PaymentType": "Debit Card" + }, + { + "Id": 7616, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2019-01-14T12:31:32", + "TransactionId": 834399, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 414, + "CustomerInfo": 47723985, + "PaymentType": "Cash" + }, + { + "Id": 7617, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2017-04-07T08:56:15", + "TransactionId": 8420319, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 351, + "CustomerInfo": 66283377, + "PaymentType": "Debit Card" + }, + { + "Id": 7618, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2017-05-13T13:02:21", + "TransactionId": 82080256, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 31, + "CustomerInfo": 84693042, + "PaymentType": "Cash" + }, + { + "Id": 7619, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2016-06-20T16:14:10", + "TransactionId": 7581989, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 661, + "CustomerInfo": 51351869, + "PaymentType": "Debit Card" + }, + { + "Id": 7620, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-07-24T10:23:57", + "TransactionId": 76284724, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 757, + "CustomerInfo": 42315877, + "PaymentType": "Debit Card" + }, + { + "Id": 7621, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-05-12T18:14:15", + "TransactionId": 58749813, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 76, + "CustomerInfo": 78029498, + "PaymentType": "Debit Card" + }, + { + "Id": 7622, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-06-15T15:35:51", + "TransactionId": 879632, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 988, + "CustomerInfo": 31825393, + "PaymentType": "Cash" + }, + { + "Id": 7623, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2019-05-03T09:23:11", + "TransactionId": 68673785, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 790, + "CustomerInfo": 19735517, + "PaymentType": "Credit Card" + }, + { + "Id": 7624, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2019-01-10T15:48:40", + "TransactionId": 62511758, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 141, + "CustomerInfo": 97751554, + "PaymentType": "Cash" + }, + { + "Id": 7625, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-07-16T18:43:29", + "TransactionId": 23881335, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 543, + "CustomerInfo": 53845219, + "PaymentType": "Debit Card" + }, + { + "Id": 7626, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2016-07-15T15:07:29", + "TransactionId": 33369601, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 813, + "CustomerInfo": 16973827, + "PaymentType": "Debit Card" + }, + { + "Id": 7627, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-02-09T09:45:22", + "TransactionId": 26660204, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 717, + "CustomerInfo": 5251042, + "PaymentType": "Credit Card" + }, + { + "Id": 7628, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-10-19T14:29:20", + "TransactionId": 75819108, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 263, + "CustomerInfo": 28451504, + "PaymentType": "Debit Card" + }, + { + "Id": 7629, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2016-07-30T07:13:52", + "TransactionId": 26855301, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 709, + "CustomerInfo": 73360901, + "PaymentType": "Cash" + }, + { + "Id": 7630, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2018-03-10T14:45:45", + "TransactionId": 9595144, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 141, + "CustomerInfo": 65532464, + "PaymentType": "Credit Card" + }, + { + "Id": 7631, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2016-07-25T15:42:37", + "TransactionId": 91019787, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 244, + "CustomerInfo": 59891643, + "PaymentType": "Credit Card" + }, + { + "Id": 7632, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-06-28T19:13:09", + "TransactionId": 84467932, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 172, + "CustomerInfo": 86531043, + "PaymentType": "Cash" + }, + { + "Id": 7633, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-08-03T08:48:46", + "TransactionId": 42550469, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 977, + "CustomerInfo": 74861129, + "PaymentType": "Cash" + }, + { + "Id": 7634, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-04-10T19:40:13", + "TransactionId": 7601934, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 378, + "CustomerInfo": 93623662, + "PaymentType": "Debit Card" + }, + { + "Id": 7635, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-12-30T10:28:25", + "TransactionId": 22738544, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 79, + "CustomerInfo": 86033116, + "PaymentType": "Debit Card" + }, + { + "Id": 7636, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-11-23T11:56:15", + "TransactionId": 52007695, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 593, + "CustomerInfo": 85831944, + "PaymentType": "Cash" + }, + { + "Id": 7637, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-01-21T09:22:45", + "TransactionId": 9311622, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 899, + "CustomerInfo": 58043085, + "PaymentType": "Credit Card" + }, + { + "Id": 7638, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2017-09-28T10:43:41", + "TransactionId": 89106352, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 97736624, + "PaymentType": "Credit Card" + }, + { + "Id": 7639, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2018-03-07T10:29:25", + "TransactionId": 46522724, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 754, + "CustomerInfo": 33998371, + "PaymentType": "Cash" + }, + { + "Id": 7640, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-08-25T19:01:47", + "TransactionId": 63700195, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 92731976, + "PaymentType": "Credit Card" + }, + { + "Id": 7641, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-12-24T10:04:57", + "TransactionId": 22890564, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 645, + "CustomerInfo": 44516151, + "PaymentType": "Debit Card" + }, + { + "Id": 7642, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2018-05-05T14:15:04", + "TransactionId": 13020534, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 691, + "CustomerInfo": 64359897, + "PaymentType": "Credit Card" + }, + { + "Id": 7643, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2018-04-22T14:35:57", + "TransactionId": 45027038, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 448, + "CustomerInfo": 67929516, + "PaymentType": "Debit Card" + }, + { + "Id": 7644, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2019-12-15T19:17:54", + "TransactionId": 58841419, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 640, + "CustomerInfo": 62454639, + "PaymentType": "Cash" + }, + { + "Id": 7645, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2018-03-28T15:42:55", + "TransactionId": 88798375, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 450, + "CustomerInfo": 74252349, + "PaymentType": "Debit Card" + }, + { + "Id": 7646, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2018-06-07T15:54:26", + "TransactionId": 96729692, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 31091953, + "PaymentType": "Debit Card" + }, + { + "Id": 7647, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2019-04-03T07:45:59", + "TransactionId": 91751108, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 578, + "CustomerInfo": 35640247, + "PaymentType": "Cash" + }, + { + "Id": 7648, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2017-06-30T11:52:31", + "TransactionId": 41250596, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 52, + "CustomerInfo": 27229025, + "PaymentType": "Cash" + }, + { + "Id": 7649, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2017-07-28T17:35:31", + "TransactionId": 37887729, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 277, + "CustomerInfo": 53333015, + "PaymentType": "Credit Card" + }, + { + "Id": 7650, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-12-12T09:10:48", + "TransactionId": 55497504, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 833, + "CustomerInfo": 85659051, + "PaymentType": "Debit Card" + }, + { + "Id": 7651, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-05-24T12:20:53", + "TransactionId": 10417913, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 796, + "CustomerInfo": 36714524, + "PaymentType": "Cash" + }, + { + "Id": 7652, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2016-11-21T15:32:07", + "TransactionId": 38332336, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 964, + "CustomerInfo": 15165051, + "PaymentType": "Credit Card" + }, + { + "Id": 7653, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-03-13T13:31:00", + "TransactionId": 45675868, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 24, + "CustomerInfo": 85204485, + "PaymentType": "Credit Card" + }, + { + "Id": 7654, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-11-06T19:27:24", + "TransactionId": 88501534, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 827, + "CustomerInfo": 99039468, + "PaymentType": "Credit Card" + }, + { + "Id": 7655, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2018-09-06T18:06:55", + "TransactionId": 57331179, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 723, + "CustomerInfo": 76803245, + "PaymentType": "Debit Card" + }, + { + "Id": 7656, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2017-01-08T19:02:30", + "TransactionId": 334876, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 352, + "CustomerInfo": 400903, + "PaymentType": "Debit Card" + }, + { + "Id": 7657, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2019-11-11T17:26:53", + "TransactionId": 96323189, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 708, + "CustomerInfo": 27830518, + "PaymentType": "Debit Card" + }, + { + "Id": 7658, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-12-28T16:26:07", + "TransactionId": 97522076, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 784, + "CustomerInfo": 60014902, + "PaymentType": "Cash" + }, + { + "Id": 7659, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-01-02T11:42:09", + "TransactionId": 62658884, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 24, + "CustomerInfo": 25609902, + "PaymentType": "Cash" + }, + { + "Id": 7660, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2018-01-17T11:02:33", + "TransactionId": 30759203, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 155, + "CustomerInfo": 4296319, + "PaymentType": "Cash" + }, + { + "Id": 7661, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2018-12-12T11:04:25", + "TransactionId": 85820500, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 176, + "CustomerInfo": 5643348, + "PaymentType": "Credit Card" + }, + { + "Id": 7662, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-09-11T11:51:30", + "TransactionId": 34702485, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 778, + "CustomerInfo": 32433590, + "PaymentType": "Credit Card" + }, + { + "Id": 7663, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2019-02-28T09:59:46", + "TransactionId": 32381161, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 522, + "CustomerInfo": 79590623, + "PaymentType": "Debit Card" + }, + { + "Id": 7664, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-11-26T10:22:48", + "TransactionId": 53203953, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 175, + "CustomerInfo": 62727733, + "PaymentType": "Debit Card" + }, + { + "Id": 7665, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2018-11-15T19:14:27", + "TransactionId": 77453966, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 177, + "CustomerInfo": 79784593, + "PaymentType": "Credit Card" + }, + { + "Id": 7666, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2018-04-22T09:21:10", + "TransactionId": 51614705, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 157, + "CustomerInfo": 24847097, + "PaymentType": "Credit Card" + }, + { + "Id": 7667, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2016-09-03T08:46:19", + "TransactionId": 36322654, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 789, + "CustomerInfo": 54554833, + "PaymentType": "Debit Card" + }, + { + "Id": 7668, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2018-12-17T11:52:48", + "TransactionId": 10689738, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 15, + "CustomerInfo": 42216274, + "PaymentType": "Debit Card" + }, + { + "Id": 7669, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2019-06-29T12:06:29", + "TransactionId": 3119811, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 919, + "CustomerInfo": 48088007, + "PaymentType": "Credit Card" + }, + { + "Id": 7670, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-02-23T07:06:32", + "TransactionId": 21585751, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 125, + "CustomerInfo": 82017879, + "PaymentType": "Debit Card" + }, + { + "Id": 7671, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2019-10-27T12:17:00", + "TransactionId": 51608810, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 126, + "CustomerInfo": 33371232, + "PaymentType": "Cash" + }, + { + "Id": 7672, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-09-28T11:58:42", + "TransactionId": 7321555, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 62, + "CustomerInfo": 24407498, + "PaymentType": "Credit Card" + }, + { + "Id": 7673, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2016-09-16T15:15:33", + "TransactionId": 58548254, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 858, + "CustomerInfo": 73487320, + "PaymentType": "Debit Card" + }, + { + "Id": 7674, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2017-11-06T15:05:20", + "TransactionId": 80692099, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 950, + "CustomerInfo": 86991397, + "PaymentType": "Debit Card" + }, + { + "Id": 7675, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-07-28T12:57:45", + "TransactionId": 81109070, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 855, + "CustomerInfo": 14177630, + "PaymentType": "Debit Card" + }, + { + "Id": 7676, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2018-04-19T11:19:49", + "TransactionId": 81438296, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 881, + "CustomerInfo": 3235115, + "PaymentType": "Credit Card" + }, + { + "Id": 7677, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2019-11-15T15:09:13", + "TransactionId": 75753755, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 513, + "CustomerInfo": 41530178, + "PaymentType": "Debit Card" + }, + { + "Id": 7678, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2019-05-27T19:49:18", + "TransactionId": 85304697, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 372, + "CustomerInfo": 19212650, + "PaymentType": "Cash" + }, + { + "Id": 7679, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2016-04-06T13:50:01", + "TransactionId": 83327170, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 210, + "CustomerInfo": 9789478, + "PaymentType": "Credit Card" + }, + { + "Id": 7680, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-03-03T15:44:38", + "TransactionId": 60261493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 887, + "CustomerInfo": 13720182, + "PaymentType": "Debit Card" + }, + { + "Id": 7681, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-12-14T08:19:06", + "TransactionId": 66384762, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 151, + "CustomerInfo": 36768058, + "PaymentType": "Credit Card" + }, + { + "Id": 7682, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2019-02-05T14:23:00", + "TransactionId": 25605066, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 440, + "CustomerInfo": 73503800, + "PaymentType": "Debit Card" + }, + { + "Id": 7683, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-03-26T17:15:30", + "TransactionId": 56064413, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 652, + "CustomerInfo": 84161274, + "PaymentType": "Credit Card" + }, + { + "Id": 7684, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-09-30T18:07:12", + "TransactionId": 95939588, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 687, + "CustomerInfo": 22980895, + "PaymentType": "Debit Card" + }, + { + "Id": 7685, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-08-10T13:26:15", + "TransactionId": 43650526, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 293, + "CustomerInfo": 26852024, + "PaymentType": "Cash" + }, + { + "Id": 7686, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2017-02-07T17:35:31", + "TransactionId": 27420772, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 893, + "CustomerInfo": 25942945, + "PaymentType": "Cash" + }, + { + "Id": 7687, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-03-22T10:04:13", + "TransactionId": 43666078, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 241, + "CustomerInfo": 71275740, + "PaymentType": "Cash" + }, + { + "Id": 7688, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2019-10-03T14:54:40", + "TransactionId": 41649129, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 85, + "CustomerInfo": 99758903, + "PaymentType": "Debit Card" + }, + { + "Id": 7689, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-11-12T13:23:57", + "TransactionId": 78215246, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 875, + "CustomerInfo": 68676480, + "PaymentType": "Credit Card" + }, + { + "Id": 7690, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2019-10-08T07:26:33", + "TransactionId": 97264201, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 470, + "CustomerInfo": 61144922, + "PaymentType": "Credit Card" + }, + { + "Id": 7691, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-01-01T11:22:16", + "TransactionId": 14954382, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 408, + "CustomerInfo": 39130609, + "PaymentType": "Debit Card" + }, + { + "Id": 7692, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2016-06-10T15:08:38", + "TransactionId": 7082036, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 478, + "CustomerInfo": 26979021, + "PaymentType": "Cash" + }, + { + "Id": 7693, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2019-06-04T19:14:18", + "TransactionId": 22800194, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 524, + "CustomerInfo": 22407248, + "PaymentType": "Debit Card" + }, + { + "Id": 7694, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-09-02T17:23:08", + "TransactionId": 23920019, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 466, + "CustomerInfo": 11048788, + "PaymentType": "Cash" + }, + { + "Id": 7695, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2018-05-22T19:59:48", + "TransactionId": 55466818, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 126, + "CustomerInfo": 54394870, + "PaymentType": "Credit Card" + }, + { + "Id": 7696, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-06-06T09:11:14", + "TransactionId": 25950150, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 903, + "CustomerInfo": 92673593, + "PaymentType": "Cash" + }, + { + "Id": 7697, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-03-26T14:49:12", + "TransactionId": 91410148, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 577, + "CustomerInfo": 149695, + "PaymentType": "Cash" + }, + { + "Id": 7698, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2019-09-27T11:11:02", + "TransactionId": 93951712, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 461, + "CustomerInfo": 76894429, + "PaymentType": "Cash" + }, + { + "Id": 7699, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-05-21T11:47:28", + "TransactionId": 50124558, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 67, + "CustomerInfo": 85726876, + "PaymentType": "Credit Card" + }, + { + "Id": 7700, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2017-12-18T17:19:24", + "TransactionId": 88901638, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 795, + "CustomerInfo": 2034151, + "PaymentType": "Credit Card" + }, + { + "Id": 7701, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-01-21T09:44:04", + "TransactionId": 34260998, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 578, + "CustomerInfo": 66284493, + "PaymentType": "Credit Card" + }, + { + "Id": 7702, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-04-03T07:19:03", + "TransactionId": 7840068, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 87, + "CustomerInfo": 99536099, + "PaymentType": "Credit Card" + }, + { + "Id": 7703, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2019-09-02T19:27:59", + "TransactionId": 12145031, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 943, + "CustomerInfo": 72715859, + "PaymentType": "Debit Card" + }, + { + "Id": 7704, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-07-14T10:31:26", + "TransactionId": 36872840, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 216, + "CustomerInfo": 15064874, + "PaymentType": "Cash" + }, + { + "Id": 7705, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2018-03-19T19:58:22", + "TransactionId": 71681564, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 104, + "CustomerInfo": 84472244, + "PaymentType": "Cash" + }, + { + "Id": 7706, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2017-01-09T18:44:56", + "TransactionId": 80149443, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 320, + "CustomerInfo": 98609570, + "PaymentType": "Debit Card" + }, + { + "Id": 7707, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-10-28T16:39:56", + "TransactionId": 50243456, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 523, + "CustomerInfo": 59168392, + "PaymentType": "Debit Card" + }, + { + "Id": 7708, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2016-02-12T16:04:57", + "TransactionId": 86742316, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 700, + "CustomerInfo": 34366304, + "PaymentType": "Cash" + }, + { + "Id": 7709, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2017-10-04T10:55:12", + "TransactionId": 17453634, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 694, + "CustomerInfo": 30045915, + "PaymentType": "Cash" + }, + { + "Id": 7710, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2017-06-27T13:55:47", + "TransactionId": 11471840, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 981, + "CustomerInfo": 25417542, + "PaymentType": "Debit Card" + }, + { + "Id": 7711, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2017-01-11T15:42:55", + "TransactionId": 55267242, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 757, + "CustomerInfo": 95363451, + "PaymentType": "Cash" + }, + { + "Id": 7712, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2017-08-09T12:40:36", + "TransactionId": 9301345, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 562, + "CustomerInfo": 42533292, + "PaymentType": "Cash" + }, + { + "Id": 7713, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-02-20T09:06:03", + "TransactionId": 40081672, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 208, + "CustomerInfo": 38090241, + "PaymentType": "Cash" + }, + { + "Id": 7714, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-08-21T17:45:27", + "TransactionId": 85474774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 942, + "CustomerInfo": 16688815, + "PaymentType": "Debit Card" + }, + { + "Id": 7715, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-12-21T16:12:00", + "TransactionId": 92591505, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 619, + "CustomerInfo": 16021400, + "PaymentType": "Cash" + }, + { + "Id": 7716, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2017-12-26T19:59:23", + "TransactionId": 64373569, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 887, + "CustomerInfo": 38033005, + "PaymentType": "Credit Card" + }, + { + "Id": 7717, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2016-08-27T09:50:59", + "TransactionId": 31028560, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 689, + "CustomerInfo": 92139899, + "PaymentType": "Cash" + }, + { + "Id": 7718, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2017-02-25T09:51:33", + "TransactionId": 60824493, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 744, + "CustomerInfo": 20564470, + "PaymentType": "Cash" + }, + { + "Id": 7719, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2017-06-01T17:15:48", + "TransactionId": 19189917, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 993, + "CustomerInfo": 43852356, + "PaymentType": "Debit Card" + }, + { + "Id": 7720, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-07-15T07:29:00", + "TransactionId": 51218771, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 89808501, + "PaymentType": "Debit Card" + }, + { + "Id": 7721, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-09-23T13:14:44", + "TransactionId": 13169791, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 646, + "CustomerInfo": 28290388, + "PaymentType": "Cash" + }, + { + "Id": 7722, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2017-08-25T13:26:33", + "TransactionId": 26063367, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 128, + "CustomerInfo": 95400415, + "PaymentType": "Cash" + }, + { + "Id": 7723, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-12-22T19:41:14", + "TransactionId": 44774444, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 30089926, + "PaymentType": "Cash" + }, + { + "Id": 7724, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-04-12T11:34:22", + "TransactionId": 15444517, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 296, + "CustomerInfo": 9058263, + "PaymentType": "Cash" + }, + { + "Id": 7725, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-05-05T09:17:34", + "TransactionId": 29311862, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 329, + "CustomerInfo": 56742882, + "PaymentType": "Debit Card" + }, + { + "Id": 7726, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2018-05-13T08:17:31", + "TransactionId": 12347751, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 984, + "CustomerInfo": 51299180, + "PaymentType": "Cash" + }, + { + "Id": 7727, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-07-21T10:37:38", + "TransactionId": 8731414, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 830, + "CustomerInfo": 83303605, + "PaymentType": "Credit Card" + }, + { + "Id": 7728, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-11-18T15:21:10", + "TransactionId": 33383490, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 402, + "CustomerInfo": 28536568, + "PaymentType": "Credit Card" + }, + { + "Id": 7729, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2017-09-24T11:22:42", + "TransactionId": 60321379, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 341, + "CustomerInfo": 77454309, + "PaymentType": "Debit Card" + }, + { + "Id": 7730, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2018-04-23T17:07:26", + "TransactionId": 82954707, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 291, + "CustomerInfo": 27711088, + "PaymentType": "Cash" + }, + { + "Id": 7731, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2019-07-19T11:15:56", + "TransactionId": 37550506, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 228, + "CustomerInfo": 32152837, + "PaymentType": "Debit Card" + }, + { + "Id": 7732, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2016-11-07T09:21:53", + "TransactionId": 34919289, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 601, + "CustomerInfo": 39135680, + "PaymentType": "Debit Card" + }, + { + "Id": 7733, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2018-02-22T09:04:45", + "TransactionId": 45154174, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 671, + "CustomerInfo": 15586867, + "PaymentType": "Credit Card" + }, + { + "Id": 7734, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2017-09-10T14:52:48", + "TransactionId": 46723845, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 560, + "CustomerInfo": 5404590, + "PaymentType": "Credit Card" + }, + { + "Id": 7735, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2017-07-18T08:51:22", + "TransactionId": 61848884, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 671, + "CustomerInfo": 25341683, + "PaymentType": "Debit Card" + }, + { + "Id": 7736, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-04-20T09:40:36", + "TransactionId": 85223240, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 68877679, + "PaymentType": "Credit Card" + }, + { + "Id": 7737, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-12-10T14:40:16", + "TransactionId": 28526470, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 11, + "CustomerInfo": 20199843, + "PaymentType": "Cash" + }, + { + "Id": 7738, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-11-08T13:21:22", + "TransactionId": 60973800, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 98, + "CustomerInfo": 48398886, + "PaymentType": "Cash" + }, + { + "Id": 7739, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2016-04-21T18:26:38", + "TransactionId": 94604971, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 758, + "CustomerInfo": 30115362, + "PaymentType": "Credit Card" + }, + { + "Id": 7740, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2018-07-23T19:57:39", + "TransactionId": 72020270, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 319, + "CustomerInfo": 81630571, + "PaymentType": "Cash" + }, + { + "Id": 7741, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2019-01-25T10:15:45", + "TransactionId": 96142772, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 968, + "CustomerInfo": 88261633, + "PaymentType": "Cash" + }, + { + "Id": 7742, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-08-27T11:59:51", + "TransactionId": 29868183, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 521, + "CustomerInfo": 62045281, + "PaymentType": "Credit Card" + }, + { + "Id": 7743, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-04-08T11:35:14", + "TransactionId": 33152295, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 949, + "CustomerInfo": 1476588, + "PaymentType": "Credit Card" + }, + { + "Id": 7744, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2019-02-24T15:56:18", + "TransactionId": 57147775, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 596, + "CustomerInfo": 7099379, + "PaymentType": "Debit Card" + }, + { + "Id": 7745, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-07-11T15:14:24", + "TransactionId": 79102215, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 130, + "CustomerInfo": 4023551, + "PaymentType": "Debit Card" + }, + { + "Id": 7746, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-02-05T16:30:09", + "TransactionId": 41612306, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 956, + "CustomerInfo": 28435560, + "PaymentType": "Credit Card" + }, + { + "Id": 7747, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2016-02-10T16:52:02", + "TransactionId": 35835202, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 88, + "CustomerInfo": 40728663, + "PaymentType": "Credit Card" + }, + { + "Id": 7748, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2019-11-28T07:31:52", + "TransactionId": 29164159, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 156, + "CustomerInfo": 71163801, + "PaymentType": "Cash" + }, + { + "Id": 7749, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-10-26T10:00:12", + "TransactionId": 55370131, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 412, + "CustomerInfo": 57058699, + "PaymentType": "Credit Card" + }, + { + "Id": 7750, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2019-02-28T07:02:56", + "TransactionId": 98691555, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 57564974, + "PaymentType": "Cash" + }, + { + "Id": 7751, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-08-22T07:49:00", + "TransactionId": 6699916, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 165, + "CustomerInfo": 42887819, + "PaymentType": "Cash" + }, + { + "Id": 7752, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-01-01T18:55:44", + "TransactionId": 35915740, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 956, + "CustomerInfo": 75407369, + "PaymentType": "Debit Card" + }, + { + "Id": 7753, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2017-08-21T16:13:26", + "TransactionId": 85902537, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 298, + "CustomerInfo": 10972732, + "PaymentType": "Debit Card" + }, + { + "Id": 7754, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-05-05T10:36:55", + "TransactionId": 23186991, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 583, + "CustomerInfo": 41696576, + "PaymentType": "Debit Card" + }, + { + "Id": 7755, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-02-21T12:30:32", + "TransactionId": 98107469, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 24, + "CustomerInfo": 64147303, + "PaymentType": "Cash" + }, + { + "Id": 7756, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-04-22T16:45:07", + "TransactionId": 2782553, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 447, + "CustomerInfo": 7145355, + "PaymentType": "Cash" + }, + { + "Id": 7757, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-01-01T15:23:11", + "TransactionId": 60179527, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 975, + "CustomerInfo": 69204630, + "PaymentType": "Cash" + }, + { + "Id": 7758, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2018-05-23T10:23:23", + "TransactionId": 21022765, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 423, + "CustomerInfo": 81543381, + "PaymentType": "Cash" + }, + { + "Id": 7759, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2016-06-23T17:25:09", + "TransactionId": 32180988, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 491, + "CustomerInfo": 18601410, + "PaymentType": "Cash" + }, + { + "Id": 7760, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2016-09-05T18:34:25", + "TransactionId": 10196927, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 325, + "CustomerInfo": 18269220, + "PaymentType": "Debit Card" + }, + { + "Id": 7761, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2017-09-16T19:48:00", + "TransactionId": 97725356, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 76, + "CustomerInfo": 97845486, + "PaymentType": "Credit Card" + }, + { + "Id": 7762, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-03-10T16:48:26", + "TransactionId": 58753078, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 406, + "CustomerInfo": 38872809, + "PaymentType": "Debit Card" + }, + { + "Id": 7763, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2018-11-15T15:41:11", + "TransactionId": 50333772, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 996, + "CustomerInfo": 84153247, + "PaymentType": "Cash" + }, + { + "Id": 7764, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2019-10-14T10:32:10", + "TransactionId": 25384027, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 964, + "CustomerInfo": 25396587, + "PaymentType": "Credit Card" + }, + { + "Id": 7765, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2016-05-12T12:48:06", + "TransactionId": 40779392, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 862, + "CustomerInfo": 33970826, + "PaymentType": "Debit Card" + }, + { + "Id": 7766, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-03-03T17:22:42", + "TransactionId": 523923, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 501, + "CustomerInfo": 199158, + "PaymentType": "Debit Card" + }, + { + "Id": 7767, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-09-03T17:02:50", + "TransactionId": 94630852, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 930, + "CustomerInfo": 89962277, + "PaymentType": "Credit Card" + }, + { + "Id": 7768, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2016-01-21T17:15:56", + "TransactionId": 20766505, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 976, + "CustomerInfo": 73611515, + "PaymentType": "Credit Card" + }, + { + "Id": 7769, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-07-21T07:38:56", + "TransactionId": 64373961, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 781, + "CustomerInfo": 76263469, + "PaymentType": "Credit Card" + }, + { + "Id": 7770, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2019-10-13T18:46:57", + "TransactionId": 31804635, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 314, + "CustomerInfo": 33597795, + "PaymentType": "Cash" + }, + { + "Id": 7771, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2016-12-26T11:27:01", + "TransactionId": 56381250, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 561, + "CustomerInfo": 1076519, + "PaymentType": "Debit Card" + }, + { + "Id": 7772, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2018-09-08T14:35:40", + "TransactionId": 93276704, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 620, + "CustomerInfo": 76592225, + "PaymentType": "Credit Card" + }, + { + "Id": 7773, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-05-11T16:55:21", + "TransactionId": 32239726, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 394, + "CustomerInfo": 28049760, + "PaymentType": "Debit Card" + }, + { + "Id": 7774, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2016-05-06T18:56:01", + "TransactionId": 64109992, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 57128690, + "PaymentType": "Debit Card" + }, + { + "Id": 7775, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2018-03-10T18:10:22", + "TransactionId": 38754435, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 403, + "CustomerInfo": 54718845, + "PaymentType": "Cash" + }, + { + "Id": 7776, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-03-25T08:16:48", + "TransactionId": 91514235, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 841, + "CustomerInfo": 18530241, + "PaymentType": "Credit Card" + }, + { + "Id": 7777, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2018-12-29T10:20:04", + "TransactionId": 9428129, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 728, + "CustomerInfo": 92111362, + "PaymentType": "Debit Card" + }, + { + "Id": 7778, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2017-09-06T09:25:47", + "TransactionId": 66100603, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 710, + "CustomerInfo": 13256060, + "PaymentType": "Debit Card" + }, + { + "Id": 7779, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2016-08-29T09:24:20", + "TransactionId": 56721351, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 964, + "CustomerInfo": 53068793, + "PaymentType": "Credit Card" + }, + { + "Id": 7780, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2017-10-23T16:16:36", + "TransactionId": 15412935, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 596, + "CustomerInfo": 54209586, + "PaymentType": "Credit Card" + }, + { + "Id": 7781, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-08-12T18:09:04", + "TransactionId": 28913629, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 507, + "CustomerInfo": 50942039, + "PaymentType": "Debit Card" + }, + { + "Id": 7782, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2017-02-02T17:08:53", + "TransactionId": 26388025, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 420, + "CustomerInfo": 82474722, + "PaymentType": "Cash" + }, + { + "Id": 7783, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2019-08-07T15:42:55", + "TransactionId": 3135560, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 115, + "CustomerInfo": 37303959, + "PaymentType": "Debit Card" + }, + { + "Id": 7784, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-01-16T08:00:23", + "TransactionId": 90334074, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 525, + "CustomerInfo": 87391183, + "PaymentType": "Debit Card" + }, + { + "Id": 7785, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-01-12T13:33:53", + "TransactionId": 69252189, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 840, + "CustomerInfo": 48432214, + "PaymentType": "Cash" + }, + { + "Id": 7786, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2019-12-15T17:59:08", + "TransactionId": 72884996, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 962, + "CustomerInfo": 77881020, + "PaymentType": "Debit Card" + }, + { + "Id": 7787, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2016-03-01T14:04:42", + "TransactionId": 59644652, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 650, + "CustomerInfo": 13729619, + "PaymentType": "Debit Card" + }, + { + "Id": 7788, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2019-01-12T14:37:06", + "TransactionId": 90428713, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 770, + "CustomerInfo": 23842955, + "PaymentType": "Cash" + }, + { + "Id": 7789, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2018-03-21T10:26:50", + "TransactionId": 89904065, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 503, + "CustomerInfo": 86236970, + "PaymentType": "Credit Card" + }, + { + "Id": 7790, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2017-04-10T14:36:06", + "TransactionId": 33115349, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 344, + "CustomerInfo": 22218192, + "PaymentType": "Debit Card" + }, + { + "Id": 7791, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-04-15T07:57:48", + "TransactionId": 66711059, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 974, + "CustomerInfo": 172119, + "PaymentType": "Cash" + }, + { + "Id": 7792, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2017-07-25T19:32:27", + "TransactionId": 27353378, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 203, + "CustomerInfo": 25216128, + "PaymentType": "Cash" + }, + { + "Id": 7793, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2016-12-06T19:20:04", + "TransactionId": 3704838, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 593, + "CustomerInfo": 11623416, + "PaymentType": "Debit Card" + }, + { + "Id": 7794, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-02-18T18:34:51", + "TransactionId": 63597938, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 327, + "CustomerInfo": 62318151, + "PaymentType": "Cash" + }, + { + "Id": 7795, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2017-03-01T15:46:22", + "TransactionId": 13504289, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 567, + "CustomerInfo": 16419208, + "PaymentType": "Cash" + }, + { + "Id": 7796, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2016-06-01T16:15:45", + "TransactionId": 79411993, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 627, + "CustomerInfo": 12585964, + "PaymentType": "Debit Card" + }, + { + "Id": 7797, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-09-24T17:36:58", + "TransactionId": 53671202, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 134, + "CustomerInfo": 25197973, + "PaymentType": "Cash" + }, + { + "Id": 7798, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2017-10-12T09:39:10", + "TransactionId": 4692220, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 679, + "CustomerInfo": 93222985, + "PaymentType": "Debit Card" + }, + { + "Id": 7799, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2018-08-01T18:24:29", + "TransactionId": 81291139, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 805, + "CustomerInfo": 39353777, + "PaymentType": "Cash" + }, + { + "Id": 7800, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2018-04-19T14:03:50", + "TransactionId": 57427651, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 35668329, + "PaymentType": "Debit Card" + }, + { + "Id": 7801, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2018-12-02T12:10:48", + "TransactionId": 17323463, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 649, + "CustomerInfo": 31003555, + "PaymentType": "Debit Card" + }, + { + "Id": 7802, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2016-02-14T11:33:39", + "TransactionId": 55736996, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 393, + "CustomerInfo": 2804781, + "PaymentType": "Cash" + }, + { + "Id": 7803, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2018-11-23T08:51:13", + "TransactionId": 45660684, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 905, + "CustomerInfo": 5854878, + "PaymentType": "Cash" + }, + { + "Id": 7804, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-04-20T10:32:36", + "TransactionId": 62084352, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 928, + "CustomerInfo": 10642553, + "PaymentType": "Debit Card" + }, + { + "Id": 7805, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2018-03-28T10:21:04", + "TransactionId": 13628526, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 90, + "CustomerInfo": 10072301, + "PaymentType": "Credit Card" + }, + { + "Id": 7806, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-04-13T18:54:00", + "TransactionId": 95236554, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 211, + "CustomerInfo": 89277135, + "PaymentType": "Credit Card" + }, + { + "Id": 7807, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-12-09T10:54:03", + "TransactionId": 51370258, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 938, + "CustomerInfo": 14876328, + "PaymentType": "Cash" + }, + { + "Id": 7808, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-10-30T19:01:12", + "TransactionId": 91545706, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 979, + "CustomerInfo": 19741899, + "PaymentType": "Cash" + }, + { + "Id": 7809, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2019-06-19T09:35:00", + "TransactionId": 39225171, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 259, + "CustomerInfo": 33445762, + "PaymentType": "Cash" + }, + { + "Id": 7810, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2017-09-19T18:35:51", + "TransactionId": 41551236, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 338, + "CustomerInfo": 37988232, + "PaymentType": "Cash" + }, + { + "Id": 7811, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2017-05-12T19:21:13", + "TransactionId": 68771540, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 455, + "CustomerInfo": 28789706, + "PaymentType": "Cash" + }, + { + "Id": 7812, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2017-10-01T09:13:58", + "TransactionId": 67131714, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 8263754, + "PaymentType": "Credit Card" + }, + { + "Id": 7813, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-08-22T14:45:36", + "TransactionId": 13503336, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 73, + "CustomerInfo": 23174354, + "PaymentType": "Cash" + }, + { + "Id": 7814, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2016-08-31T17:52:31", + "TransactionId": 34238449, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 66813043, + "PaymentType": "Cash" + }, + { + "Id": 7815, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2018-07-01T13:59:40", + "TransactionId": 92822257, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 962, + "CustomerInfo": 61933816, + "PaymentType": "Credit Card" + }, + { + "Id": 7816, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2019-04-05T13:53:46", + "TransactionId": 73679051, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 76948998, + "PaymentType": "Debit Card" + }, + { + "Id": 7817, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-04-19T14:21:33", + "TransactionId": 47888255, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 22, + "CustomerInfo": 89469738, + "PaymentType": "Debit Card" + }, + { + "Id": 7818, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-03-23T09:13:41", + "TransactionId": 50768575, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 588, + "CustomerInfo": 36595213, + "PaymentType": "Credit Card" + }, + { + "Id": 7819, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-08-07T08:58:51", + "TransactionId": 93962468, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 388, + "CustomerInfo": 32644463, + "PaymentType": "Cash" + }, + { + "Id": 7820, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-12-22T12:11:23", + "TransactionId": 94759437, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 59, + "CustomerInfo": 99792847, + "PaymentType": "Cash" + }, + { + "Id": 7821, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2017-01-31T16:51:19", + "TransactionId": 40126012, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 157, + "CustomerInfo": 57017333, + "PaymentType": "Debit Card" + }, + { + "Id": 7822, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2016-10-19T17:51:48", + "TransactionId": 18597395, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 293, + "CustomerInfo": 33920729, + "PaymentType": "Cash" + }, + { + "Id": 7823, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2018-02-24T14:24:17", + "TransactionId": 48215027, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 655, + "CustomerInfo": 92295013, + "PaymentType": "Debit Card" + }, + { + "Id": 7824, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2016-10-25T10:56:38", + "TransactionId": 37799678, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 667, + "CustomerInfo": 95854104, + "PaymentType": "Debit Card" + }, + { + "Id": 7825, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-06-19T18:19:00", + "TransactionId": 25177699, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 5, + "CustomerInfo": 88062910, + "PaymentType": "Debit Card" + }, + { + "Id": 7826, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2017-06-06T07:22:39", + "TransactionId": 32375162, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 805, + "CustomerInfo": 98075595, + "PaymentType": "Credit Card" + }, + { + "Id": 7827, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2019-05-21T09:32:50", + "TransactionId": 776732, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 136, + "CustomerInfo": 59149669, + "PaymentType": "Credit Card" + }, + { + "Id": 7828, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-10-21T09:04:54", + "TransactionId": 32022886, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 102, + "CustomerInfo": 16774514, + "PaymentType": "Credit Card" + }, + { + "Id": 7829, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2018-03-28T19:09:42", + "TransactionId": 40463013, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 434, + "CustomerInfo": 32870657, + "PaymentType": "Credit Card" + }, + { + "Id": 7830, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2016-11-03T11:48:55", + "TransactionId": 56227246, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 393, + "CustomerInfo": 10556055, + "PaymentType": "Credit Card" + }, + { + "Id": 7831, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2018-10-07T14:46:11", + "TransactionId": 75615698, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 870, + "CustomerInfo": 82835521, + "PaymentType": "Debit Card" + }, + { + "Id": 7832, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2018-03-16T17:32:30", + "TransactionId": 2508559, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 899, + "CustomerInfo": 40101115, + "PaymentType": "Debit Card" + }, + { + "Id": 7833, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-09-12T17:36:58", + "TransactionId": 83562318, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 25, + "CustomerInfo": 18796581, + "PaymentType": "Credit Card" + }, + { + "Id": 7834, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-09-16T07:24:40", + "TransactionId": 68327492, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 311, + "CustomerInfo": 55594525, + "PaymentType": "Cash" + }, + { + "Id": 7835, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-05-05T17:36:06", + "TransactionId": 78430671, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 648, + "CustomerInfo": 99832229, + "PaymentType": "Credit Card" + }, + { + "Id": 7836, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-05-23T13:38:47", + "TransactionId": 37296881, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 557, + "CustomerInfo": 34657527, + "PaymentType": "Debit Card" + }, + { + "Id": 7837, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2019-07-17T17:10:45", + "TransactionId": 56685851, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 546, + "CustomerInfo": 92966952, + "PaymentType": "Credit Card" + }, + { + "Id": 7838, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2019-01-16T08:39:59", + "TransactionId": 84319358, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 29340423, + "PaymentType": "Cash" + }, + { + "Id": 7839, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2018-12-16T18:56:18", + "TransactionId": 19013985, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 741, + "CustomerInfo": 46558, + "PaymentType": "Cash" + }, + { + "Id": 7840, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2016-02-15T11:02:33", + "TransactionId": 9848034, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 356, + "CustomerInfo": 93890408, + "PaymentType": "Cash" + }, + { + "Id": 7841, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2016-08-24T09:26:38", + "TransactionId": 96277657, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 680, + "CustomerInfo": 18166735, + "PaymentType": "Cash" + }, + { + "Id": 7842, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2019-11-15T19:23:57", + "TransactionId": 26526207, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 278, + "CustomerInfo": 23208605, + "PaymentType": "Cash" + }, + { + "Id": 7843, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-06-04T11:58:08", + "TransactionId": 54363278, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 286, + "CustomerInfo": 65985611, + "PaymentType": "Cash" + }, + { + "Id": 7844, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2019-02-20T08:34:13", + "TransactionId": 97185549, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 549, + "CustomerInfo": 94816037, + "PaymentType": "Credit Card" + }, + { + "Id": 7845, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-09-24T07:24:40", + "TransactionId": 18711814, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 97, + "CustomerInfo": 20360820, + "PaymentType": "Cash" + }, + { + "Id": 7846, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-05-02T12:59:37", + "TransactionId": 7391162, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 678, + "CustomerInfo": 58334637, + "PaymentType": "Debit Card" + }, + { + "Id": 7847, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-11-03T12:11:23", + "TransactionId": 73808357, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 756, + "CustomerInfo": 22322571, + "PaymentType": "Credit Card" + }, + { + "Id": 7848, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-05-11T09:02:53", + "TransactionId": 97106192, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 709, + "CustomerInfo": 73690988, + "PaymentType": "Debit Card" + }, + { + "Id": 7849, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2016-04-28T18:51:07", + "TransactionId": 66371407, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 802, + "CustomerInfo": 75082001, + "PaymentType": "Credit Card" + }, + { + "Id": 7850, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2017-12-09T16:13:35", + "TransactionId": 10109250, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 355, + "CustomerInfo": 2098918, + "PaymentType": "Cash" + }, + { + "Id": 7851, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-08-07T19:29:43", + "TransactionId": 8005575, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 763, + "CustomerInfo": 95674976, + "PaymentType": "Cash" + }, + { + "Id": 7852, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2018-05-19T14:44:53", + "TransactionId": 26024092, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 460, + "CustomerInfo": 90880369, + "PaymentType": "Credit Card" + }, + { + "Id": 7853, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2018-11-15T13:39:30", + "TransactionId": 55557347, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 10, + "CustomerInfo": 6020694, + "PaymentType": "Cash" + }, + { + "Id": 7854, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-11-25T10:27:07", + "TransactionId": 46225393, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 321, + "CustomerInfo": 75924811, + "PaymentType": "Credit Card" + }, + { + "Id": 7855, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2017-09-20T07:15:19", + "TransactionId": 58684103, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 895, + "CustomerInfo": 79796181, + "PaymentType": "Cash" + }, + { + "Id": 7856, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2017-03-14T16:31:52", + "TransactionId": 19738105, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 850, + "CustomerInfo": 12963375, + "PaymentType": "Debit Card" + }, + { + "Id": 7857, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2016-09-18T10:42:49", + "TransactionId": 42628707, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 492, + "CustomerInfo": 34781086, + "PaymentType": "Credit Card" + }, + { + "Id": 7858, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-07-08T17:21:50", + "TransactionId": 92717907, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 51, + "CustomerInfo": 13355806, + "PaymentType": "Cash" + }, + { + "Id": 7859, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-11-24T19:42:06", + "TransactionId": 56208015, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 699, + "CustomerInfo": 29153118, + "PaymentType": "Debit Card" + }, + { + "Id": 7860, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-06-15T13:42:49", + "TransactionId": 728686, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 357, + "CustomerInfo": 35649987, + "PaymentType": "Debit Card" + }, + { + "Id": 7861, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2016-04-25T15:38:36", + "TransactionId": 98434160, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 953, + "CustomerInfo": 61584989, + "PaymentType": "Cash" + }, + { + "Id": 7862, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-05-06T10:50:10", + "TransactionId": 13613469, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 753, + "CustomerInfo": 39629241, + "PaymentType": "Cash" + }, + { + "Id": 7863, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2017-06-13T12:00:26", + "TransactionId": 12388884, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 823, + "CustomerInfo": 95406759, + "PaymentType": "Credit Card" + }, + { + "Id": 7864, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2016-08-10T19:16:11", + "TransactionId": 17341189, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 982, + "CustomerInfo": 1525851, + "PaymentType": "Cash" + }, + { + "Id": 7865, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2018-12-04T07:14:44", + "TransactionId": 15502640, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 472, + "CustomerInfo": 22109419, + "PaymentType": "Cash" + }, + { + "Id": 7866, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2016-03-28T18:07:29", + "TransactionId": 7697597, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 218, + "CustomerInfo": 73463066, + "PaymentType": "Debit Card" + }, + { + "Id": 7867, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-10-24T13:27:42", + "TransactionId": 95582795, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 68982028, + "PaymentType": "Cash" + }, + { + "Id": 7868, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2016-04-15T16:10:16", + "TransactionId": 61458189, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 559, + "CustomerInfo": 64920394, + "PaymentType": "Debit Card" + }, + { + "Id": 7869, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2018-02-11T12:46:39", + "TransactionId": 35142459, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 584, + "CustomerInfo": 49780802, + "PaymentType": "Credit Card" + }, + { + "Id": 7870, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-10-20T09:38:18", + "TransactionId": 2797252, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 252, + "CustomerInfo": 90279223, + "PaymentType": "Cash" + }, + { + "Id": 7871, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2019-07-10T11:43:35", + "TransactionId": 69799279, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 868, + "CustomerInfo": 11880911, + "PaymentType": "Credit Card" + }, + { + "Id": 7872, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2016-07-04T13:12:17", + "TransactionId": 88948120, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 333, + "CustomerInfo": 6659010, + "PaymentType": "Credit Card" + }, + { + "Id": 7873, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2018-05-23T16:01:55", + "TransactionId": 18664758, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 6045259, + "PaymentType": "Credit Card" + }, + { + "Id": 7874, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-09-07T16:48:35", + "TransactionId": 13932133, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 520, + "CustomerInfo": 86213581, + "PaymentType": "Debit Card" + }, + { + "Id": 7875, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2018-09-19T10:12:00", + "TransactionId": 17437930, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 386, + "CustomerInfo": 79170455, + "PaymentType": "Debit Card" + }, + { + "Id": 7876, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2018-09-28T19:39:22", + "TransactionId": 69457657, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 9, + "CustomerInfo": 62257658, + "PaymentType": "Debit Card" + }, + { + "Id": 7877, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-02-26T10:03:04", + "TransactionId": 10664206, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 640, + "CustomerInfo": 83289439, + "PaymentType": "Credit Card" + }, + { + "Id": 7878, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2017-05-11T11:58:25", + "TransactionId": 71662017, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 237, + "CustomerInfo": 42069302, + "PaymentType": "Cash" + }, + { + "Id": 7879, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-11-13T13:09:50", + "TransactionId": 47808815, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 546, + "CustomerInfo": 9465828, + "PaymentType": "Debit Card" + }, + { + "Id": 7880, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2017-05-04T15:49:58", + "TransactionId": 42692638, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 955, + "CustomerInfo": 29696031, + "PaymentType": "Cash" + }, + { + "Id": 7881, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2016-05-30T14:23:17", + "TransactionId": 21323006, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 820, + "CustomerInfo": 94112233, + "PaymentType": "Cash" + }, + { + "Id": 7882, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2016-03-17T15:42:20", + "TransactionId": 79216652, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 292, + "CustomerInfo": 25750522, + "PaymentType": "Debit Card" + }, + { + "Id": 7883, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-04-16T10:04:57", + "TransactionId": 80436600, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 960, + "CustomerInfo": 67244607, + "PaymentType": "Cash" + }, + { + "Id": 7884, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2018-05-13T13:44:41", + "TransactionId": 43531934, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 838, + "CustomerInfo": 4669127, + "PaymentType": "Credit Card" + }, + { + "Id": 7885, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2018-09-16T18:37:26", + "TransactionId": 11843642, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 621, + "CustomerInfo": 50993762, + "PaymentType": "Credit Card" + }, + { + "Id": 7886, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-12-12T07:24:49", + "TransactionId": 66211075, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 164, + "CustomerInfo": 60939964, + "PaymentType": "Cash" + }, + { + "Id": 7887, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2016-01-01T07:52:45", + "TransactionId": 71183690, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 855, + "CustomerInfo": 16536258, + "PaymentType": "Cash" + }, + { + "Id": 7888, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2017-03-23T14:30:20", + "TransactionId": 85603840, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 698, + "CustomerInfo": 18732483, + "PaymentType": "Cash" + }, + { + "Id": 7889, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-12-24T11:59:25", + "TransactionId": 68507756, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 582, + "CustomerInfo": 62450718, + "PaymentType": "Debit Card" + }, + { + "Id": 7890, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2018-10-08T11:51:48", + "TransactionId": 89544109, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 242, + "CustomerInfo": 82744651, + "PaymentType": "Cash" + }, + { + "Id": 7891, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2016-06-15T14:29:20", + "TransactionId": 35776380, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 210, + "CustomerInfo": 23690152, + "PaymentType": "Cash" + }, + { + "Id": 7892, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2016-04-14T18:01:35", + "TransactionId": 54528402, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 908, + "CustomerInfo": 77475907, + "PaymentType": "Credit Card" + }, + { + "Id": 7893, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2016-10-23T08:02:41", + "TransactionId": 81996106, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 671, + "CustomerInfo": 52345737, + "PaymentType": "Cash" + }, + { + "Id": 7894, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-11-08T19:19:12", + "TransactionId": 17923601, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 98, + "CustomerInfo": 18685422, + "PaymentType": "Credit Card" + }, + { + "Id": 7895, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2017-10-05T12:37:26", + "TransactionId": 53173808, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 578, + "CustomerInfo": 64034173, + "PaymentType": "Cash" + }, + { + "Id": 7896, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-12-17T08:05:08", + "TransactionId": 23497877, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 570, + "CustomerInfo": 2146219, + "PaymentType": "Cash" + }, + { + "Id": 7897, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-07-11T08:31:47", + "TransactionId": 78275221, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 233, + "CustomerInfo": 373792, + "PaymentType": "Debit Card" + }, + { + "Id": 7898, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2017-08-24T18:38:44", + "TransactionId": 95579410, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 295, + "CustomerInfo": 21287535, + "PaymentType": "Debit Card" + }, + { + "Id": 7899, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2018-06-04T11:34:39", + "TransactionId": 76571779, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 585, + "CustomerInfo": 96384752, + "PaymentType": "Cash" + }, + { + "Id": 7900, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-12-30T17:09:19", + "TransactionId": 10831687, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 848, + "CustomerInfo": 92330522, + "PaymentType": "Credit Card" + }, + { + "Id": 7901, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-10-12T16:42:06", + "TransactionId": 6028551, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 727, + "CustomerInfo": 85048818, + "PaymentType": "Debit Card" + }, + { + "Id": 7902, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2016-01-23T19:31:35", + "TransactionId": 33731485, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 814, + "CustomerInfo": 3697332, + "PaymentType": "Cash" + }, + { + "Id": 7903, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-07-30T17:23:34", + "TransactionId": 94245799, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 606, + "CustomerInfo": 76638242, + "PaymentType": "Cash" + }, + { + "Id": 7904, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2018-04-21T09:48:49", + "TransactionId": 45953699, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 806, + "CustomerInfo": 81519498, + "PaymentType": "Cash" + }, + { + "Id": 7905, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2017-08-02T18:10:39", + "TransactionId": 10336280, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 853, + "CustomerInfo": 67825925, + "PaymentType": "Credit Card" + }, + { + "Id": 7906, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2018-06-11T14:25:00", + "TransactionId": 29970333, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 693, + "CustomerInfo": 42575157, + "PaymentType": "Debit Card" + }, + { + "Id": 7907, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2016-11-16T19:25:15", + "TransactionId": 73718989, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 71, + "CustomerInfo": 48773114, + "PaymentType": "Debit Card" + }, + { + "Id": 7908, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-11-26T16:35:46", + "TransactionId": 57105642, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 173, + "CustomerInfo": 78191618, + "PaymentType": "Cash" + }, + { + "Id": 7909, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-10-07T08:33:56", + "TransactionId": 67705417, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 263, + "CustomerInfo": 56935267, + "PaymentType": "Cash" + }, + { + "Id": 7910, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-03-15T08:01:06", + "TransactionId": 61490103, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 253, + "CustomerInfo": 49291757, + "PaymentType": "Credit Card" + }, + { + "Id": 7911, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2017-02-18T09:55:09", + "TransactionId": 77127695, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 401, + "CustomerInfo": 94501818, + "PaymentType": "Credit Card" + }, + { + "Id": 7912, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2018-05-25T16:00:03", + "TransactionId": 12956976, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 557, + "CustomerInfo": 76629945, + "PaymentType": "Credit Card" + }, + { + "Id": 7913, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2016-10-20T17:13:03", + "TransactionId": 64217119, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 299, + "CustomerInfo": 60435202, + "PaymentType": "Credit Card" + }, + { + "Id": 7914, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2019-03-25T14:33:48", + "TransactionId": 22619971, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 674, + "CustomerInfo": 50222505, + "PaymentType": "Cash" + }, + { + "Id": 7915, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-08-03T16:18:29", + "TransactionId": 89322245, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 65, + "CustomerInfo": 37927994, + "PaymentType": "Debit Card" + }, + { + "Id": 7916, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-09-30T17:32:56", + "TransactionId": 84468284, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 188, + "CustomerInfo": 95308894, + "PaymentType": "Cash" + }, + { + "Id": 7917, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-09-29T19:13:00", + "TransactionId": 51685021, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 776, + "CustomerInfo": 51069844, + "PaymentType": "Cash" + }, + { + "Id": 7918, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-09-06T14:28:19", + "TransactionId": 69384050, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 65, + "CustomerInfo": 95413353, + "PaymentType": "Debit Card" + }, + { + "Id": 7919, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-08-29T18:22:02", + "TransactionId": 1812520, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 681, + "CustomerInfo": 21905126, + "PaymentType": "Credit Card" + }, + { + "Id": 7920, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2019-08-30T18:23:28", + "TransactionId": 22412798, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 75, + "CustomerInfo": 26167148, + "PaymentType": "Credit Card" + }, + { + "Id": 7921, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-08-07T15:57:53", + "TransactionId": 34450245, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 90, + "CustomerInfo": 55297587, + "PaymentType": "Cash" + }, + { + "Id": 7922, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2016-02-16T08:36:40", + "TransactionId": 40072296, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 462, + "CustomerInfo": 53881648, + "PaymentType": "Debit Card" + }, + { + "Id": 7923, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2019-01-12T19:31:18", + "TransactionId": 11614303, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 126, + "CustomerInfo": 75279742, + "PaymentType": "Credit Card" + }, + { + "Id": 7924, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2019-06-24T07:04:39", + "TransactionId": 39588888, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 88053574, + "PaymentType": "Cash" + }, + { + "Id": 7925, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2017-02-10T12:11:14", + "TransactionId": 44916184, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 933, + "CustomerInfo": 7716752, + "PaymentType": "Credit Card" + }, + { + "Id": 7926, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-11-28T08:11:02", + "TransactionId": 58144494, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 785, + "CustomerInfo": 40974695, + "PaymentType": "Cash" + }, + { + "Id": 7927, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2017-12-20T12:11:57", + "TransactionId": 86434154, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 95119647, + "PaymentType": "Cash" + }, + { + "Id": 7928, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-10-15T08:50:21", + "TransactionId": 63305746, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 929, + "CustomerInfo": 50321114, + "PaymentType": "Debit Card" + }, + { + "Id": 7929, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-06-03T09:11:48", + "TransactionId": 81662514, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 403, + "CustomerInfo": 90050182, + "PaymentType": "Cash" + }, + { + "Id": 7930, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-10-09T10:02:21", + "TransactionId": 39693119, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 103, + "CustomerInfo": 48023350, + "PaymentType": "Cash" + }, + { + "Id": 7931, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2018-07-03T12:11:23", + "TransactionId": 91200495, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 547, + "CustomerInfo": 99096926, + "PaymentType": "Credit Card" + }, + { + "Id": 7932, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-11-01T08:55:41", + "TransactionId": 10354357, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 387, + "CustomerInfo": 29188988, + "PaymentType": "Debit Card" + }, + { + "Id": 7933, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2017-11-30T16:14:18", + "TransactionId": 50753878, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 29, + "CustomerInfo": 25179683, + "PaymentType": "Cash" + }, + { + "Id": 7934, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2019-08-05T19:05:31", + "TransactionId": 35223928, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 173, + "CustomerInfo": 33936462, + "PaymentType": "Cash" + }, + { + "Id": 7935, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2019-06-26T13:38:21", + "TransactionId": 63635532, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 751, + "CustomerInfo": 88398516, + "PaymentType": "Cash" + }, + { + "Id": 7936, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-08-06T11:35:05", + "TransactionId": 55688282, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 234, + "CustomerInfo": 29681045, + "PaymentType": "Debit Card" + }, + { + "Id": 7937, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-07-23T18:26:21", + "TransactionId": 68600482, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 498, + "CustomerInfo": 49316473, + "PaymentType": "Credit Card" + }, + { + "Id": 7938, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-05-19T15:08:12", + "TransactionId": 75525826, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 624, + "CustomerInfo": 33065379, + "PaymentType": "Credit Card" + }, + { + "Id": 7939, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2018-08-13T15:08:04", + "TransactionId": 34964893, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 392, + "CustomerInfo": 82547030, + "PaymentType": "Cash" + }, + { + "Id": 7940, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2016-06-29T07:39:39", + "TransactionId": 73365029, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 56, + "CustomerInfo": 12730017, + "PaymentType": "Credit Card" + }, + { + "Id": 7941, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2017-02-09T19:06:58", + "TransactionId": 33136360, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 844, + "CustomerInfo": 65416283, + "PaymentType": "Debit Card" + }, + { + "Id": 7942, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-10-06T07:55:21", + "TransactionId": 50919538, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 337, + "CustomerInfo": 49898748, + "PaymentType": "Debit Card" + }, + { + "Id": 7943, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2019-06-11T17:19:49", + "TransactionId": 5173708, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 641, + "CustomerInfo": 52228256, + "PaymentType": "Credit Card" + }, + { + "Id": 7944, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-02-01T10:23:05", + "TransactionId": 64072146, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 254, + "CustomerInfo": 35700189, + "PaymentType": "Credit Card" + }, + { + "Id": 7945, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-03-07T15:03:36", + "TransactionId": 6554945, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 787, + "CustomerInfo": 92862567, + "PaymentType": "Debit Card" + }, + { + "Id": 7946, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-04-20T16:04:13", + "TransactionId": 74775727, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 981, + "CustomerInfo": 44505881, + "PaymentType": "Credit Card" + }, + { + "Id": 7947, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-08-20T16:57:22", + "TransactionId": 73578730, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 92309856, + "PaymentType": "Debit Card" + }, + { + "Id": 7948, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2017-12-22T13:34:45", + "TransactionId": 89314242, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 728, + "CustomerInfo": 58621465, + "PaymentType": "Debit Card" + }, + { + "Id": 7949, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-03-16T07:23:05", + "TransactionId": 74289571, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 301, + "CustomerInfo": 97392074, + "PaymentType": "Cash" + }, + { + "Id": 7950, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2018-05-26T12:58:28", + "TransactionId": 92543120, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 317, + "CustomerInfo": 43117896, + "PaymentType": "Cash" + }, + { + "Id": 7951, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2019-09-23T14:18:32", + "TransactionId": 76630061, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 773, + "CustomerInfo": 60295751, + "PaymentType": "Credit Card" + }, + { + "Id": 7952, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-02-10T10:35:54", + "TransactionId": 8677173, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 309, + "CustomerInfo": 96343377, + "PaymentType": "Debit Card" + }, + { + "Id": 7953, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-08-16T11:19:06", + "TransactionId": 38720536, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 763, + "CustomerInfo": 60139230, + "PaymentType": "Credit Card" + }, + { + "Id": 7954, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-11-30T13:24:06", + "TransactionId": 40436520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 253, + "CustomerInfo": 77111281, + "PaymentType": "Debit Card" + }, + { + "Id": 7955, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2018-11-17T07:30:00", + "TransactionId": 30466016, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 716, + "CustomerInfo": 61476211, + "PaymentType": "Debit Card" + }, + { + "Id": 7956, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-11-19T11:27:36", + "TransactionId": 22473636, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 4258091, + "PaymentType": "Debit Card" + }, + { + "Id": 7957, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2016-10-30T09:49:32", + "TransactionId": 30870442, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 9, + "CustomerInfo": 98737195, + "PaymentType": "Debit Card" + }, + { + "Id": 7958, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2016-10-14T17:32:30", + "TransactionId": 66273346, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 611, + "CustomerInfo": 39674798, + "PaymentType": "Credit Card" + }, + { + "Id": 7959, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-01-06T13:47:00", + "TransactionId": 31244680, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 442, + "CustomerInfo": 93884004, + "PaymentType": "Credit Card" + }, + { + "Id": 7960, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2019-10-17T12:09:48", + "TransactionId": 59816424, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 731, + "CustomerInfo": 97011212, + "PaymentType": "Cash" + }, + { + "Id": 7961, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2019-07-23T15:00:35", + "TransactionId": 18080343, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 835, + "CustomerInfo": 66495088, + "PaymentType": "Debit Card" + }, + { + "Id": 7962, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-09-14T13:56:38", + "TransactionId": 28748932, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 88201882, + "PaymentType": "Credit Card" + }, + { + "Id": 7963, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2018-03-08T09:45:48", + "TransactionId": 63336395, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 512, + "CustomerInfo": 30010555, + "PaymentType": "Credit Card" + }, + { + "Id": 7964, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-03-19T18:40:19", + "TransactionId": 35065885, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 691, + "CustomerInfo": 69395157, + "PaymentType": "Debit Card" + }, + { + "Id": 7965, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-07-05T18:51:42", + "TransactionId": 67130987, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 828, + "CustomerInfo": 5377256, + "PaymentType": "Credit Card" + }, + { + "Id": 7966, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2019-11-29T16:33:10", + "TransactionId": 4629215, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 151, + "CustomerInfo": 77021208, + "PaymentType": "Debit Card" + }, + { + "Id": 7967, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-01-12T17:43:18", + "TransactionId": 90728305, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 867, + "CustomerInfo": 60242937, + "PaymentType": "Credit Card" + }, + { + "Id": 7968, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2017-07-19T14:33:13", + "TransactionId": 18720996, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 227, + "CustomerInfo": 23561224, + "PaymentType": "Cash" + }, + { + "Id": 7969, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2019-09-25T17:10:28", + "TransactionId": 19776604, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 598, + "CustomerInfo": 1165484, + "PaymentType": "Debit Card" + }, + { + "Id": 7970, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2017-03-13T19:20:30", + "TransactionId": 80037527, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 569, + "CustomerInfo": 30372017, + "PaymentType": "Cash" + }, + { + "Id": 7971, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-09-04T13:11:34", + "TransactionId": 17441571, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 341, + "CustomerInfo": 3725718, + "PaymentType": "Debit Card" + }, + { + "Id": 7972, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-09-28T08:07:00", + "TransactionId": 8550696, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 704, + "CustomerInfo": 7218582, + "PaymentType": "Debit Card" + }, + { + "Id": 7973, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2019-07-30T09:14:50", + "TransactionId": 9938338, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 777, + "CustomerInfo": 58444201, + "PaymentType": "Cash" + }, + { + "Id": 7974, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-06-19T14:50:21", + "TransactionId": 38513250, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 994, + "CustomerInfo": 56300635, + "PaymentType": "Cash" + }, + { + "Id": 7975, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2016-11-11T19:25:49", + "TransactionId": 39388915, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 493, + "CustomerInfo": 16703050, + "PaymentType": "Cash" + }, + { + "Id": 7976, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2018-02-20T18:42:03", + "TransactionId": 2146877, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 983, + "CustomerInfo": 37187866, + "PaymentType": "Credit Card" + }, + { + "Id": 7977, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-11-16T14:39:24", + "TransactionId": 56128171, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 391, + "CustomerInfo": 19476321, + "PaymentType": "Credit Card" + }, + { + "Id": 7978, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-09-05T16:50:27", + "TransactionId": 66272637, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 566, + "CustomerInfo": 30062975, + "PaymentType": "Debit Card" + }, + { + "Id": 7979, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2017-03-17T08:33:48", + "TransactionId": 70463569, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 317, + "CustomerInfo": 98496570, + "PaymentType": "Debit Card" + }, + { + "Id": 7980, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2019-12-19T12:52:25", + "TransactionId": 93253879, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 3, + "CustomerInfo": 15253404, + "PaymentType": "Credit Card" + }, + { + "Id": 7981, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-06-02T17:41:43", + "TransactionId": 19844227, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 890, + "CustomerInfo": 15545408, + "PaymentType": "Debit Card" + }, + { + "Id": 7982, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2018-06-28T19:00:12", + "TransactionId": 29834357, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 572, + "CustomerInfo": 89778667, + "PaymentType": "Credit Card" + }, + { + "Id": 7983, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-08-22T10:00:12", + "TransactionId": 43393484, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 440, + "CustomerInfo": 1750168, + "PaymentType": "Credit Card" + }, + { + "Id": 7984, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2019-06-28T14:22:08", + "TransactionId": 56716448, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 656, + "CustomerInfo": 40877635, + "PaymentType": "Debit Card" + }, + { + "Id": 7985, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-06-04T15:24:20", + "TransactionId": 64589853, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 386, + "CustomerInfo": 15396348, + "PaymentType": "Cash" + }, + { + "Id": 7986, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2018-03-23T11:51:22", + "TransactionId": 46572299, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 319, + "CustomerInfo": 47993417, + "PaymentType": "Credit Card" + }, + { + "Id": 7987, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2018-09-29T17:17:57", + "TransactionId": 48856405, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 852, + "CustomerInfo": 14206306, + "PaymentType": "Debit Card" + }, + { + "Id": 7988, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2017-02-01T08:15:04", + "TransactionId": 24947, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 100, + "CustomerInfo": 39324179, + "PaymentType": "Cash" + }, + { + "Id": 7989, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2018-03-24T09:32:24", + "TransactionId": 12059258, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 29, + "CustomerInfo": 87280273, + "PaymentType": "Cash" + }, + { + "Id": 7990, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-08-25T18:56:10", + "TransactionId": 93376987, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 303, + "CustomerInfo": 67598617, + "PaymentType": "Credit Card" + }, + { + "Id": 7991, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-02-26T10:25:49", + "TransactionId": 93849122, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 293, + "CustomerInfo": 38062269, + "PaymentType": "Cash" + }, + { + "Id": 7992, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-03-07T17:23:34", + "TransactionId": 39197448, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 579, + "CustomerInfo": 20114291, + "PaymentType": "Debit Card" + }, + { + "Id": 7993, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2019-12-03T15:45:56", + "TransactionId": 86303197, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 30176343, + "PaymentType": "Debit Card" + }, + { + "Id": 7994, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-11-01T11:10:36", + "TransactionId": 15496052, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 593, + "CustomerInfo": 88097819, + "PaymentType": "Credit Card" + }, + { + "Id": 7995, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2016-03-30T19:43:15", + "TransactionId": 4201026, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 114, + "CustomerInfo": 22666157, + "PaymentType": "Cash" + }, + { + "Id": 7996, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-12-09T14:25:35", + "TransactionId": 12101693, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 335, + "CustomerInfo": 62422381, + "PaymentType": "Cash" + }, + { + "Id": 7997, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2019-08-23T18:16:25", + "TransactionId": 97602468, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 506, + "CustomerInfo": 99068009, + "PaymentType": "Debit Card" + }, + { + "Id": 7998, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-08-01T18:21:36", + "TransactionId": 84006038, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 100, + "CustomerInfo": 85854980, + "PaymentType": "Debit Card" + }, + { + "Id": 7999, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2017-02-18T19:25:41", + "TransactionId": 8306203, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 722, + "CustomerInfo": 87017144, + "PaymentType": "Credit Card" + }, + { + "Id": 8000, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2017-01-31T07:07:15", + "TransactionId": 80272505, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 426, + "CustomerInfo": 55162888, + "PaymentType": "Credit Card" + }, + { + "Id": 8001, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-06-20T16:35:37", + "TransactionId": 29797364, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 696, + "CustomerInfo": 81169109, + "PaymentType": "Credit Card" + }, + { + "Id": 8002, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2016-01-20T14:28:45", + "TransactionId": 35318721, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 514, + "CustomerInfo": 71713575, + "PaymentType": "Cash" + }, + { + "Id": 8003, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-05-12T08:05:43", + "TransactionId": 28264527, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 668, + "CustomerInfo": 70142191, + "PaymentType": "Cash" + }, + { + "Id": 8004, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-10-07T09:07:03", + "TransactionId": 4679086, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 914, + "CustomerInfo": 71739623, + "PaymentType": "Debit Card" + }, + { + "Id": 8005, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-07-01T14:18:14", + "TransactionId": 70607117, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 487, + "CustomerInfo": 18664443, + "PaymentType": "Cash" + }, + { + "Id": 8006, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-01-23T18:40:11", + "TransactionId": 39187075, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 647, + "CustomerInfo": 43541102, + "PaymentType": "Cash" + }, + { + "Id": 8007, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2019-08-03T19:42:58", + "TransactionId": 1264458, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 187, + "CustomerInfo": 91622738, + "PaymentType": "Cash" + }, + { + "Id": 8008, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2017-11-08T19:33:10", + "TransactionId": 47360393, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 76, + "CustomerInfo": 92953768, + "PaymentType": "Debit Card" + }, + { + "Id": 8009, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2016-03-18T10:41:57", + "TransactionId": 27580443, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 447, + "CustomerInfo": 90871295, + "PaymentType": "Debit Card" + }, + { + "Id": 8010, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-02-20T18:40:45", + "TransactionId": 97887178, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 393, + "CustomerInfo": 60296863, + "PaymentType": "Debit Card" + }, + { + "Id": 8011, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-02-13T08:59:51", + "TransactionId": 8027287, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 232, + "CustomerInfo": 64553294, + "PaymentType": "Debit Card" + }, + { + "Id": 8012, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-01-31T19:43:32", + "TransactionId": 90102730, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 962, + "CustomerInfo": 21219873, + "PaymentType": "Debit Card" + }, + { + "Id": 8013, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-03-08T14:31:12", + "TransactionId": 63694602, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 479, + "CustomerInfo": 40948505, + "PaymentType": "Debit Card" + }, + { + "Id": 8014, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2016-09-04T12:16:25", + "TransactionId": 43956686, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 130, + "CustomerInfo": 47956735, + "PaymentType": "Cash" + }, + { + "Id": 8015, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-11-23T09:18:17", + "TransactionId": 64253518, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 982, + "CustomerInfo": 91723620, + "PaymentType": "Debit Card" + }, + { + "Id": 8016, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2017-06-18T13:08:07", + "TransactionId": 28835547, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 594, + "CustomerInfo": 77124038, + "PaymentType": "Cash" + }, + { + "Id": 8017, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2017-11-15T14:46:45", + "TransactionId": 17281962, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 987, + "CustomerInfo": 78545074, + "PaymentType": "Cash" + }, + { + "Id": 8018, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-01-09T16:31:52", + "TransactionId": 59924468, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 607, + "CustomerInfo": 46257593, + "PaymentType": "Debit Card" + }, + { + "Id": 8019, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-11-03T17:59:25", + "TransactionId": 38371530, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 979, + "CustomerInfo": 80547477, + "PaymentType": "Debit Card" + }, + { + "Id": 8020, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-12-14T09:12:06", + "TransactionId": 64138481, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 947, + "CustomerInfo": 84481386, + "PaymentType": "Debit Card" + }, + { + "Id": 8021, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-05-25T18:00:17", + "TransactionId": 26659827, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 394, + "CustomerInfo": 4204657, + "PaymentType": "Cash" + }, + { + "Id": 8022, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-07-16T12:50:59", + "TransactionId": 55570502, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 616, + "CustomerInfo": 80039823, + "PaymentType": "Credit Card" + }, + { + "Id": 8023, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2017-03-19T08:44:10", + "TransactionId": 17204222, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 600, + "CustomerInfo": 72927694, + "PaymentType": "Cash" + }, + { + "Id": 8024, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-03-24T15:24:29", + "TransactionId": 12789745, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 268, + "CustomerInfo": 31308045, + "PaymentType": "Credit Card" + }, + { + "Id": 8025, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-11-18T11:53:40", + "TransactionId": 10494498, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 902, + "CustomerInfo": 88892134, + "PaymentType": "Cash" + }, + { + "Id": 8026, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2016-09-19T17:06:09", + "TransactionId": 56912075, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 341, + "CustomerInfo": 93348115, + "PaymentType": "Cash" + }, + { + "Id": 8027, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-04-17T15:25:21", + "TransactionId": 25228939, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 427, + "CustomerInfo": 61601649, + "PaymentType": "Credit Card" + }, + { + "Id": 8028, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-02-24T10:01:12", + "TransactionId": 52635507, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 135, + "CustomerInfo": 52692441, + "PaymentType": "Cash" + }, + { + "Id": 8029, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2019-02-25T19:13:44", + "TransactionId": 62705010, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 379, + "CustomerInfo": 6029023, + "PaymentType": "Credit Card" + }, + { + "Id": 8030, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2017-09-25T14:26:01", + "TransactionId": 46528906, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 30, + "CustomerInfo": 58130839, + "PaymentType": "Credit Card" + }, + { + "Id": 8031, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-08-06T18:06:37", + "TransactionId": 2606938, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 505, + "CustomerInfo": 64816827, + "PaymentType": "Credit Card" + }, + { + "Id": 8032, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-06-18T10:04:57", + "TransactionId": 80747192, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 929, + "CustomerInfo": 16077193, + "PaymentType": "Credit Card" + }, + { + "Id": 8033, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-12-24T12:03:27", + "TransactionId": 69411950, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 12934454, + "PaymentType": "Cash" + }, + { + "Id": 8034, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2016-11-25T08:40:08", + "TransactionId": 43453390, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 365, + "CustomerInfo": 76069634, + "PaymentType": "Debit Card" + }, + { + "Id": 8035, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2018-09-18T12:16:51", + "TransactionId": 78029543, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 781, + "CustomerInfo": 2331424, + "PaymentType": "Debit Card" + }, + { + "Id": 8036, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2018-08-08T08:38:15", + "TransactionId": 8186007, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 776, + "CustomerInfo": 89199530, + "PaymentType": "Debit Card" + }, + { + "Id": 8037, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2017-09-24T15:09:30", + "TransactionId": 43997721, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 310, + "CustomerInfo": 60961073, + "PaymentType": "Credit Card" + }, + { + "Id": 8038, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-05-10T17:25:26", + "TransactionId": 43735347, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 696, + "CustomerInfo": 2880287, + "PaymentType": "Cash" + }, + { + "Id": 8039, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2017-02-05T10:40:57", + "TransactionId": 19054130, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 389, + "CustomerInfo": 71029533, + "PaymentType": "Cash" + }, + { + "Id": 8040, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-03-21T09:48:06", + "TransactionId": 89005022, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 280, + "CustomerInfo": 26833289, + "PaymentType": "Debit Card" + }, + { + "Id": 8041, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2017-12-28T11:23:25", + "TransactionId": 48453877, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 394, + "CustomerInfo": 75897921, + "PaymentType": "Debit Card" + }, + { + "Id": 8042, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2019-06-16T08:27:27", + "TransactionId": 37419637, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 682, + "CustomerInfo": 39003053, + "PaymentType": "Cash" + }, + { + "Id": 8043, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2019-01-14T12:30:49", + "TransactionId": 85407484, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 771, + "CustomerInfo": 19972667, + "PaymentType": "Credit Card" + }, + { + "Id": 8044, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2016-07-28T16:25:24", + "TransactionId": 68568455, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 756, + "CustomerInfo": 86754595, + "PaymentType": "Cash" + }, + { + "Id": 8045, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-04-27T12:21:10", + "TransactionId": 32588072, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 48, + "CustomerInfo": 78533221, + "PaymentType": "Cash" + }, + { + "Id": 8046, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2018-03-30T14:01:24", + "TransactionId": 36215699, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 454, + "CustomerInfo": 96375117, + "PaymentType": "Debit Card" + }, + { + "Id": 8047, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2017-07-12T09:45:56", + "TransactionId": 6990904, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 990, + "CustomerInfo": 57428286, + "PaymentType": "Debit Card" + }, + { + "Id": 8048, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-03-22T11:34:13", + "TransactionId": 1951168, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 21, + "CustomerInfo": 66186225, + "PaymentType": "Credit Card" + }, + { + "Id": 8049, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2018-05-22T16:39:04", + "TransactionId": 4873078, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 918, + "CustomerInfo": 48887958, + "PaymentType": "Debit Card" + }, + { + "Id": 8050, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-03-18T12:29:05", + "TransactionId": 48890, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 677, + "CustomerInfo": 26970352, + "PaymentType": "Debit Card" + }, + { + "Id": 8051, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2018-05-18T07:07:15", + "TransactionId": 5817846, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 253, + "CustomerInfo": 72466450, + "PaymentType": "Cash" + }, + { + "Id": 8052, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-05-10T19:28:25", + "TransactionId": 22172324, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 483, + "CustomerInfo": 62196613, + "PaymentType": "Credit Card" + }, + { + "Id": 8053, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2019-11-18T12:49:49", + "TransactionId": 27110891, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 678, + "CustomerInfo": 19050965, + "PaymentType": "Debit Card" + }, + { + "Id": 8054, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-11-16T15:18:52", + "TransactionId": 62635958, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 559, + "CustomerInfo": 36465348, + "PaymentType": "Debit Card" + }, + { + "Id": 8055, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-04-16T11:17:05", + "TransactionId": 70608967, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 925, + "CustomerInfo": 37892261, + "PaymentType": "Cash" + }, + { + "Id": 8056, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-05-23T19:08:24", + "TransactionId": 6377891, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 376, + "CustomerInfo": 1001116, + "PaymentType": "Cash" + }, + { + "Id": 8057, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2016-08-18T13:31:35", + "TransactionId": 27593169, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 44, + "CustomerInfo": 42648902, + "PaymentType": "Debit Card" + }, + { + "Id": 8058, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-12-22T09:43:38", + "TransactionId": 29923219, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 383, + "CustomerInfo": 22445653, + "PaymentType": "Cash" + }, + { + "Id": 8059, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2018-11-27T17:08:18", + "TransactionId": 31589683, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 886, + "CustomerInfo": 61488701, + "PaymentType": "Debit Card" + }, + { + "Id": 8060, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-11-17T14:38:24", + "TransactionId": 40957877, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 786, + "CustomerInfo": 80699234, + "PaymentType": "Credit Card" + }, + { + "Id": 8061, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-04-27T18:31:32", + "TransactionId": 5052193, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 363, + "CustomerInfo": 58040231, + "PaymentType": "Debit Card" + }, + { + "Id": 8062, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2018-08-11T16:39:13", + "TransactionId": 80718821, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 752, + "CustomerInfo": 84274697, + "PaymentType": "Credit Card" + }, + { + "Id": 8063, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2017-04-14T14:12:55", + "TransactionId": 40320077, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 7, + "CustomerInfo": 21749488, + "PaymentType": "Debit Card" + }, + { + "Id": 8064, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-12-17T11:56:07", + "TransactionId": 99837949, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 921, + "CustomerInfo": 93690209, + "PaymentType": "Debit Card" + }, + { + "Id": 8065, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2018-04-09T07:31:35", + "TransactionId": 96688366, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 991, + "CustomerInfo": 36074942, + "PaymentType": "Cash" + }, + { + "Id": 8066, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2018-08-01T12:09:56", + "TransactionId": 23501557, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 654, + "CustomerInfo": 12851992, + "PaymentType": "Debit Card" + }, + { + "Id": 8067, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-08-06T07:36:46", + "TransactionId": 68106482, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 161, + "CustomerInfo": 61956296, + "PaymentType": "Cash" + }, + { + "Id": 8068, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2019-05-14T19:14:01", + "TransactionId": 31475381, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 71612585, + "PaymentType": "Debit Card" + }, + { + "Id": 8069, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2016-05-19T11:48:03", + "TransactionId": 89663328, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 314, + "CustomerInfo": 12268497, + "PaymentType": "Cash" + }, + { + "Id": 8070, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-02-13T11:22:25", + "TransactionId": 87106915, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 599, + "CustomerInfo": 55866158, + "PaymentType": "Debit Card" + }, + { + "Id": 8071, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2018-12-22T11:34:05", + "TransactionId": 51219813, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 104, + "CustomerInfo": 12970084, + "PaymentType": "Cash" + }, + { + "Id": 8072, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2019-08-08T12:17:25", + "TransactionId": 60413221, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 127, + "CustomerInfo": 59180673, + "PaymentType": "Debit Card" + }, + { + "Id": 8073, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2018-04-30T08:42:17", + "TransactionId": 14431617, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 945, + "CustomerInfo": 83748916, + "PaymentType": "Credit Card" + }, + { + "Id": 8074, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-10-13T17:31:29", + "TransactionId": 9040765, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 24488895, + "PaymentType": "Cash" + }, + { + "Id": 8075, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2019-02-16T17:45:10", + "TransactionId": 59414779, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 680, + "CustomerInfo": 3169816, + "PaymentType": "Credit Card" + }, + { + "Id": 8076, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-11-27T19:18:29", + "TransactionId": 52089198, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 864, + "CustomerInfo": 87478910, + "PaymentType": "Cash" + }, + { + "Id": 8077, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2016-08-20T17:27:45", + "TransactionId": 26953110, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 297, + "CustomerInfo": 12256573, + "PaymentType": "Debit Card" + }, + { + "Id": 8078, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-10-02T16:08:41", + "TransactionId": 99532479, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 461, + "CustomerInfo": 2248955, + "PaymentType": "Credit Card" + }, + { + "Id": 8079, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2016-08-26T09:12:49", + "TransactionId": 48640037, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 192, + "CustomerInfo": 51245865, + "PaymentType": "Cash" + }, + { + "Id": 8080, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2018-05-22T17:48:29", + "TransactionId": 8496970, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 136, + "CustomerInfo": 19980975, + "PaymentType": "Cash" + }, + { + "Id": 8081, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2018-12-05T19:26:41", + "TransactionId": 78305680, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 199, + "CustomerInfo": 48105358, + "PaymentType": "Credit Card" + }, + { + "Id": 8082, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-02-06T15:08:12", + "TransactionId": 79060656, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 980, + "CustomerInfo": 82592996, + "PaymentType": "Debit Card" + }, + { + "Id": 8083, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2017-05-23T12:22:54", + "TransactionId": 62834, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 46712400, + "PaymentType": "Cash" + }, + { + "Id": 8084, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2016-02-04T13:13:35", + "TransactionId": 24074779, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 819, + "CustomerInfo": 92743252, + "PaymentType": "Cash" + }, + { + "Id": 8085, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2016-08-03T08:27:27", + "TransactionId": 42446524, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 380, + "CustomerInfo": 83352293, + "PaymentType": "Cash" + }, + { + "Id": 8086, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-11-19T08:57:50", + "TransactionId": 46877295, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 157, + "CustomerInfo": 49365867, + "PaymentType": "Credit Card" + }, + { + "Id": 8087, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2018-05-16T09:54:52", + "TransactionId": 54242151, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 804, + "CustomerInfo": 40295223, + "PaymentType": "Cash" + }, + { + "Id": 8088, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-02-06T11:41:00", + "TransactionId": 71622926, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 682, + "CustomerInfo": 89832633, + "PaymentType": "Cash" + }, + { + "Id": 8089, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-03-11T16:25:41", + "TransactionId": 52599494, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 403, + "CustomerInfo": 48402945, + "PaymentType": "Cash" + }, + { + "Id": 8090, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-04-11T17:02:24", + "TransactionId": 88872206, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 616, + "CustomerInfo": 22993526, + "PaymentType": "Debit Card" + }, + { + "Id": 8091, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2019-04-19T15:11:05", + "TransactionId": 18525349, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 754, + "CustomerInfo": 27921063, + "PaymentType": "Cash" + }, + { + "Id": 8092, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-05-16T18:32:50", + "TransactionId": 69540966, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 45887764, + "PaymentType": "Cash" + }, + { + "Id": 8093, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-07-02T12:22:36", + "TransactionId": 50821056, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 821, + "CustomerInfo": 13936229, + "PaymentType": "Cash" + }, + { + "Id": 8094, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2019-03-03T16:44:59", + "TransactionId": 92714374, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 935, + "CustomerInfo": 17610916, + "PaymentType": "Debit Card" + }, + { + "Id": 8095, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2017-06-10T17:09:45", + "TransactionId": 72197407, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 747, + "CustomerInfo": 82493046, + "PaymentType": "Cash" + }, + { + "Id": 8096, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-03-12T10:15:10", + "TransactionId": 28262334, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 992, + "CustomerInfo": 75454535, + "PaymentType": "Debit Card" + }, + { + "Id": 8097, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-07-12T16:42:32", + "TransactionId": 59353799, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 349, + "CustomerInfo": 28236685, + "PaymentType": "Cash" + }, + { + "Id": 8098, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2017-03-25T15:41:37", + "TransactionId": 16126499, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 262, + "CustomerInfo": 83323234, + "PaymentType": "Cash" + }, + { + "Id": 8099, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-01-24T14:12:46", + "TransactionId": 29128789, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 63, + "CustomerInfo": 86477178, + "PaymentType": "Credit Card" + }, + { + "Id": 8100, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2018-10-03T12:22:11", + "TransactionId": 19055335, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 573, + "CustomerInfo": 14689258, + "PaymentType": "Credit Card" + }, + { + "Id": 8101, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2017-11-06T18:37:35", + "TransactionId": 76555432, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 438, + "CustomerInfo": 44575329, + "PaymentType": "Debit Card" + }, + { + "Id": 8102, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-05-07T10:24:32", + "TransactionId": 74559207, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 921, + "CustomerInfo": 74153807, + "PaymentType": "Cash" + }, + { + "Id": 8103, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2017-03-14T17:26:27", + "TransactionId": 69577617, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 9972230, + "PaymentType": "Debit Card" + }, + { + "Id": 8104, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-03-20T07:51:01", + "TransactionId": 76974639, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 633, + "CustomerInfo": 69681594, + "PaymentType": "Credit Card" + }, + { + "Id": 8105, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-06-13T15:50:07", + "TransactionId": 84262756, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 79092992, + "PaymentType": "Debit Card" + }, + { + "Id": 8106, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-08-08T08:10:36", + "TransactionId": 32233187, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 966, + "CustomerInfo": 51504298, + "PaymentType": "Debit Card" + }, + { + "Id": 8107, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2018-07-09T15:17:00", + "TransactionId": 17209895, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 348, + "CustomerInfo": 72038568, + "PaymentType": "Credit Card" + }, + { + "Id": 8108, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-09-18T10:58:31", + "TransactionId": 84721105, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 225, + "CustomerInfo": 13257470, + "PaymentType": "Cash" + }, + { + "Id": 8109, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2016-07-30T17:31:38", + "TransactionId": 44676017, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 55415451, + "PaymentType": "Cash" + }, + { + "Id": 8110, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2017-09-04T17:13:21", + "TransactionId": 55656810, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 13, + "CustomerInfo": 95805203, + "PaymentType": "Cash" + }, + { + "Id": 8111, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2018-06-07T16:09:50", + "TransactionId": 66507441, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 327, + "CustomerInfo": 51673890, + "PaymentType": "Credit Card" + }, + { + "Id": 8112, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2018-08-19T17:51:56", + "TransactionId": 1826331, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 374, + "CustomerInfo": 32868425, + "PaymentType": "Cash" + }, + { + "Id": 8113, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-01-26T08:17:31", + "TransactionId": 69795927, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 997, + "CustomerInfo": 96341178, + "PaymentType": "Cash" + }, + { + "Id": 8114, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-04-07T19:27:33", + "TransactionId": 95103509, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 80724857, + "PaymentType": "Debit Card" + }, + { + "Id": 8115, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2017-11-03T14:41:17", + "TransactionId": 41364059, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 78, + "CustomerInfo": 50173566, + "PaymentType": "Cash" + }, + { + "Id": 8116, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2018-02-19T19:51:10", + "TransactionId": 21721991, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 24, + "CustomerInfo": 86487154, + "PaymentType": "Debit Card" + }, + { + "Id": 8117, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-12-11T09:08:21", + "TransactionId": 10207466, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 71, + "CustomerInfo": 74057797, + "PaymentType": "Debit Card" + }, + { + "Id": 8118, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2019-06-23T15:39:36", + "TransactionId": 2445453, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 790, + "CustomerInfo": 43677273, + "PaymentType": "Credit Card" + }, + { + "Id": 8119, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2016-06-23T18:27:13", + "TransactionId": 97742367, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 803, + "CustomerInfo": 95575509, + "PaymentType": "Cash" + }, + { + "Id": 8120, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2017-01-03T13:25:58", + "TransactionId": 56138981, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 503, + "CustomerInfo": 9866222, + "PaymentType": "Debit Card" + }, + { + "Id": 8121, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-10-12T19:05:31", + "TransactionId": 24160472, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 507, + "CustomerInfo": 86685965, + "PaymentType": "Cash" + }, + { + "Id": 8122, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2019-05-16T16:55:29", + "TransactionId": 51707471, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 852, + "CustomerInfo": 62607275, + "PaymentType": "Cash" + }, + { + "Id": 8123, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2016-01-31T10:42:49", + "TransactionId": 37974214, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 56764775, + "PaymentType": "Cash" + }, + { + "Id": 8124, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2019-05-16T07:24:23", + "TransactionId": 61779944, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 873, + "CustomerInfo": 81808734, + "PaymentType": "Credit Card" + }, + { + "Id": 8125, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-03-02T16:18:12", + "TransactionId": 36600656, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 856, + "CustomerInfo": 68236317, + "PaymentType": "Debit Card" + }, + { + "Id": 8126, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-04-12T13:18:12", + "TransactionId": 92858576, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 610, + "CustomerInfo": 30376499, + "PaymentType": "Cash" + }, + { + "Id": 8127, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2019-04-24T11:51:39", + "TransactionId": 80092826, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 899, + "CustomerInfo": 24982531, + "PaymentType": "Credit Card" + }, + { + "Id": 8128, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2017-08-12T12:51:33", + "TransactionId": 71494073, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 303, + "CustomerInfo": 79315559, + "PaymentType": "Cash" + }, + { + "Id": 8129, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-05-09T14:06:26", + "TransactionId": 2926281, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 277, + "CustomerInfo": 46107162, + "PaymentType": "Cash" + }, + { + "Id": 8130, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2017-01-16T11:13:38", + "TransactionId": 79727651, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 4928731, + "PaymentType": "Cash" + }, + { + "Id": 8131, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2016-05-20T13:34:11", + "TransactionId": 66582164, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 311, + "CustomerInfo": 15936971, + "PaymentType": "Debit Card" + }, + { + "Id": 8132, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-11-09T19:52:45", + "TransactionId": 60949955, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 196, + "CustomerInfo": 28223499, + "PaymentType": "Debit Card" + }, + { + "Id": 8133, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2017-06-21T16:25:24", + "TransactionId": 93068109, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 737, + "CustomerInfo": 74174618, + "PaymentType": "Credit Card" + }, + { + "Id": 8134, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-02-08T12:05:46", + "TransactionId": 81438267, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 957, + "CustomerInfo": 26782343, + "PaymentType": "Debit Card" + }, + { + "Id": 8135, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2018-06-15T10:04:22", + "TransactionId": 30558907, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 257, + "CustomerInfo": 73101601, + "PaymentType": "Debit Card" + }, + { + "Id": 8136, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2016-12-29T08:39:50", + "TransactionId": 582393, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 977, + "CustomerInfo": 22712473, + "PaymentType": "Debit Card" + }, + { + "Id": 8137, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2018-08-07T10:40:57", + "TransactionId": 34239729, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 593, + "CustomerInfo": 94019657, + "PaymentType": "Credit Card" + }, + { + "Id": 8138, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-09-25T08:34:39", + "TransactionId": 91968075, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 225, + "CustomerInfo": 74161960, + "PaymentType": "Credit Card" + }, + { + "Id": 8139, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2016-04-06T16:35:02", + "TransactionId": 83080403, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 669, + "CustomerInfo": 50691591, + "PaymentType": "Credit Card" + }, + { + "Id": 8140, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-02-25T12:03:36", + "TransactionId": 35945285, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 499, + "CustomerInfo": 6006081, + "PaymentType": "Debit Card" + }, + { + "Id": 8141, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-03-09T13:45:42", + "TransactionId": 43342872, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 377, + "CustomerInfo": 5748531, + "PaymentType": "Cash" + }, + { + "Id": 8142, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-10-27T08:01:58", + "TransactionId": 89818911, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 291, + "CustomerInfo": 30080353, + "PaymentType": "Debit Card" + }, + { + "Id": 8143, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-12-29T14:52:22", + "TransactionId": 93472146, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 411, + "CustomerInfo": 14119993, + "PaymentType": "Debit Card" + }, + { + "Id": 8144, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-10-22T13:17:20", + "TransactionId": 95375245, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 67, + "CustomerInfo": 67619185, + "PaymentType": "Credit Card" + }, + { + "Id": 8145, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-08-27T16:28:25", + "TransactionId": 7829124, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 875, + "CustomerInfo": 31653077, + "PaymentType": "Cash" + }, + { + "Id": 8146, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2017-11-09T09:38:10", + "TransactionId": 62774173, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 556, + "CustomerInfo": 17439967, + "PaymentType": "Credit Card" + }, + { + "Id": 8147, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2019-06-11T18:27:30", + "TransactionId": 2827626, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 94, + "CustomerInfo": 6007250, + "PaymentType": "Credit Card" + }, + { + "Id": 8148, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2016-07-10T16:12:17", + "TransactionId": 15402760, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 663, + "CustomerInfo": 56057933, + "PaymentType": "Debit Card" + }, + { + "Id": 8149, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-04-15T13:09:16", + "TransactionId": 79677232, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 601, + "CustomerInfo": 14835284, + "PaymentType": "Credit Card" + }, + { + "Id": 8150, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-04-28T16:09:07", + "TransactionId": 46261493, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 697, + "CustomerInfo": 68511608, + "PaymentType": "Debit Card" + }, + { + "Id": 8151, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-05-25T17:35:23", + "TransactionId": 60076696, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 360, + "CustomerInfo": 65194583, + "PaymentType": "Credit Card" + }, + { + "Id": 8152, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-11-02T19:50:44", + "TransactionId": 20493947, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 664, + "CustomerInfo": 95791090, + "PaymentType": "Credit Card" + }, + { + "Id": 8153, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-07-14T09:02:44", + "TransactionId": 4592592, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 248, + "CustomerInfo": 98327333, + "PaymentType": "Debit Card" + }, + { + "Id": 8154, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-07-13T12:09:13", + "TransactionId": 83844364, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 225, + "CustomerInfo": 73193380, + "PaymentType": "Debit Card" + }, + { + "Id": 8155, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2019-01-01T15:44:04", + "TransactionId": 6466613, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 733, + "CustomerInfo": 33621740, + "PaymentType": "Debit Card" + }, + { + "Id": 8156, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-07-11T11:21:33", + "TransactionId": 77013890, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 177, + "CustomerInfo": 41207033, + "PaymentType": "Credit Card" + }, + { + "Id": 8157, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2018-02-04T13:16:28", + "TransactionId": 51076706, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 879, + "CustomerInfo": 23649779, + "PaymentType": "Cash" + }, + { + "Id": 8158, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2016-04-21T10:18:55", + "TransactionId": 72796854, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 2, + "CustomerInfo": 94089919, + "PaymentType": "Credit Card" + }, + { + "Id": 8159, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2018-08-08T07:04:13", + "TransactionId": 35936060, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 789, + "CustomerInfo": 93432387, + "PaymentType": "Credit Card" + }, + { + "Id": 8160, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2016-01-28T14:59:43", + "TransactionId": 41046909, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 970, + "CustomerInfo": 78567755, + "PaymentType": "Debit Card" + }, + { + "Id": 8161, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2018-08-24T11:08:36", + "TransactionId": 21440880, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 309, + "CustomerInfo": 83552257, + "PaymentType": "Credit Card" + }, + { + "Id": 8162, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-04-21T17:09:45", + "TransactionId": 85768983, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 434, + "CustomerInfo": 88890468, + "PaymentType": "Credit Card" + }, + { + "Id": 8163, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2016-03-07T07:50:53", + "TransactionId": 51933722, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 708, + "CustomerInfo": 5315772, + "PaymentType": "Debit Card" + }, + { + "Id": 8164, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-07-28T15:06:37", + "TransactionId": 50972984, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 866, + "CustomerInfo": 2177517, + "PaymentType": "Cash" + }, + { + "Id": 8165, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2019-12-18T17:14:04", + "TransactionId": 72667284, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 995, + "CustomerInfo": 86995749, + "PaymentType": "Cash" + }, + { + "Id": 8166, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-07-03T18:40:19", + "TransactionId": 17103806, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 756, + "CustomerInfo": 13801197, + "PaymentType": "Cash" + }, + { + "Id": 8167, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-11-01T07:36:37", + "TransactionId": 80176461, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 42, + "CustomerInfo": 45527825, + "PaymentType": "Debit Card" + }, + { + "Id": 8168, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2018-05-31T18:15:07", + "TransactionId": 77444648, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 934, + "CustomerInfo": 62083113, + "PaymentType": "Debit Card" + }, + { + "Id": 8169, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-05-25T18:37:52", + "TransactionId": 77829228, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 627, + "CustomerInfo": 50798111, + "PaymentType": "Credit Card" + }, + { + "Id": 8170, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2018-07-17T12:30:06", + "TransactionId": 47113405, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 943, + "CustomerInfo": 19775613, + "PaymentType": "Credit Card" + }, + { + "Id": 8171, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-05-11T17:39:07", + "TransactionId": 62137896, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 783, + "CustomerInfo": 54895569, + "PaymentType": "Cash" + }, + { + "Id": 8172, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2016-06-17T18:31:15", + "TransactionId": 71738873, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 50, + "CustomerInfo": 96283355, + "PaymentType": "Debit Card" + }, + { + "Id": 8173, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2016-04-28T09:02:53", + "TransactionId": 49312920, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 769, + "CustomerInfo": 54800159, + "PaymentType": "Credit Card" + }, + { + "Id": 8174, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-09-05T12:41:28", + "TransactionId": 62341703, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 49644435, + "PaymentType": "Credit Card" + }, + { + "Id": 8175, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2019-09-18T14:40:51", + "TransactionId": 80273989, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 555, + "CustomerInfo": 39857935, + "PaymentType": "Cash" + }, + { + "Id": 8176, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-01-24T19:39:39", + "TransactionId": 99462556, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 81835393, + "PaymentType": "Credit Card" + }, + { + "Id": 8177, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2017-11-25T12:50:41", + "TransactionId": 72388643, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 779, + "CustomerInfo": 28780508, + "PaymentType": "Cash" + }, + { + "Id": 8178, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2016-02-29T17:43:52", + "TransactionId": 56656689, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 448, + "CustomerInfo": 60923774, + "PaymentType": "Cash" + }, + { + "Id": 8179, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2019-08-19T15:11:31", + "TransactionId": 22486165, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 862, + "CustomerInfo": 41669913, + "PaymentType": "Cash" + }, + { + "Id": 8180, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-09-07T14:58:25", + "TransactionId": 26530624, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 52192774, + "PaymentType": "Debit Card" + }, + { + "Id": 8181, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-12-14T15:35:17", + "TransactionId": 9027686, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 324, + "CustomerInfo": 78988959, + "PaymentType": "Credit Card" + }, + { + "Id": 8182, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-12-29T11:40:51", + "TransactionId": 99253252, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 561, + "CustomerInfo": 90601810, + "PaymentType": "Credit Card" + }, + { + "Id": 8183, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2017-06-25T10:21:13", + "TransactionId": 66491735, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 475, + "CustomerInfo": 4191606, + "PaymentType": "Debit Card" + }, + { + "Id": 8184, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-02-17T09:04:36", + "TransactionId": 77592569, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 86, + "CustomerInfo": 18405847, + "PaymentType": "Credit Card" + }, + { + "Id": 8185, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2017-09-30T12:35:51", + "TransactionId": 48795921, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 177, + "CustomerInfo": 22039051, + "PaymentType": "Debit Card" + }, + { + "Id": 8186, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2016-03-03T11:48:46", + "TransactionId": 75294333, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 104, + "CustomerInfo": 66879663, + "PaymentType": "Debit Card" + }, + { + "Id": 8187, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-08-20T12:39:01", + "TransactionId": 43264663, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 571, + "CustomerInfo": 71332462, + "PaymentType": "Cash" + }, + { + "Id": 8188, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2019-01-27T11:18:06", + "TransactionId": 36443153, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 960, + "CustomerInfo": 86733540, + "PaymentType": "Credit Card" + }, + { + "Id": 8189, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2016-10-27T08:14:12", + "TransactionId": 84491478, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 472, + "CustomerInfo": 45925398, + "PaymentType": "Debit Card" + }, + { + "Id": 8190, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2018-01-28T13:48:00", + "TransactionId": 69152874, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 689, + "CustomerInfo": 17271138, + "PaymentType": "Credit Card" + }, + { + "Id": 8191, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-03-05T08:37:32", + "TransactionId": 93110854, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 745, + "CustomerInfo": 14447485, + "PaymentType": "Debit Card" + }, + { + "Id": 8192, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-03-03T07:32:01", + "TransactionId": 13172200, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 11, + "CustomerInfo": 75445084, + "PaymentType": "Cash" + }, + { + "Id": 8193, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-09-30T08:12:55", + "TransactionId": 19327418, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 182, + "CustomerInfo": 21498068, + "PaymentType": "Cash" + }, + { + "Id": 8194, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2016-12-22T17:40:25", + "TransactionId": 47896970, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 876, + "CustomerInfo": 68469713, + "PaymentType": "Credit Card" + }, + { + "Id": 8195, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2019-03-19T13:13:26", + "TransactionId": 63545819, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 525, + "CustomerInfo": 66206460, + "PaymentType": "Credit Card" + }, + { + "Id": 8196, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-02-23T18:47:40", + "TransactionId": 87211540, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 77515780, + "PaymentType": "Debit Card" + }, + { + "Id": 8197, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2016-04-26T15:49:15", + "TransactionId": 16831087, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 336, + "CustomerInfo": 72414756, + "PaymentType": "Credit Card" + }, + { + "Id": 8198, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2017-09-01T15:38:53", + "TransactionId": 17717770, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 203, + "CustomerInfo": 99526493, + "PaymentType": "Credit Card" + }, + { + "Id": 8199, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2019-11-23T16:55:47", + "TransactionId": 69169821, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 145, + "CustomerInfo": 60469241, + "PaymentType": "Cash" + }, + { + "Id": 8200, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2019-09-09T12:41:02", + "TransactionId": 28960754, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 82235134, + "PaymentType": "Credit Card" + }, + { + "Id": 8201, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2016-03-20T18:53:08", + "TransactionId": 51137289, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 151, + "CustomerInfo": 67942415, + "PaymentType": "Cash" + }, + { + "Id": 8202, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-08-17T16:50:18", + "TransactionId": 84737796, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 604, + "CustomerInfo": 37933437, + "PaymentType": "Cash" + }, + { + "Id": 8203, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2018-10-08T18:18:09", + "TransactionId": 90690842, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 813, + "CustomerInfo": 55637708, + "PaymentType": "Credit Card" + }, + { + "Id": 8204, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-05-25T16:25:49", + "TransactionId": 29788478, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 984, + "CustomerInfo": 91573243, + "PaymentType": "Debit Card" + }, + { + "Id": 8205, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2017-01-14T07:26:15", + "TransactionId": 71106889, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 201, + "CustomerInfo": 87666874, + "PaymentType": "Debit Card" + }, + { + "Id": 8206, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2019-02-15T11:20:41", + "TransactionId": 82840894, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 132, + "CustomerInfo": 79904451, + "PaymentType": "Cash" + }, + { + "Id": 8207, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2017-10-02T11:17:14", + "TransactionId": 39462425, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 350, + "CustomerInfo": 24520685, + "PaymentType": "Credit Card" + }, + { + "Id": 8208, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2019-04-16T16:19:55", + "TransactionId": 62326899, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 265, + "CustomerInfo": 60488479, + "PaymentType": "Credit Card" + }, + { + "Id": 8209, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-04-06T13:59:14", + "TransactionId": 59181214, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 295, + "CustomerInfo": 71220773, + "PaymentType": "Cash" + }, + { + "Id": 8210, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2018-02-26T07:31:52", + "TransactionId": 61091559, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 621, + "CustomerInfo": 28960824, + "PaymentType": "Cash" + }, + { + "Id": 8211, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2019-10-10T10:04:31", + "TransactionId": 6550412, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 278, + "CustomerInfo": 19857872, + "PaymentType": "Cash" + }, + { + "Id": 8212, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2017-02-18T07:42:32", + "TransactionId": 14384868, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 49, + "CustomerInfo": 51629677, + "PaymentType": "Cash" + }, + { + "Id": 8213, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-09-23T14:16:39", + "TransactionId": 89648570, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 563, + "CustomerInfo": 41619854, + "PaymentType": "Credit Card" + }, + { + "Id": 8214, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-10-30T07:42:32", + "TransactionId": 81968884, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 94, + "CustomerInfo": 48287834, + "PaymentType": "Credit Card" + }, + { + "Id": 8215, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2018-08-06T18:09:04", + "TransactionId": 26144757, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 612, + "CustomerInfo": 14317995, + "PaymentType": "Cash" + }, + { + "Id": 8216, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-05-23T11:17:48", + "TransactionId": 54888805, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 732, + "CustomerInfo": 35291719, + "PaymentType": "Credit Card" + }, + { + "Id": 8217, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-12-24T16:07:32", + "TransactionId": 72339375, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 273, + "CustomerInfo": 98927665, + "PaymentType": "Debit Card" + }, + { + "Id": 8218, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2018-04-08T13:31:26", + "TransactionId": 57995882, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 239, + "CustomerInfo": 40267884, + "PaymentType": "Debit Card" + }, + { + "Id": 8219, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2019-08-15T12:46:39", + "TransactionId": 27360690, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 410, + "CustomerInfo": 81861505, + "PaymentType": "Debit Card" + }, + { + "Id": 8220, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-11-13T13:47:34", + "TransactionId": 81638385, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 281, + "CustomerInfo": 83568504, + "PaymentType": "Credit Card" + }, + { + "Id": 8221, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2016-02-04T11:20:50", + "TransactionId": 10110371, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 717, + "CustomerInfo": 55606725, + "PaymentType": "Debit Card" + }, + { + "Id": 8222, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2019-08-26T08:53:40", + "TransactionId": 50473934, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 392, + "CustomerInfo": 62081346, + "PaymentType": "Credit Card" + }, + { + "Id": 8223, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2019-05-07T12:32:50", + "TransactionId": 82135822, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 77, + "CustomerInfo": 85578034, + "PaymentType": "Cash" + }, + { + "Id": 8224, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-05-13T09:15:50", + "TransactionId": 17132137, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 629, + "CustomerInfo": 18746881, + "PaymentType": "Credit Card" + }, + { + "Id": 8225, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2017-03-08T15:13:41", + "TransactionId": 74925272, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 696, + "CustomerInfo": 65690789, + "PaymentType": "Cash" + }, + { + "Id": 8226, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2017-01-02T15:13:06", + "TransactionId": 95101076, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 411, + "CustomerInfo": 80120437, + "PaymentType": "Cash" + }, + { + "Id": 8227, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-11-30T11:32:04", + "TransactionId": 74751849, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 115, + "CustomerInfo": 37392692, + "PaymentType": "Cash" + }, + { + "Id": 8228, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2019-12-24T08:13:03", + "TransactionId": 93970778, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 732, + "CustomerInfo": 9857791, + "PaymentType": "Debit Card" + }, + { + "Id": 8229, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-10-01T08:36:49", + "TransactionId": 46547786, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 293, + "CustomerInfo": 60109640, + "PaymentType": "Credit Card" + }, + { + "Id": 8230, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2016-05-26T16:55:29", + "TransactionId": 40329493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 42849127, + "PaymentType": "Cash" + }, + { + "Id": 8231, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2019-04-04T15:09:48", + "TransactionId": 2561400, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 68, + "CustomerInfo": 94822118, + "PaymentType": "Debit Card" + }, + { + "Id": 8232, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2018-08-09T12:10:22", + "TransactionId": 46681119, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 41, + "CustomerInfo": 92704009, + "PaymentType": "Cash" + }, + { + "Id": 8233, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2017-11-14T07:08:33", + "TransactionId": 82590506, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 682, + "CustomerInfo": 62656666, + "PaymentType": "Cash" + }, + { + "Id": 8234, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-05-16T18:30:58", + "TransactionId": 31758498, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 485, + "CustomerInfo": 6309282, + "PaymentType": "Debit Card" + }, + { + "Id": 8235, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-02-09T08:31:29", + "TransactionId": 88420833, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 400, + "CustomerInfo": 73324117, + "PaymentType": "Cash" + }, + { + "Id": 8236, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-05-04T15:35:00", + "TransactionId": 53918188, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 855, + "CustomerInfo": 70769724, + "PaymentType": "Credit Card" + }, + { + "Id": 8237, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2016-06-20T12:59:20", + "TransactionId": 42075998, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 412, + "CustomerInfo": 89072023, + "PaymentType": "Debit Card" + }, + { + "Id": 8238, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2016-09-05T07:58:13", + "TransactionId": 30960193, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 370, + "CustomerInfo": 90381397, + "PaymentType": "Credit Card" + }, + { + "Id": 8239, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2018-01-07T18:35:00", + "TransactionId": 21545843, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 874, + "CustomerInfo": 38109188, + "PaymentType": "Debit Card" + }, + { + "Id": 8240, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-07-28T09:55:09", + "TransactionId": 77974972, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 173, + "CustomerInfo": 2121838, + "PaymentType": "Debit Card" + }, + { + "Id": 8241, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-04-11T15:28:57", + "TransactionId": 39783388, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 307, + "CustomerInfo": 53053274, + "PaymentType": "Credit Card" + }, + { + "Id": 8242, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-11-08T09:33:59", + "TransactionId": 89409460, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 498, + "CustomerInfo": 70278539, + "PaymentType": "Credit Card" + }, + { + "Id": 8243, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-08-30T18:32:50", + "TransactionId": 29603823, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 760, + "CustomerInfo": 32100218, + "PaymentType": "Credit Card" + }, + { + "Id": 8244, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-12-14T09:43:38", + "TransactionId": 23053875, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 884, + "CustomerInfo": 87136902, + "PaymentType": "Cash" + }, + { + "Id": 8245, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-08-02T08:04:34", + "TransactionId": 1234066, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 3522257, + "PaymentType": "Credit Card" + }, + { + "Id": 8246, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2019-11-15T12:27:22", + "TransactionId": 81490700, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 539, + "CustomerInfo": 17297366, + "PaymentType": "Cash" + }, + { + "Id": 8247, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-08-08T08:57:07", + "TransactionId": 90428383, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 751, + "CustomerInfo": 26746590, + "PaymentType": "Credit Card" + }, + { + "Id": 8248, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-11-08T10:53:28", + "TransactionId": 1362090, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 504, + "CustomerInfo": 64095879, + "PaymentType": "Credit Card" + }, + { + "Id": 8249, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2018-01-30T19:07:06", + "TransactionId": 87146835, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 628, + "CustomerInfo": 10843770, + "PaymentType": "Cash" + }, + { + "Id": 8250, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2017-02-01T18:34:51", + "TransactionId": 10911487, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 911, + "CustomerInfo": 796427, + "PaymentType": "Debit Card" + }, + { + "Id": 8251, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2017-09-10T19:54:12", + "TransactionId": 69245915, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 679, + "CustomerInfo": 30970041, + "PaymentType": "Credit Card" + }, + { + "Id": 8252, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2017-08-01T09:19:26", + "TransactionId": 4485837, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 486, + "CustomerInfo": 60969251, + "PaymentType": "Credit Card" + }, + { + "Id": 8253, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-04-24T18:23:20", + "TransactionId": 59100206, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 421, + "CustomerInfo": 6848921, + "PaymentType": "Cash" + }, + { + "Id": 8254, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2017-08-17T12:08:04", + "TransactionId": 19064825, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 661, + "CustomerInfo": 45857760, + "PaymentType": "Debit Card" + }, + { + "Id": 8255, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2018-03-18T18:19:09", + "TransactionId": 40123185, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 368, + "CustomerInfo": 26615988, + "PaymentType": "Debit Card" + }, + { + "Id": 8256, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2017-05-14T11:02:41", + "TransactionId": 49068288, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 567, + "CustomerInfo": 87707418, + "PaymentType": "Debit Card" + }, + { + "Id": 8257, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-03-02T15:34:16", + "TransactionId": 15808018, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 826, + "CustomerInfo": 54033957, + "PaymentType": "Cash" + }, + { + "Id": 8258, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2017-11-13T09:28:13", + "TransactionId": 8870787, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 965, + "CustomerInfo": 22618096, + "PaymentType": "Cash" + }, + { + "Id": 8259, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-06-19T09:26:38", + "TransactionId": 46906416, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 942, + "CustomerInfo": 6898386, + "PaymentType": "Debit Card" + }, + { + "Id": 8260, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-03-11T10:09:16", + "TransactionId": 72797372, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 5, + "CustomerInfo": 44524367, + "PaymentType": "Cash" + }, + { + "Id": 8261, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2017-03-26T16:00:37", + "TransactionId": 60469627, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 453, + "CustomerInfo": 78022435, + "PaymentType": "Credit Card" + }, + { + "Id": 8262, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-03-24T07:58:39", + "TransactionId": 11689344, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 808, + "CustomerInfo": 82457547, + "PaymentType": "Cash" + }, + { + "Id": 8263, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2019-07-02T07:02:04", + "TransactionId": 15753015, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 242, + "CustomerInfo": 3647653, + "PaymentType": "Credit Card" + }, + { + "Id": 8264, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-05-18T19:19:55", + "TransactionId": 7787598, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 578, + "CustomerInfo": 79474886, + "PaymentType": "Cash" + }, + { + "Id": 8265, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2017-10-21T13:34:54", + "TransactionId": 84553551, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 361, + "CustomerInfo": 43527479, + "PaymentType": "Credit Card" + }, + { + "Id": 8266, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2019-02-21T13:40:31", + "TransactionId": 77805786, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 520, + "CustomerInfo": 64311393, + "PaymentType": "Debit Card" + }, + { + "Id": 8267, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-05-12T10:10:42", + "TransactionId": 73545313, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 314, + "CustomerInfo": 54301392, + "PaymentType": "Cash" + }, + { + "Id": 8268, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-03-14T08:22:51", + "TransactionId": 55853511, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 819, + "CustomerInfo": 75722133, + "PaymentType": "Cash" + }, + { + "Id": 8269, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2016-01-06T19:50:53", + "TransactionId": 54862546, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 528, + "CustomerInfo": 14335950, + "PaymentType": "Credit Card" + }, + { + "Id": 8270, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2016-07-17T11:19:32", + "TransactionId": 88688292, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 577, + "CustomerInfo": 72877528, + "PaymentType": "Cash" + }, + { + "Id": 8271, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2019-07-16T12:20:53", + "TransactionId": 41447891, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 906, + "CustomerInfo": 32122912, + "PaymentType": "Credit Card" + }, + { + "Id": 8272, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2016-03-24T19:47:08", + "TransactionId": 91774651, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 680, + "CustomerInfo": 34232694, + "PaymentType": "Debit Card" + }, + { + "Id": 8273, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-08-28T17:49:38", + "TransactionId": 69241216, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 140, + "CustomerInfo": 10304794, + "PaymentType": "Cash" + }, + { + "Id": 8274, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2017-12-20T09:51:33", + "TransactionId": 70329134, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 508, + "CustomerInfo": 16124343, + "PaymentType": "Debit Card" + }, + { + "Id": 8275, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-08-14T12:46:48", + "TransactionId": 7240494, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 952, + "CustomerInfo": 26515631, + "PaymentType": "Debit Card" + }, + { + "Id": 8276, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-01-15T15:57:53", + "TransactionId": 55448451, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 759, + "CustomerInfo": 85239313, + "PaymentType": "Credit Card" + }, + { + "Id": 8277, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2019-01-03T13:53:02", + "TransactionId": 75598535, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 681, + "CustomerInfo": 3356948, + "PaymentType": "Debit Card" + }, + { + "Id": 8278, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2018-11-08T17:09:10", + "TransactionId": 61253003, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 296, + "CustomerInfo": 26945510, + "PaymentType": "Credit Card" + }, + { + "Id": 8279, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2019-02-05T07:34:45", + "TransactionId": 65661943, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 885, + "CustomerInfo": 41727914, + "PaymentType": "Credit Card" + }, + { + "Id": 8280, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-01-12T08:01:15", + "TransactionId": 50700600, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 205, + "CustomerInfo": 6061641, + "PaymentType": "Credit Card" + }, + { + "Id": 8281, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-08-06T13:48:26", + "TransactionId": 40471994, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 861, + "CustomerInfo": 95033407, + "PaymentType": "Debit Card" + }, + { + "Id": 8282, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-01-11T10:16:19", + "TransactionId": 20701186, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 99, + "CustomerInfo": 45010897, + "PaymentType": "Debit Card" + }, + { + "Id": 8283, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2017-12-21T07:17:46", + "TransactionId": 33013163, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 740, + "CustomerInfo": 47772247, + "PaymentType": "Cash" + }, + { + "Id": 8284, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-09-11T11:14:12", + "TransactionId": 3838737, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 952, + "CustomerInfo": 8499113, + "PaymentType": "Credit Card" + }, + { + "Id": 8285, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2018-07-25T13:49:00", + "TransactionId": 51672413, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 547, + "CustomerInfo": 83103095, + "PaymentType": "Credit Card" + }, + { + "Id": 8286, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2018-10-14T07:24:14", + "TransactionId": 95139721, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 167, + "CustomerInfo": 5855860, + "PaymentType": "Cash" + }, + { + "Id": 8287, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2016-06-23T13:31:26", + "TransactionId": 23633216, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 990, + "CustomerInfo": 70951340, + "PaymentType": "Debit Card" + }, + { + "Id": 8288, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2017-05-17T19:17:20", + "TransactionId": 460176, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 118, + "CustomerInfo": 87609758, + "PaymentType": "Cash" + }, + { + "Id": 8289, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2016-04-21T16:49:26", + "TransactionId": 22197751, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 177, + "CustomerInfo": 80725995, + "PaymentType": "Credit Card" + }, + { + "Id": 8290, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-07-10T12:08:12", + "TransactionId": 55736823, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 567, + "CustomerInfo": 80455961, + "PaymentType": "Cash" + }, + { + "Id": 8291, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2016-08-18T11:40:25", + "TransactionId": 60962259, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 802, + "CustomerInfo": 99103985, + "PaymentType": "Credit Card" + }, + { + "Id": 8292, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2016-07-31T19:03:56", + "TransactionId": 70476029, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 396, + "CustomerInfo": 73409511, + "PaymentType": "Credit Card" + }, + { + "Id": 8293, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-09-27T12:30:32", + "TransactionId": 78398547, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 323, + "CustomerInfo": 77231824, + "PaymentType": "Debit Card" + }, + { + "Id": 8294, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2016-03-22T07:21:13", + "TransactionId": 19505409, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 661, + "CustomerInfo": 69881149, + "PaymentType": "Debit Card" + }, + { + "Id": 8295, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-11-06T12:05:20", + "TransactionId": 17745916, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 764, + "CustomerInfo": 23148432, + "PaymentType": "Credit Card" + }, + { + "Id": 8296, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-12-13T16:02:04", + "TransactionId": 17309752, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 423, + "CustomerInfo": 18417521, + "PaymentType": "Debit Card" + }, + { + "Id": 8297, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2019-04-24T19:02:12", + "TransactionId": 38273112, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 886, + "CustomerInfo": 1666823, + "PaymentType": "Credit Card" + }, + { + "Id": 8298, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-09-25T16:30:17", + "TransactionId": 90080007, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 791, + "CustomerInfo": 80942152, + "PaymentType": "Credit Card" + }, + { + "Id": 8299, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-10-06T09:32:33", + "TransactionId": 2460014, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 293, + "CustomerInfo": 46206095, + "PaymentType": "Debit Card" + }, + { + "Id": 8300, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2019-10-14T19:43:15", + "TransactionId": 73360712, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 868, + "CustomerInfo": 81836758, + "PaymentType": "Credit Card" + }, + { + "Id": 8301, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-01-11T08:04:34", + "TransactionId": 40657169, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 83235099, + "PaymentType": "Debit Card" + }, + { + "Id": 8302, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-04-17T16:17:28", + "TransactionId": 68554464, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 923, + "CustomerInfo": 16596055, + "PaymentType": "Cash" + }, + { + "Id": 8303, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-03-04T16:54:46", + "TransactionId": 66950062, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 142, + "CustomerInfo": 97835251, + "PaymentType": "Credit Card" + }, + { + "Id": 8304, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2017-10-23T12:15:16", + "TransactionId": 52154257, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 988, + "CustomerInfo": 16736336, + "PaymentType": "Debit Card" + }, + { + "Id": 8305, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2018-03-23T08:58:51", + "TransactionId": 90148890, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 63, + "CustomerInfo": 52255769, + "PaymentType": "Debit Card" + }, + { + "Id": 8306, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2019-04-16T09:10:22", + "TransactionId": 83089458, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 206, + "CustomerInfo": 39588380, + "PaymentType": "Cash" + }, + { + "Id": 8307, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-06-29T11:09:36", + "TransactionId": 48863391, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 3, + "CustomerInfo": 1293925, + "PaymentType": "Cash" + }, + { + "Id": 8308, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-10-24T12:42:20", + "TransactionId": 25590880, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 501, + "CustomerInfo": 98353024, + "PaymentType": "Cash" + }, + { + "Id": 8309, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2017-04-23T13:50:36", + "TransactionId": 56684566, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 56, + "CustomerInfo": 63779212, + "PaymentType": "Cash" + }, + { + "Id": 8310, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2017-02-01T13:47:17", + "TransactionId": 18959698, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 843, + "CustomerInfo": 18258621, + "PaymentType": "Cash" + }, + { + "Id": 8311, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2018-03-09T12:56:01", + "TransactionId": 11622338, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 533, + "CustomerInfo": 40448648, + "PaymentType": "Debit Card" + }, + { + "Id": 8312, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-08-19T18:30:32", + "TransactionId": 28245302, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 708, + "CustomerInfo": 50404168, + "PaymentType": "Credit Card" + }, + { + "Id": 8313, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-05-22T09:40:36", + "TransactionId": 76248833, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 49, + "CustomerInfo": 51647575, + "PaymentType": "Debit Card" + }, + { + "Id": 8314, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2016-06-30T13:24:32", + "TransactionId": 23866191, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 434, + "CustomerInfo": 39769379, + "PaymentType": "Credit Card" + }, + { + "Id": 8315, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2019-08-31T19:00:55", + "TransactionId": 35168660, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 13, + "CustomerInfo": 98515350, + "PaymentType": "Credit Card" + }, + { + "Id": 8316, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-01-18T15:19:44", + "TransactionId": 36277208, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 153, + "CustomerInfo": 66742015, + "PaymentType": "Cash" + }, + { + "Id": 8317, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2017-09-04T18:47:23", + "TransactionId": 74495132, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 310, + "CustomerInfo": 85146654, + "PaymentType": "Credit Card" + }, + { + "Id": 8318, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-04-26T19:09:07", + "TransactionId": 76160309, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 269, + "CustomerInfo": 57640887, + "PaymentType": "Debit Card" + }, + { + "Id": 8319, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-11-23T17:14:47", + "TransactionId": 51694515, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 384, + "CustomerInfo": 28316093, + "PaymentType": "Debit Card" + }, + { + "Id": 8320, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-11-11T18:40:19", + "TransactionId": 85464001, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 307, + "CustomerInfo": 75152442, + "PaymentType": "Cash" + }, + { + "Id": 8321, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-08-23T16:42:49", + "TransactionId": 79550454, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 790, + "CustomerInfo": 38536186, + "PaymentType": "Credit Card" + }, + { + "Id": 8322, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2017-06-18T16:25:41", + "TransactionId": 26135765, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 476, + "CustomerInfo": 4605803, + "PaymentType": "Debit Card" + }, + { + "Id": 8323, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-05-06T11:30:20", + "TransactionId": 49165389, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 658, + "CustomerInfo": 11567263, + "PaymentType": "Credit Card" + }, + { + "Id": 8324, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2017-10-31T14:05:25", + "TransactionId": 18684285, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 330, + "CustomerInfo": 5068125, + "PaymentType": "Debit Card" + }, + { + "Id": 8325, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2018-02-16T08:44:01", + "TransactionId": 17242614, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 999, + "CustomerInfo": 87767230, + "PaymentType": "Cash" + }, + { + "Id": 8326, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2016-09-09T12:15:07", + "TransactionId": 26530270, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 771, + "CustomerInfo": 28914802, + "PaymentType": "Cash" + }, + { + "Id": 8327, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-01-09T07:41:40", + "TransactionId": 12625896, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 771, + "CustomerInfo": 30448232, + "PaymentType": "Credit Card" + }, + { + "Id": 8328, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2018-08-18T09:39:36", + "TransactionId": 44911309, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 622, + "CustomerInfo": 56835366, + "PaymentType": "Cash" + }, + { + "Id": 8329, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2016-07-24T07:36:29", + "TransactionId": 97143333, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 614, + "CustomerInfo": 8854561, + "PaymentType": "Cash" + }, + { + "Id": 8330, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2018-01-28T09:26:47", + "TransactionId": 9992439, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 210, + "CustomerInfo": 55116167, + "PaymentType": "Debit Card" + }, + { + "Id": 8331, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2017-11-07T13:55:21", + "TransactionId": 34657987, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 112, + "CustomerInfo": 19097784, + "PaymentType": "Credit Card" + }, + { + "Id": 8332, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-04-05T12:04:36", + "TransactionId": 59587060, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 847, + "CustomerInfo": 48787355, + "PaymentType": "Credit Card" + }, + { + "Id": 8333, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2017-03-25T10:04:05", + "TransactionId": 53037194, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 962, + "CustomerInfo": 6151124, + "PaymentType": "Credit Card" + }, + { + "Id": 8334, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-05-18T19:35:02", + "TransactionId": 22970459, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 786, + "CustomerInfo": 47984073, + "PaymentType": "Cash" + }, + { + "Id": 8335, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-06-21T18:40:45", + "TransactionId": 47712443, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 212, + "CustomerInfo": 97654616, + "PaymentType": "Debit Card" + }, + { + "Id": 8336, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-02-19T15:19:26", + "TransactionId": 10540414, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 474, + "CustomerInfo": 89939346, + "PaymentType": "Cash" + }, + { + "Id": 8337, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-11-12T18:10:39", + "TransactionId": 6384401, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 950, + "CustomerInfo": 52243528, + "PaymentType": "Debit Card" + }, + { + "Id": 8338, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-02-03T12:02:18", + "TransactionId": 53134810, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 99829644, + "PaymentType": "Cash" + }, + { + "Id": 8339, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-10-03T15:48:06", + "TransactionId": 8711402, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 996, + "CustomerInfo": 79587995, + "PaymentType": "Cash" + }, + { + "Id": 8340, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-03-21T07:05:48", + "TransactionId": 77787340, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 839, + "CustomerInfo": 16199282, + "PaymentType": "Debit Card" + }, + { + "Id": 8341, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2018-01-11T08:32:38", + "TransactionId": 163874, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 931, + "CustomerInfo": 19601699, + "PaymentType": "Debit Card" + }, + { + "Id": 8342, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-04-21T11:14:56", + "TransactionId": 66200589, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 528, + "CustomerInfo": 27382221, + "PaymentType": "Debit Card" + }, + { + "Id": 8343, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-08-10T08:10:36", + "TransactionId": 51640175, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 176, + "CustomerInfo": 75917751, + "PaymentType": "Credit Card" + }, + { + "Id": 8344, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2019-06-07T13:59:23", + "TransactionId": 83421681, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 331, + "CustomerInfo": 69610543, + "PaymentType": "Debit Card" + }, + { + "Id": 8345, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2017-08-17T10:28:08", + "TransactionId": 53701791, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 3994303, + "PaymentType": "Credit Card" + }, + { + "Id": 8346, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2018-08-18T19:21:13", + "TransactionId": 37183142, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 941, + "CustomerInfo": 4850703, + "PaymentType": "Cash" + }, + { + "Id": 8347, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2019-10-29T07:38:21", + "TransactionId": 64097313, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 18, + "CustomerInfo": 29611946, + "PaymentType": "Cash" + }, + { + "Id": 8348, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2017-04-26T12:28:39", + "TransactionId": 83003609, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 777, + "CustomerInfo": 22357464, + "PaymentType": "Cash" + }, + { + "Id": 8349, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2018-05-29T19:05:14", + "TransactionId": 43475470, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 125, + "CustomerInfo": 92492315, + "PaymentType": "Credit Card" + }, + { + "Id": 8350, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-02-08T10:54:37", + "TransactionId": 98913307, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 433, + "CustomerInfo": 20895098, + "PaymentType": "Debit Card" + }, + { + "Id": 8351, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-08-26T16:53:20", + "TransactionId": 37820446, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 935, + "CustomerInfo": 21816053, + "PaymentType": "Debit Card" + }, + { + "Id": 8352, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2019-02-23T16:51:45", + "TransactionId": 61570047, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 758, + "CustomerInfo": 72188616, + "PaymentType": "Debit Card" + }, + { + "Id": 8353, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2016-01-17T11:50:47", + "TransactionId": 34180931, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 688, + "CustomerInfo": 93858131, + "PaymentType": "Debit Card" + }, + { + "Id": 8354, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-11-21T08:02:24", + "TransactionId": 29170189, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 221, + "CustomerInfo": 53878024, + "PaymentType": "Credit Card" + }, + { + "Id": 8355, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-07-01T10:17:02", + "TransactionId": 33010844, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 835, + "CustomerInfo": 6687581, + "PaymentType": "Credit Card" + }, + { + "Id": 8356, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-06-17T07:11:43", + "TransactionId": 96281675, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 393, + "CustomerInfo": 51181217, + "PaymentType": "Credit Card" + }, + { + "Id": 8357, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-12-06T08:08:10", + "TransactionId": 49718710, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 466, + "CustomerInfo": 3064177, + "PaymentType": "Debit Card" + }, + { + "Id": 8358, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2016-01-13T13:37:21", + "TransactionId": 36537059, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 408, + "CustomerInfo": 84644205, + "PaymentType": "Cash" + }, + { + "Id": 8359, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-08-02T10:43:24", + "TransactionId": 16663121, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 181, + "CustomerInfo": 15583222, + "PaymentType": "Credit Card" + }, + { + "Id": 8360, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-11-22T12:22:45", + "TransactionId": 23375313, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 200, + "CustomerInfo": 8328903, + "PaymentType": "Credit Card" + }, + { + "Id": 8361, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2017-09-29T12:29:40", + "TransactionId": 96975324, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 537, + "CustomerInfo": 3470980, + "PaymentType": "Cash" + }, + { + "Id": 8362, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2016-06-25T11:33:48", + "TransactionId": 85153097, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 710, + "CustomerInfo": 3103674, + "PaymentType": "Cash" + }, + { + "Id": 8363, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2017-07-22T14:42:35", + "TransactionId": 42044150, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 19, + "CustomerInfo": 75998654, + "PaymentType": "Credit Card" + }, + { + "Id": 8364, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-11-01T17:52:22", + "TransactionId": 14600260, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 750, + "CustomerInfo": 86475333, + "PaymentType": "Cash" + }, + { + "Id": 8365, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2017-11-02T17:34:48", + "TransactionId": 8668581, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 16995816, + "PaymentType": "Credit Card" + }, + { + "Id": 8366, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-11-01T11:50:21", + "TransactionId": 89368321, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 284, + "CustomerInfo": 86829219, + "PaymentType": "Cash" + }, + { + "Id": 8367, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-05-23T08:35:48", + "TransactionId": 60520982, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 75, + "CustomerInfo": 93289210, + "PaymentType": "Cash" + }, + { + "Id": 8368, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-05-28T15:22:11", + "TransactionId": 19796596, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 941, + "CustomerInfo": 17197168, + "PaymentType": "Credit Card" + }, + { + "Id": 8369, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-07-04T12:22:45", + "TransactionId": 93311811, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 279, + "CustomerInfo": 21324487, + "PaymentType": "Debit Card" + }, + { + "Id": 8370, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-05-20T16:34:02", + "TransactionId": 54144678, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 525, + "CustomerInfo": 88472991, + "PaymentType": "Credit Card" + }, + { + "Id": 8371, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2017-03-18T14:14:04", + "TransactionId": 91754892, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 936, + "CustomerInfo": 91960568, + "PaymentType": "Debit Card" + }, + { + "Id": 8372, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2016-02-21T15:21:01", + "TransactionId": 74523606, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 985, + "CustomerInfo": 14982429, + "PaymentType": "Credit Card" + }, + { + "Id": 8373, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2018-07-01T08:08:27", + "TransactionId": 37305493, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 353, + "CustomerInfo": 86026716, + "PaymentType": "Debit Card" + }, + { + "Id": 8374, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2018-12-22T09:06:12", + "TransactionId": 15195642, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 31, + "CustomerInfo": 55400444, + "PaymentType": "Debit Card" + }, + { + "Id": 8375, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2017-03-08T18:55:09", + "TransactionId": 94011869, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 438, + "CustomerInfo": 59252551, + "PaymentType": "Cash" + }, + { + "Id": 8376, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2016-03-07T13:34:11", + "TransactionId": 2443796, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 56, + "CustomerInfo": 72054393, + "PaymentType": "Cash" + }, + { + "Id": 8377, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2016-08-07T12:22:28", + "TransactionId": 57469165, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 183, + "CustomerInfo": 38204067, + "PaymentType": "Credit Card" + }, + { + "Id": 8378, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2016-05-19T14:16:39", + "TransactionId": 14748092, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 507, + "CustomerInfo": 63373312, + "PaymentType": "Cash" + }, + { + "Id": 8379, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2018-05-15T19:21:48", + "TransactionId": 91936457, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 153, + "CustomerInfo": 83015756, + "PaymentType": "Cash" + }, + { + "Id": 8380, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2017-01-07T19:30:09", + "TransactionId": 52234118, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 626, + "CustomerInfo": 3964085, + "PaymentType": "Credit Card" + }, + { + "Id": 8381, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2017-08-25T14:28:11", + "TransactionId": 88161800, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 50, + "CustomerInfo": 63994593, + "PaymentType": "Debit Card" + }, + { + "Id": 8382, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-11-27T17:41:17", + "TransactionId": 55184925, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 639, + "CustomerInfo": 15602807, + "PaymentType": "Cash" + }, + { + "Id": 8383, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2016-06-11T13:26:50", + "TransactionId": 25452306, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 255, + "CustomerInfo": 57324619, + "PaymentType": "Debit Card" + }, + { + "Id": 8384, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2018-02-17T13:26:50", + "TransactionId": 72435797, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 987, + "CustomerInfo": 98206888, + "PaymentType": "Credit Card" + }, + { + "Id": 8385, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-10-07T10:35:11", + "TransactionId": 52904566, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 534, + "CustomerInfo": 36062814, + "PaymentType": "Credit Card" + }, + { + "Id": 8386, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2016-02-19T15:45:30", + "TransactionId": 10789312, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 42163081, + "PaymentType": "Cash" + }, + { + "Id": 8387, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-03-08T07:36:29", + "TransactionId": 29134202, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 920, + "CustomerInfo": 81663436, + "PaymentType": "Cash" + }, + { + "Id": 8388, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-12-18T14:53:48", + "TransactionId": 36134227, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 802, + "CustomerInfo": 30968250, + "PaymentType": "Debit Card" + }, + { + "Id": 8389, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2019-10-21T18:31:06", + "TransactionId": 46429321, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 479, + "CustomerInfo": 69108697, + "PaymentType": "Cash" + }, + { + "Id": 8390, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-02-03T10:17:37", + "TransactionId": 22619342, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 695, + "CustomerInfo": 73218976, + "PaymentType": "Cash" + }, + { + "Id": 8391, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2016-08-06T12:28:05", + "TransactionId": 80662473, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 159, + "CustomerInfo": 81988541, + "PaymentType": "Debit Card" + }, + { + "Id": 8392, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-10-15T12:51:50", + "TransactionId": 5935854, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 26625677, + "PaymentType": "Credit Card" + }, + { + "Id": 8393, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2016-01-05T19:47:34", + "TransactionId": 10837708, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 611, + "CustomerInfo": 86703792, + "PaymentType": "Debit Card" + }, + { + "Id": 8394, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-11-04T08:41:00", + "TransactionId": 99673671, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 691, + "CustomerInfo": 65067735, + "PaymentType": "Debit Card" + }, + { + "Id": 8395, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-11-18T09:43:21", + "TransactionId": 969031, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 385, + "CustomerInfo": 39311606, + "PaymentType": "Cash" + }, + { + "Id": 8396, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2017-10-26T08:01:41", + "TransactionId": 38282428, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 807, + "CustomerInfo": 40745126, + "PaymentType": "Cash" + }, + { + "Id": 8397, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2018-10-17T10:05:31", + "TransactionId": 17815791, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 80, + "CustomerInfo": 42664693, + "PaymentType": "Cash" + }, + { + "Id": 8398, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2018-03-13T11:38:59", + "TransactionId": 2843336, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 610, + "CustomerInfo": 84750471, + "PaymentType": "Debit Card" + }, + { + "Id": 8399, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2017-06-03T13:02:56", + "TransactionId": 60024019, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 293, + "CustomerInfo": 91847393, + "PaymentType": "Cash" + }, + { + "Id": 8400, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-08-08T11:39:16", + "TransactionId": 37511777, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 804, + "CustomerInfo": 12698144, + "PaymentType": "Credit Card" + }, + { + "Id": 8401, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2016-10-10T15:13:49", + "TransactionId": 79501797, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 86967324, + "PaymentType": "Credit Card" + }, + { + "Id": 8402, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2017-03-16T19:53:54", + "TransactionId": 59522137, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 161, + "CustomerInfo": 97176723, + "PaymentType": "Credit Card" + }, + { + "Id": 8403, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-11-12T11:31:21", + "TransactionId": 15146447, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 17, + "CustomerInfo": 39390895, + "PaymentType": "Cash" + }, + { + "Id": 8404, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2016-03-18T09:02:27", + "TransactionId": 51858848, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 244, + "CustomerInfo": 25575031, + "PaymentType": "Cash" + }, + { + "Id": 8405, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-12-05T14:25:26", + "TransactionId": 42814272, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 825, + "CustomerInfo": 89180920, + "PaymentType": "Credit Card" + }, + { + "Id": 8406, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-04-04T07:09:07", + "TransactionId": 37521619, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 893, + "CustomerInfo": 93300912, + "PaymentType": "Cash" + }, + { + "Id": 8407, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-11-19T08:46:02", + "TransactionId": 74409590, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 384, + "CustomerInfo": 17530324, + "PaymentType": "Cash" + }, + { + "Id": 8408, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-01-26T13:42:40", + "TransactionId": 14892930, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 464, + "CustomerInfo": 24566322, + "PaymentType": "Debit Card" + }, + { + "Id": 8409, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2019-08-09T10:42:49", + "TransactionId": 74484941, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 623, + "CustomerInfo": 84415554, + "PaymentType": "Debit Card" + }, + { + "Id": 8410, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-08-08T09:17:51", + "TransactionId": 37589978, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 454, + "CustomerInfo": 85082168, + "PaymentType": "Credit Card" + }, + { + "Id": 8411, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-10-15T09:19:52", + "TransactionId": 85383815, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 263, + "CustomerInfo": 49925355, + "PaymentType": "Cash" + }, + { + "Id": 8412, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-05-18T15:34:08", + "TransactionId": 12501403, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 582, + "CustomerInfo": 63456706, + "PaymentType": "Credit Card" + }, + { + "Id": 8413, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-08-31T09:40:02", + "TransactionId": 12552820, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 327, + "CustomerInfo": 42710882, + "PaymentType": "Cash" + }, + { + "Id": 8414, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-06-23T07:59:40", + "TransactionId": 52408225, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 676, + "CustomerInfo": 45359992, + "PaymentType": "Cash" + }, + { + "Id": 8415, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2016-12-01T19:44:50", + "TransactionId": 72986408, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 34, + "CustomerInfo": 87907018, + "PaymentType": "Debit Card" + }, + { + "Id": 8416, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2019-01-27T17:31:55", + "TransactionId": 61462161, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 891, + "CustomerInfo": 57172114, + "PaymentType": "Debit Card" + }, + { + "Id": 8417, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-06-23T12:01:35", + "TransactionId": 51086371, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 309, + "CustomerInfo": 40597137, + "PaymentType": "Cash" + }, + { + "Id": 8418, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-07-10T13:51:45", + "TransactionId": 60652721, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 106, + "CustomerInfo": 54314924, + "PaymentType": "Debit Card" + }, + { + "Id": 8419, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2018-07-31T09:01:00", + "TransactionId": 73774541, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 520, + "CustomerInfo": 61035793, + "PaymentType": "Credit Card" + }, + { + "Id": 8420, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2018-06-23T11:30:12", + "TransactionId": 95184224, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 302, + "CustomerInfo": 6065223, + "PaymentType": "Cash" + }, + { + "Id": 8421, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-04-05T19:52:11", + "TransactionId": 43879560, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 731, + "CustomerInfo": 97394646, + "PaymentType": "Credit Card" + }, + { + "Id": 8422, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-06-16T15:03:27", + "TransactionId": 18874079, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 143, + "CustomerInfo": 30540806, + "PaymentType": "Credit Card" + }, + { + "Id": 8423, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-11-20T17:31:38", + "TransactionId": 83193197, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 868, + "CustomerInfo": 88745343, + "PaymentType": "Debit Card" + }, + { + "Id": 8424, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-06-12T09:46:48", + "TransactionId": 1040672, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 277, + "CustomerInfo": 80326530, + "PaymentType": "Credit Card" + }, + { + "Id": 8425, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-12-16T09:49:15", + "TransactionId": 19690910, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 697, + "CustomerInfo": 16108795, + "PaymentType": "Credit Card" + }, + { + "Id": 8426, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-06-22T07:48:00", + "TransactionId": 23087490, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 74, + "CustomerInfo": 88125721, + "PaymentType": "Credit Card" + }, + { + "Id": 8427, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2018-10-07T18:09:13", + "TransactionId": 11876798, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 995, + "CustomerInfo": 16727977, + "PaymentType": "Debit Card" + }, + { + "Id": 8428, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2016-10-05T13:49:09", + "TransactionId": 84022159, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 959, + "CustomerInfo": 47847860, + "PaymentType": "Credit Card" + }, + { + "Id": 8429, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2017-08-05T14:28:28", + "TransactionId": 47106460, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 407, + "CustomerInfo": 93888638, + "PaymentType": "Credit Card" + }, + { + "Id": 8430, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2017-10-16T07:06:32", + "TransactionId": 81453921, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 234, + "CustomerInfo": 91746017, + "PaymentType": "Debit Card" + }, + { + "Id": 8431, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2019-12-26T17:17:05", + "TransactionId": 76460493, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 295, + "CustomerInfo": 28998376, + "PaymentType": "Cash" + }, + { + "Id": 8432, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-08-16T17:58:42", + "TransactionId": 69774369, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 899, + "CustomerInfo": 32596597, + "PaymentType": "Cash" + }, + { + "Id": 8433, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2018-12-12T16:17:54", + "TransactionId": 94843979, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 919, + "CustomerInfo": 96833102, + "PaymentType": "Credit Card" + }, + { + "Id": 8434, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2018-02-08T09:12:23", + "TransactionId": 40715098, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 509, + "CustomerInfo": 7526726, + "PaymentType": "Debit Card" + }, + { + "Id": 8435, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2016-03-27T19:11:17", + "TransactionId": 82793011, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 104, + "CustomerInfo": 15338654, + "PaymentType": "Credit Card" + }, + { + "Id": 8436, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2016-10-10T13:23:23", + "TransactionId": 64963225, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 108, + "CustomerInfo": 85586596, + "PaymentType": "Credit Card" + }, + { + "Id": 8437, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-01-12T19:00:37", + "TransactionId": 85424093, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 511, + "CustomerInfo": 39694763, + "PaymentType": "Cash" + }, + { + "Id": 8438, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2019-08-12T14:47:28", + "TransactionId": 15067303, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 26, + "CustomerInfo": 63191093, + "PaymentType": "Credit Card" + }, + { + "Id": 8439, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-12-10T19:11:17", + "TransactionId": 28686560, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 424, + "CustomerInfo": 50291408, + "PaymentType": "Credit Card" + }, + { + "Id": 8440, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2018-09-27T16:30:17", + "TransactionId": 50518896, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 421, + "CustomerInfo": 87670443, + "PaymentType": "Debit Card" + }, + { + "Id": 8441, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2018-03-03T19:44:33", + "TransactionId": 2697263, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 428, + "CustomerInfo": 99324881, + "PaymentType": "Debit Card" + }, + { + "Id": 8442, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-12-24T11:53:05", + "TransactionId": 47986973, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 711, + "CustomerInfo": 36585869, + "PaymentType": "Debit Card" + }, + { + "Id": 8443, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2019-09-19T16:16:19", + "TransactionId": 70168965, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 179, + "CustomerInfo": 33030110, + "PaymentType": "Credit Card" + }, + { + "Id": 8444, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2019-07-30T16:22:22", + "TransactionId": 94350813, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 245, + "CustomerInfo": 57635537, + "PaymentType": "Credit Card" + }, + { + "Id": 8445, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-06-24T08:24:43", + "TransactionId": 1226262, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 485, + "CustomerInfo": 10922665, + "PaymentType": "Cash" + }, + { + "Id": 8446, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2017-11-17T10:25:32", + "TransactionId": 37790570, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 868, + "CustomerInfo": 85866816, + "PaymentType": "Debit Card" + }, + { + "Id": 8447, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-09-05T16:49:26", + "TransactionId": 47751552, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 903, + "CustomerInfo": 64268820, + "PaymentType": "Debit Card" + }, + { + "Id": 8448, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2016-08-29T07:30:43", + "TransactionId": 11735182, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 501, + "CustomerInfo": 4447599, + "PaymentType": "Credit Card" + }, + { + "Id": 8449, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2017-06-16T09:20:10", + "TransactionId": 12956378, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 764, + "CustomerInfo": 8414585, + "PaymentType": "Cash" + }, + { + "Id": 8450, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-12-24T12:05:02", + "TransactionId": 91750231, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 924, + "CustomerInfo": 95066884, + "PaymentType": "Cash" + }, + { + "Id": 8451, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-01-13T17:27:45", + "TransactionId": 10586984, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 789, + "CustomerInfo": 12471627, + "PaymentType": "Cash" + }, + { + "Id": 8452, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2016-05-02T10:24:14", + "TransactionId": 96542167, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 323, + "CustomerInfo": 90629389, + "PaymentType": "Credit Card" + }, + { + "Id": 8453, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-10-20T12:20:01", + "TransactionId": 11193, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 491, + "CustomerInfo": 13472298, + "PaymentType": "Cash" + }, + { + "Id": 8454, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-02-04T12:39:53", + "TransactionId": 94640517, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 680, + "CustomerInfo": 13750945, + "PaymentType": "Debit Card" + }, + { + "Id": 8455, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-05-22T15:42:29", + "TransactionId": 85778439, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 340, + "CustomerInfo": 57393008, + "PaymentType": "Cash" + }, + { + "Id": 8456, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2019-02-22T08:51:39", + "TransactionId": 64722131, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 619, + "CustomerInfo": 90296547, + "PaymentType": "Cash" + }, + { + "Id": 8457, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-05-30T08:27:27", + "TransactionId": 99536280, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 368, + "CustomerInfo": 86137427, + "PaymentType": "Cash" + }, + { + "Id": 8458, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-09-20T16:32:01", + "TransactionId": 11538810, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 676, + "CustomerInfo": 35777958, + "PaymentType": "Debit Card" + }, + { + "Id": 8459, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2017-08-15T14:07:26", + "TransactionId": 73469886, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 428, + "CustomerInfo": 23467392, + "PaymentType": "Cash" + }, + { + "Id": 8460, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-02-26T16:19:38", + "TransactionId": 93858052, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 958, + "CustomerInfo": 33054677, + "PaymentType": "Debit Card" + }, + { + "Id": 8461, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-09-03T11:53:14", + "TransactionId": 74529694, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 626, + "CustomerInfo": 80800354, + "PaymentType": "Cash" + }, + { + "Id": 8462, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-02-11T13:01:03", + "TransactionId": 16362678, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 67, + "CustomerInfo": 47447758, + "PaymentType": "Cash" + }, + { + "Id": 8463, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2018-12-12T07:35:37", + "TransactionId": 44957873, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 989, + "CustomerInfo": 46222057, + "PaymentType": "Credit Card" + }, + { + "Id": 8464, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2017-12-25T12:42:20", + "TransactionId": 74804551, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 398, + "CustomerInfo": 22853360, + "PaymentType": "Debit Card" + }, + { + "Id": 8465, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2019-12-16T09:03:45", + "TransactionId": 77216070, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 758, + "CustomerInfo": 58077153, + "PaymentType": "Credit Card" + }, + { + "Id": 8466, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2018-03-28T15:01:44", + "TransactionId": 39671473, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 678, + "CustomerInfo": 36090993, + "PaymentType": "Cash" + }, + { + "Id": 8467, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2019-05-22T19:52:19", + "TransactionId": 1856990, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 936, + "CustomerInfo": 59378390, + "PaymentType": "Credit Card" + }, + { + "Id": 8468, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-07-07T18:44:30", + "TransactionId": 1301914, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 60, + "CustomerInfo": 7262815, + "PaymentType": "Debit Card" + }, + { + "Id": 8469, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2017-06-13T10:24:14", + "TransactionId": 36949077, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 491, + "CustomerInfo": 80758713, + "PaymentType": "Credit Card" + }, + { + "Id": 8470, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-06-11T19:35:28", + "TransactionId": 21530463, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 60, + "CustomerInfo": 78937369, + "PaymentType": "Cash" + }, + { + "Id": 8471, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-05-05T10:26:07", + "TransactionId": 83695715, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 449, + "CustomerInfo": 85873195, + "PaymentType": "Credit Card" + }, + { + "Id": 8472, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-12-20T11:22:16", + "TransactionId": 40782414, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 886, + "CustomerInfo": 8571006, + "PaymentType": "Credit Card" + }, + { + "Id": 8473, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2019-01-27T09:00:26", + "TransactionId": 55673498, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 318, + "CustomerInfo": 55255041, + "PaymentType": "Debit Card" + }, + { + "Id": 8474, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-10-05T12:38:10", + "TransactionId": 56892168, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 58030980, + "PaymentType": "Debit Card" + }, + { + "Id": 8475, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-06-01T16:38:21", + "TransactionId": 7014432, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 414, + "CustomerInfo": 58611910, + "PaymentType": "Cash" + }, + { + "Id": 8476, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2017-12-30T13:25:41", + "TransactionId": 13011926, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 940, + "CustomerInfo": 63924096, + "PaymentType": "Debit Card" + }, + { + "Id": 8477, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2018-07-30T16:53:54", + "TransactionId": 51918711, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 636, + "CustomerInfo": 83647354, + "PaymentType": "Debit Card" + }, + { + "Id": 8478, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2019-11-15T09:39:10", + "TransactionId": 4791022, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 327, + "CustomerInfo": 66704932, + "PaymentType": "Cash" + }, + { + "Id": 8479, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2016-03-20T09:59:37", + "TransactionId": 98616495, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 659, + "CustomerInfo": 93479240, + "PaymentType": "Debit Card" + }, + { + "Id": 8480, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2016-02-04T15:08:38", + "TransactionId": 8958514, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 759, + "CustomerInfo": 62620153, + "PaymentType": "Cash" + }, + { + "Id": 8481, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-01-02T13:47:51", + "TransactionId": 86214450, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 244, + "CustomerInfo": 72788568, + "PaymentType": "Cash" + }, + { + "Id": 8482, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-04-09T13:23:31", + "TransactionId": 22514141, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 790, + "CustomerInfo": 86033884, + "PaymentType": "Debit Card" + }, + { + "Id": 8483, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2016-05-09T07:39:39", + "TransactionId": 40529082, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 382, + "CustomerInfo": 76565519, + "PaymentType": "Debit Card" + }, + { + "Id": 8484, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2018-10-01T13:42:40", + "TransactionId": 60682406, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 749, + "CustomerInfo": 30343575, + "PaymentType": "Debit Card" + }, + { + "Id": 8485, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-11-15T15:25:12", + "TransactionId": 44275590, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 35360183, + "PaymentType": "Debit Card" + }, + { + "Id": 8486, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2019-07-03T11:29:46", + "TransactionId": 20832332, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 856, + "CustomerInfo": 87869414, + "PaymentType": "Credit Card" + }, + { + "Id": 8487, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2016-05-02T08:42:09", + "TransactionId": 9634075, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 966, + "CustomerInfo": 64391438, + "PaymentType": "Credit Card" + }, + { + "Id": 8488, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-11-26T13:16:11", + "TransactionId": 53480619, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 648, + "CustomerInfo": 14560208, + "PaymentType": "Credit Card" + }, + { + "Id": 8489, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2018-09-16T19:21:56", + "TransactionId": 91269646, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 540, + "CustomerInfo": 2010096, + "PaymentType": "Debit Card" + }, + { + "Id": 8490, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-02-02T15:20:18", + "TransactionId": 49580442, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 473, + "CustomerInfo": 82868816, + "PaymentType": "Debit Card" + }, + { + "Id": 8491, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2019-07-18T12:41:11", + "TransactionId": 97736509, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 357, + "CustomerInfo": 23167336, + "PaymentType": "Cash" + }, + { + "Id": 8492, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2016-05-18T10:48:09", + "TransactionId": 69505923, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 899, + "CustomerInfo": 52042668, + "PaymentType": "Debit Card" + }, + { + "Id": 8493, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2016-03-31T10:57:22", + "TransactionId": 56375632, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 986, + "CustomerInfo": 23949096, + "PaymentType": "Credit Card" + }, + { + "Id": 8494, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2017-08-09T16:09:42", + "TransactionId": 62592988, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 40, + "CustomerInfo": 9952463, + "PaymentType": "Debit Card" + }, + { + "Id": 8495, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2019-07-06T19:07:24", + "TransactionId": 16803206, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 52357337, + "PaymentType": "Cash" + }, + { + "Id": 8496, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-02-21T12:23:28", + "TransactionId": 83716590, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 498, + "CustomerInfo": 13108539, + "PaymentType": "Debit Card" + }, + { + "Id": 8497, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-04-27T19:24:32", + "TransactionId": 56742145, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 172, + "CustomerInfo": 44241202, + "PaymentType": "Cash" + }, + { + "Id": 8498, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2018-09-14T18:33:59", + "TransactionId": 14069006, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 830, + "CustomerInfo": 7996223, + "PaymentType": "Cash" + }, + { + "Id": 8499, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2016-12-31T15:42:12", + "TransactionId": 19123453, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 823, + "CustomerInfo": 29706407, + "PaymentType": "Credit Card" + }, + { + "Id": 8500, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-10-25T16:40:39", + "TransactionId": 34477290, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 67, + "CustomerInfo": 32714390, + "PaymentType": "Cash" + }, + { + "Id": 8501, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-11-22T12:24:12", + "TransactionId": 84497913, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 497, + "CustomerInfo": 21493014, + "PaymentType": "Credit Card" + }, + { + "Id": 8502, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-12-13T13:05:05", + "TransactionId": 58251200, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 182, + "CustomerInfo": 14201919, + "PaymentType": "Credit Card" + }, + { + "Id": 8503, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-05-30T07:26:59", + "TransactionId": 1632268, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 949, + "CustomerInfo": 20825024, + "PaymentType": "Credit Card" + }, + { + "Id": 8504, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-04-14T11:04:51", + "TransactionId": 3745566, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 824, + "CustomerInfo": 71450976, + "PaymentType": "Debit Card" + }, + { + "Id": 8505, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-05-09T18:31:49", + "TransactionId": 39518874, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 112, + "CustomerInfo": 71766310, + "PaymentType": "Credit Card" + }, + { + "Id": 8506, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2019-05-14T12:29:31", + "TransactionId": 33280422, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 507, + "CustomerInfo": 85451465, + "PaymentType": "Debit Card" + }, + { + "Id": 8507, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-10-27T19:35:37", + "TransactionId": 3144519, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 924, + "CustomerInfo": 76490692, + "PaymentType": "Credit Card" + }, + { + "Id": 8508, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-12-25T10:57:39", + "TransactionId": 67133665, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 928, + "CustomerInfo": 35036188, + "PaymentType": "Debit Card" + }, + { + "Id": 8509, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2016-06-11T10:45:33", + "TransactionId": 5753354, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 463, + "CustomerInfo": 65905445, + "PaymentType": "Debit Card" + }, + { + "Id": 8510, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2017-08-06T16:45:50", + "TransactionId": 9367540, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 345, + "CustomerInfo": 99631854, + "PaymentType": "Credit Card" + }, + { + "Id": 8511, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2017-08-11T14:33:30", + "TransactionId": 22968863, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 961, + "CustomerInfo": 52320505, + "PaymentType": "Debit Card" + }, + { + "Id": 8512, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-05-22T17:48:46", + "TransactionId": 69108993, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 95, + "CustomerInfo": 52697972, + "PaymentType": "Debit Card" + }, + { + "Id": 8513, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2019-11-24T07:34:02", + "TransactionId": 66744332, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 830, + "CustomerInfo": 68945144, + "PaymentType": "Debit Card" + }, + { + "Id": 8514, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-10-06T15:28:57", + "TransactionId": 96038515, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 423, + "CustomerInfo": 39132132, + "PaymentType": "Credit Card" + }, + { + "Id": 8515, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2019-06-18T10:39:30", + "TransactionId": 26601605, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 509, + "CustomerInfo": 58259406, + "PaymentType": "Credit Card" + }, + { + "Id": 8516, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2016-06-01T13:50:44", + "TransactionId": 48731570, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 64, + "CustomerInfo": 3427197, + "PaymentType": "Debit Card" + }, + { + "Id": 8517, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-05-16T16:54:55", + "TransactionId": 47803206, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 513, + "CustomerInfo": 92970546, + "PaymentType": "Cash" + }, + { + "Id": 8518, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2019-07-24T16:16:28", + "TransactionId": 75622224, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 745, + "CustomerInfo": 17521160, + "PaymentType": "Credit Card" + }, + { + "Id": 8519, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-08-15T09:25:29", + "TransactionId": 81459712, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 626, + "CustomerInfo": 4416611, + "PaymentType": "Credit Card" + }, + { + "Id": 8520, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-05-31T11:12:29", + "TransactionId": 19556993, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 510, + "CustomerInfo": 78445391, + "PaymentType": "Debit Card" + }, + { + "Id": 8521, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-06-07T09:19:52", + "TransactionId": 93268573, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 164, + "CustomerInfo": 79158816, + "PaymentType": "Debit Card" + }, + { + "Id": 8522, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-01-07T17:25:18", + "TransactionId": 55692836, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 929, + "CustomerInfo": 17014053, + "PaymentType": "Debit Card" + }, + { + "Id": 8523, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2017-12-11T15:11:48", + "TransactionId": 59333294, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 503, + "CustomerInfo": 89580230, + "PaymentType": "Debit Card" + }, + { + "Id": 8524, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2017-06-22T07:40:05", + "TransactionId": 93229011, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 910, + "CustomerInfo": 65323980, + "PaymentType": "Debit Card" + }, + { + "Id": 8525, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-12-22T10:05:57", + "TransactionId": 60557433, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 584, + "CustomerInfo": 65896765, + "PaymentType": "Debit Card" + }, + { + "Id": 8526, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2019-08-14T16:22:39", + "TransactionId": 7173650, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 516, + "CustomerInfo": 28556994, + "PaymentType": "Credit Card" + }, + { + "Id": 8527, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-09-29T12:09:56", + "TransactionId": 45591037, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 487, + "CustomerInfo": 6074721, + "PaymentType": "Cash" + }, + { + "Id": 8528, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2017-06-25T16:56:21", + "TransactionId": 56555290, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 355, + "CustomerInfo": 29653094, + "PaymentType": "Credit Card" + }, + { + "Id": 8529, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-11-03T16:37:38", + "TransactionId": 29155038, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 756, + "CustomerInfo": 58479532, + "PaymentType": "Credit Card" + }, + { + "Id": 8530, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2016-12-03T19:34:36", + "TransactionId": 19965499, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 763, + "CustomerInfo": 36841709, + "PaymentType": "Debit Card" + }, + { + "Id": 8531, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2019-12-10T10:18:55", + "TransactionId": 60187533, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 969, + "CustomerInfo": 49522276, + "PaymentType": "Debit Card" + }, + { + "Id": 8532, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-06-10T18:02:27", + "TransactionId": 52658344, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 310, + "CustomerInfo": 15246328, + "PaymentType": "Debit Card" + }, + { + "Id": 8533, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-10-19T12:07:29", + "TransactionId": 87709855, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 250, + "CustomerInfo": 84657514, + "PaymentType": "Cash" + }, + { + "Id": 8534, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2019-09-13T08:00:06", + "TransactionId": 85280361, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 808, + "CustomerInfo": 1449258, + "PaymentType": "Cash" + }, + { + "Id": 8535, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-06-11T11:21:16", + "TransactionId": 62197099, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 795, + "CustomerInfo": 60879511, + "PaymentType": "Debit Card" + }, + { + "Id": 8536, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2019-04-30T16:58:57", + "TransactionId": 92104176, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 467, + "CustomerInfo": 33611720, + "PaymentType": "Debit Card" + }, + { + "Id": 8537, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2019-01-26T10:26:15", + "TransactionId": 72699014, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 208, + "CustomerInfo": 45109363, + "PaymentType": "Debit Card" + }, + { + "Id": 8538, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2019-03-23T17:14:56", + "TransactionId": 25965403, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 39026613, + "PaymentType": "Cash" + }, + { + "Id": 8539, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-06-25T12:41:28", + "TransactionId": 84145928, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 353, + "CustomerInfo": 1327359, + "PaymentType": "Cash" + }, + { + "Id": 8540, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2019-10-15T18:02:27", + "TransactionId": 3759719, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 525, + "CustomerInfo": 14849236, + "PaymentType": "Debit Card" + }, + { + "Id": 8541, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2018-10-13T09:57:10", + "TransactionId": 96575253, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 684, + "CustomerInfo": 61493867, + "PaymentType": "Credit Card" + }, + { + "Id": 8542, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-06-09T13:01:47", + "TransactionId": 68660452, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 952, + "CustomerInfo": 2024924, + "PaymentType": "Credit Card" + }, + { + "Id": 8543, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2017-01-08T18:37:09", + "TransactionId": 77306211, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 968, + "CustomerInfo": 93689665, + "PaymentType": "Debit Card" + }, + { + "Id": 8544, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-04-24T12:58:36", + "TransactionId": 54472313, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 172, + "CustomerInfo": 27904790, + "PaymentType": "Credit Card" + }, + { + "Id": 8545, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2017-10-01T15:36:17", + "TransactionId": 62466783, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 182, + "CustomerInfo": 39380983, + "PaymentType": "Credit Card" + }, + { + "Id": 8546, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-01-04T15:33:33", + "TransactionId": 44592261, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 7, + "CustomerInfo": 42490547, + "PaymentType": "Cash" + }, + { + "Id": 8547, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-10-14T11:39:24", + "TransactionId": 90870462, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 373, + "CustomerInfo": 12751244, + "PaymentType": "Credit Card" + }, + { + "Id": 8548, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2016-11-12T16:29:43", + "TransactionId": 98767547, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 325, + "CustomerInfo": 22250893, + "PaymentType": "Credit Card" + }, + { + "Id": 8549, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2017-03-21T14:35:23", + "TransactionId": 9308824, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 246, + "CustomerInfo": 10608481, + "PaymentType": "Cash" + }, + { + "Id": 8550, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2018-11-15T15:07:38", + "TransactionId": 56614754, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 767, + "CustomerInfo": 14195701, + "PaymentType": "Credit Card" + }, + { + "Id": 8551, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2018-10-05T12:41:46", + "TransactionId": 14560986, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 203, + "CustomerInfo": 46561718, + "PaymentType": "Cash" + }, + { + "Id": 8552, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2019-05-01T11:13:21", + "TransactionId": 52232879, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 465, + "CustomerInfo": 46723675, + "PaymentType": "Credit Card" + }, + { + "Id": 8553, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2017-02-21T08:54:49", + "TransactionId": 58458769, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 465, + "CustomerInfo": 81054737, + "PaymentType": "Credit Card" + }, + { + "Id": 8554, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-10-27T14:14:12", + "TransactionId": 29010763, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 43, + "CustomerInfo": 60647797, + "PaymentType": "Cash" + }, + { + "Id": 8555, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-04-07T14:01:32", + "TransactionId": 6678893, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 24271911, + "PaymentType": "Debit Card" + }, + { + "Id": 8556, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2018-02-14T11:12:03", + "TransactionId": 19933135, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 312, + "CustomerInfo": 77468199, + "PaymentType": "Credit Card" + }, + { + "Id": 8557, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2016-06-22T16:49:18", + "TransactionId": 61512782, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 397, + "CustomerInfo": 8211567, + "PaymentType": "Debit Card" + }, + { + "Id": 8558, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2016-07-12T17:10:45", + "TransactionId": 74515524, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 446, + "CustomerInfo": 86449867, + "PaymentType": "Cash" + }, + { + "Id": 8559, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-03-19T08:08:01", + "TransactionId": 897911, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 869, + "CustomerInfo": 35685399, + "PaymentType": "Debit Card" + }, + { + "Id": 8560, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-05-13T19:53:20", + "TransactionId": 19323491, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 381, + "CustomerInfo": 73961934, + "PaymentType": "Cash" + }, + { + "Id": 8561, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2018-04-22T11:33:13", + "TransactionId": 60333389, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 227, + "CustomerInfo": 41872022, + "PaymentType": "Debit Card" + }, + { + "Id": 8562, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2016-08-12T12:31:41", + "TransactionId": 34497022, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 399, + "CustomerInfo": 72285491, + "PaymentType": "Debit Card" + }, + { + "Id": 8563, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-07-21T13:05:57", + "TransactionId": 85048720, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 629, + "CustomerInfo": 37220356, + "PaymentType": "Credit Card" + }, + { + "Id": 8564, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2016-01-11T13:46:08", + "TransactionId": 67026089, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 443, + "CustomerInfo": 38814174, + "PaymentType": "Debit Card" + }, + { + "Id": 8565, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-03-12T18:49:49", + "TransactionId": 96870755, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 703, + "CustomerInfo": 12558281, + "PaymentType": "Cash" + }, + { + "Id": 8566, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-01-31T10:53:37", + "TransactionId": 33505423, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 318, + "CustomerInfo": 30225260, + "PaymentType": "Cash" + }, + { + "Id": 8567, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2018-02-12T18:09:30", + "TransactionId": 77743605, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 251, + "CustomerInfo": 42423346, + "PaymentType": "Debit Card" + }, + { + "Id": 8568, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-03-03T15:02:18", + "TransactionId": 41531757, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 227, + "CustomerInfo": 15956745, + "PaymentType": "Credit Card" + }, + { + "Id": 8569, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2019-10-13T08:56:07", + "TransactionId": 80882281, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 543, + "CustomerInfo": 32300698, + "PaymentType": "Credit Card" + }, + { + "Id": 8570, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-04-06T10:38:56", + "TransactionId": 7801562, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 410, + "CustomerInfo": 16639300, + "PaymentType": "Cash" + }, + { + "Id": 8571, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2017-05-10T18:04:54", + "TransactionId": 2384713, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 90, + "CustomerInfo": 27769061, + "PaymentType": "Credit Card" + }, + { + "Id": 8572, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2016-06-27T12:51:59", + "TransactionId": 88422751, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 502, + "CustomerInfo": 2788101, + "PaymentType": "Cash" + }, + { + "Id": 8573, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2018-07-13T16:48:09", + "TransactionId": 93466170, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 902, + "CustomerInfo": 76880108, + "PaymentType": "Credit Card" + }, + { + "Id": 8574, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2019-02-10T09:57:53", + "TransactionId": 36766721, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 303, + "CustomerInfo": 88332070, + "PaymentType": "Cash" + }, + { + "Id": 8575, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-10-26T12:48:49", + "TransactionId": 3476987, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 479, + "CustomerInfo": 51340594, + "PaymentType": "Debit Card" + }, + { + "Id": 8576, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-10-19T13:26:33", + "TransactionId": 51170196, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 366, + "CustomerInfo": 92433275, + "PaymentType": "Cash" + }, + { + "Id": 8577, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-04-16T11:39:50", + "TransactionId": 58063640, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 15, + "CustomerInfo": 81851945, + "PaymentType": "Cash" + }, + { + "Id": 8578, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2018-01-15T12:39:19", + "TransactionId": 48954339, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 14775496, + "PaymentType": "Credit Card" + }, + { + "Id": 8579, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2019-08-15T14:08:10", + "TransactionId": 84519987, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 20, + "CustomerInfo": 89619199, + "PaymentType": "Debit Card" + }, + { + "Id": 8580, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2019-03-01T15:55:26", + "TransactionId": 70961424, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 77740690, + "PaymentType": "Credit Card" + }, + { + "Id": 8581, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-11-01T16:00:20", + "TransactionId": 84188948, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 817, + "CustomerInfo": 53378881, + "PaymentType": "Credit Card" + }, + { + "Id": 8582, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2019-04-22T18:36:26", + "TransactionId": 53304739, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 118, + "CustomerInfo": 93408795, + "PaymentType": "Credit Card" + }, + { + "Id": 8583, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-01-24T09:29:57", + "TransactionId": 90531767, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 604, + "CustomerInfo": 41646961, + "PaymentType": "Credit Card" + }, + { + "Id": 8584, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2018-11-08T12:28:05", + "TransactionId": 7353253, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 285, + "CustomerInfo": 19527949, + "PaymentType": "Credit Card" + }, + { + "Id": 8585, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2016-07-03T07:13:44", + "TransactionId": 37114605, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 222, + "CustomerInfo": 34385705, + "PaymentType": "Cash" + }, + { + "Id": 8586, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2019-08-17T10:59:40", + "TransactionId": 93353447, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 930, + "CustomerInfo": 51253339, + "PaymentType": "Credit Card" + }, + { + "Id": 8587, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2018-11-07T12:40:28", + "TransactionId": 90734801, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 105, + "CustomerInfo": 55144591, + "PaymentType": "Credit Card" + }, + { + "Id": 8588, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-04-25T10:35:37", + "TransactionId": 7350962, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 135, + "CustomerInfo": 46295294, + "PaymentType": "Cash" + }, + { + "Id": 8589, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2018-08-11T18:13:58", + "TransactionId": 75213091, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 395, + "CustomerInfo": 1615736, + "PaymentType": "Cash" + }, + { + "Id": 8590, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-09-20T16:07:32", + "TransactionId": 80813554, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 616, + "CustomerInfo": 82919244, + "PaymentType": "Debit Card" + }, + { + "Id": 8591, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2017-01-10T11:05:08", + "TransactionId": 2144895, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 2, + "CustomerInfo": 29190230, + "PaymentType": "Credit Card" + }, + { + "Id": 8592, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2016-11-11T14:00:14", + "TransactionId": 82292853, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 352, + "CustomerInfo": 43873161, + "PaymentType": "Credit Card" + }, + { + "Id": 8593, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2019-07-02T18:09:39", + "TransactionId": 38679482, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 658, + "CustomerInfo": 97644477, + "PaymentType": "Credit Card" + }, + { + "Id": 8594, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-09-09T13:12:26", + "TransactionId": 97275061, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 279, + "CustomerInfo": 48752070, + "PaymentType": "Credit Card" + }, + { + "Id": 8595, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-07-22T15:43:47", + "TransactionId": 63741961, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 832, + "CustomerInfo": 57013592, + "PaymentType": "Debit Card" + }, + { + "Id": 8596, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-11-23T09:33:16", + "TransactionId": 54161260, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 854, + "CustomerInfo": 77177530, + "PaymentType": "Cash" + }, + { + "Id": 8597, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-11-06T07:09:59", + "TransactionId": 50199186, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 629, + "CustomerInfo": 28762821, + "PaymentType": "Credit Card" + }, + { + "Id": 8598, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-01-01T07:15:10", + "TransactionId": 12141657, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 289, + "CustomerInfo": 65361321, + "PaymentType": "Cash" + }, + { + "Id": 8599, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2019-08-05T14:27:36", + "TransactionId": 42477501, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 356, + "CustomerInfo": 78343413, + "PaymentType": "Credit Card" + }, + { + "Id": 8600, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2018-03-24T14:02:50", + "TransactionId": 5659283, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 379, + "CustomerInfo": 97582768, + "PaymentType": "Debit Card" + }, + { + "Id": 8601, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-09-27T17:28:28", + "TransactionId": 32385893, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 630, + "CustomerInfo": 44718878, + "PaymentType": "Cash" + }, + { + "Id": 8602, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-09-26T07:55:21", + "TransactionId": 66031175, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 450, + "CustomerInfo": 77507448, + "PaymentType": "Cash" + }, + { + "Id": 8603, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2016-03-09T18:12:58", + "TransactionId": 64138118, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 380, + "CustomerInfo": 6582798, + "PaymentType": "Debit Card" + }, + { + "Id": 8604, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-05-17T11:35:48", + "TransactionId": 21294033, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 280, + "CustomerInfo": 32628987, + "PaymentType": "Credit Card" + }, + { + "Id": 8605, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2017-05-13T10:32:36", + "TransactionId": 49891316, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 955, + "CustomerInfo": 71674088, + "PaymentType": "Credit Card" + }, + { + "Id": 8606, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-01-24T10:39:30", + "TransactionId": 3237479, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 827, + "CustomerInfo": 72693341, + "PaymentType": "Debit Card" + }, + { + "Id": 8607, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2016-09-21T14:52:13", + "TransactionId": 88687886, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 121, + "CustomerInfo": 87647301, + "PaymentType": "Credit Card" + }, + { + "Id": 8608, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-12-18T15:51:42", + "TransactionId": 54585262, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 622, + "CustomerInfo": 61334001, + "PaymentType": "Cash" + }, + { + "Id": 8609, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2018-07-14T17:35:23", + "TransactionId": 33426123, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 940, + "CustomerInfo": 75566640, + "PaymentType": "Credit Card" + }, + { + "Id": 8610, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2017-11-24T19:09:24", + "TransactionId": 87485552, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 874, + "CustomerInfo": 4328593, + "PaymentType": "Cash" + }, + { + "Id": 8611, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-11-29T07:33:45", + "TransactionId": 9338519, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 51, + "CustomerInfo": 24168905, + "PaymentType": "Cash" + }, + { + "Id": 8612, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2016-11-05T11:31:29", + "TransactionId": 47632454, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 274, + "CustomerInfo": 13557368, + "PaymentType": "Cash" + }, + { + "Id": 8613, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2017-07-12T16:13:35", + "TransactionId": 93298592, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 663, + "CustomerInfo": 53486370, + "PaymentType": "Credit Card" + }, + { + "Id": 8614, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-10-19T11:20:33", + "TransactionId": 52898666, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 28, + "CustomerInfo": 97293175, + "PaymentType": "Debit Card" + }, + { + "Id": 8615, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-06-30T07:51:10", + "TransactionId": 76545603, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 713, + "CustomerInfo": 41064177, + "PaymentType": "Cash" + }, + { + "Id": 8616, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-10-29T17:06:17", + "TransactionId": 36643550, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 80, + "CustomerInfo": 31221308, + "PaymentType": "Credit Card" + }, + { + "Id": 8617, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-11-14T18:12:49", + "TransactionId": 96928790, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 261, + "CustomerInfo": 4284226, + "PaymentType": "Credit Card" + }, + { + "Id": 8618, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-01-12T19:05:48", + "TransactionId": 42007472, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 212, + "CustomerInfo": 40147062, + "PaymentType": "Cash" + }, + { + "Id": 8619, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2019-06-08T17:52:05", + "TransactionId": 63424604, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 613, + "CustomerInfo": 96960904, + "PaymentType": "Debit Card" + }, + { + "Id": 8620, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2016-07-15T07:33:45", + "TransactionId": 1524522, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 877, + "CustomerInfo": 90236372, + "PaymentType": "Credit Card" + }, + { + "Id": 8621, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-11-24T08:15:48", + "TransactionId": 66806047, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 256, + "CustomerInfo": 14363132, + "PaymentType": "Cash" + }, + { + "Id": 8622, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2017-06-19T07:11:43", + "TransactionId": 10775195, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 283, + "CustomerInfo": 5141496, + "PaymentType": "Cash" + }, + { + "Id": 8623, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2017-09-26T19:20:30", + "TransactionId": 80585849, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 222, + "CustomerInfo": 28186139, + "PaymentType": "Credit Card" + }, + { + "Id": 8624, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-05-13T13:15:10", + "TransactionId": 27543130, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 93378713, + "PaymentType": "Cash" + }, + { + "Id": 8625, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2017-06-29T15:41:11", + "TransactionId": 40220641, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 202, + "CustomerInfo": 12566148, + "PaymentType": "Cash" + }, + { + "Id": 8626, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2019-04-22T15:21:10", + "TransactionId": 80954445, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 588, + "CustomerInfo": 54663946, + "PaymentType": "Cash" + }, + { + "Id": 8627, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-05-27T07:16:45", + "TransactionId": 94244497, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 667, + "CustomerInfo": 6744664, + "PaymentType": "Cash" + }, + { + "Id": 8628, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-03-15T17:16:05", + "TransactionId": 38273058, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 398, + "CustomerInfo": 45680850, + "PaymentType": "Cash" + }, + { + "Id": 8629, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-03-09T16:44:50", + "TransactionId": 2001697, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 861, + "CustomerInfo": 78854736, + "PaymentType": "Debit Card" + }, + { + "Id": 8630, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2016-05-26T15:17:17", + "TransactionId": 65943249, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 358, + "CustomerInfo": 2629274, + "PaymentType": "Debit Card" + }, + { + "Id": 8631, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-09-18T19:41:57", + "TransactionId": 24485232, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 802, + "CustomerInfo": 72592314, + "PaymentType": "Debit Card" + }, + { + "Id": 8632, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-03-14T10:04:39", + "TransactionId": 71108285, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 78, + "CustomerInfo": 42061826, + "PaymentType": "Cash" + }, + { + "Id": 8633, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2019-08-11T15:13:49", + "TransactionId": 96033793, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 8, + "CustomerInfo": 99890221, + "PaymentType": "Credit Card" + }, + { + "Id": 8634, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2019-02-06T12:23:37", + "TransactionId": 18682762, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 808, + "CustomerInfo": 9492392, + "PaymentType": "Cash" + }, + { + "Id": 8635, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2017-02-22T12:44:38", + "TransactionId": 56456331, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 463, + "CustomerInfo": 81891468, + "PaymentType": "Debit Card" + }, + { + "Id": 8636, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2018-01-19T09:38:36", + "TransactionId": 73862764, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 217, + "CustomerInfo": 4900346, + "PaymentType": "Credit Card" + }, + { + "Id": 8637, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2017-12-18T18:37:35", + "TransactionId": 68868744, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 645, + "CustomerInfo": 46218878, + "PaymentType": "Cash" + }, + { + "Id": 8638, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-11-05T14:01:15", + "TransactionId": 97090304, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 454, + "CustomerInfo": 88323331, + "PaymentType": "Cash" + }, + { + "Id": 8639, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-12-25T12:10:48", + "TransactionId": 88836026, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 230, + "CustomerInfo": 74769104, + "PaymentType": "Debit Card" + }, + { + "Id": 8640, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-04-22T09:17:17", + "TransactionId": 45691651, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 682, + "CustomerInfo": 47049912, + "PaymentType": "Debit Card" + }, + { + "Id": 8641, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2018-11-12T10:32:18", + "TransactionId": 48303409, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 181, + "CustomerInfo": 63661579, + "PaymentType": "Credit Card" + }, + { + "Id": 8642, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-07-10T09:40:11", + "TransactionId": 3374573, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 47489662, + "PaymentType": "Credit Card" + }, + { + "Id": 8643, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-10-16T12:15:16", + "TransactionId": 30083341, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 418, + "CustomerInfo": 14329545, + "PaymentType": "Debit Card" + }, + { + "Id": 8644, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-06-30T07:38:21", + "TransactionId": 26598711, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 285, + "CustomerInfo": 56258856, + "PaymentType": "Credit Card" + }, + { + "Id": 8645, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2017-05-28T10:48:26", + "TransactionId": 34365892, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 501, + "CustomerInfo": 48972346, + "PaymentType": "Credit Card" + }, + { + "Id": 8646, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2017-01-17T11:57:33", + "TransactionId": 69447689, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 307, + "CustomerInfo": 58678017, + "PaymentType": "Debit Card" + }, + { + "Id": 8647, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-11-07T19:16:54", + "TransactionId": 86438119, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 579, + "CustomerInfo": 97793083, + "PaymentType": "Debit Card" + }, + { + "Id": 8648, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-09-15T19:11:17", + "TransactionId": 25265293, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 51484914, + "PaymentType": "Debit Card" + }, + { + "Id": 8649, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-07-31T15:09:13", + "TransactionId": 61868975, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 978, + "CustomerInfo": 85931112, + "PaymentType": "Credit Card" + }, + { + "Id": 8650, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-06-11T14:29:37", + "TransactionId": 33245879, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 488, + "CustomerInfo": 34619704, + "PaymentType": "Cash" + }, + { + "Id": 8651, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2018-01-12T17:56:41", + "TransactionId": 92492188, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 890, + "CustomerInfo": 60840855, + "PaymentType": "Cash" + }, + { + "Id": 8652, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2016-10-22T08:52:31", + "TransactionId": 1600206, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 506, + "CustomerInfo": 7791432, + "PaymentType": "Debit Card" + }, + { + "Id": 8653, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2017-02-24T16:32:27", + "TransactionId": 10130215, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 168, + "CustomerInfo": 62257223, + "PaymentType": "Debit Card" + }, + { + "Id": 8654, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2018-07-27T14:29:20", + "TransactionId": 92362664, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 354, + "CustomerInfo": 83046492, + "PaymentType": "Debit Card" + }, + { + "Id": 8655, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2016-10-01T10:29:43", + "TransactionId": 57009875, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 347, + "CustomerInfo": 74424584, + "PaymentType": "Cash" + }, + { + "Id": 8656, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2019-02-28T15:05:28", + "TransactionId": 99052581, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 971, + "CustomerInfo": 92299257, + "PaymentType": "Credit Card" + }, + { + "Id": 8657, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2017-09-29T11:57:42", + "TransactionId": 49794218, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 346, + "CustomerInfo": 19124205, + "PaymentType": "Credit Card" + }, + { + "Id": 8658, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-03-20T12:55:00", + "TransactionId": 85812164, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 794, + "CustomerInfo": 14099606, + "PaymentType": "Debit Card" + }, + { + "Id": 8659, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2017-09-04T15:06:55", + "TransactionId": 45825470, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 711, + "CustomerInfo": 20227526, + "PaymentType": "Debit Card" + }, + { + "Id": 8660, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-10-22T18:26:56", + "TransactionId": 53482013, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 18800892, + "PaymentType": "Debit Card" + }, + { + "Id": 8661, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2017-06-28T14:13:12", + "TransactionId": 33716167, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 897, + "CustomerInfo": 26744478, + "PaymentType": "Credit Card" + }, + { + "Id": 8662, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-06-01T07:34:28", + "TransactionId": 91461484, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 840, + "CustomerInfo": 76141003, + "PaymentType": "Debit Card" + }, + { + "Id": 8663, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2017-10-18T10:37:03", + "TransactionId": 44652994, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 394, + "CustomerInfo": 36442157, + "PaymentType": "Cash" + }, + { + "Id": 8664, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2018-06-27T07:28:34", + "TransactionId": 71703873, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 982, + "CustomerInfo": 50166243, + "PaymentType": "Cash" + }, + { + "Id": 8665, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2017-07-24T11:02:50", + "TransactionId": 39022362, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 163, + "CustomerInfo": 48309200, + "PaymentType": "Cash" + }, + { + "Id": 8666, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-03-26T14:08:18", + "TransactionId": 41966654, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 350, + "CustomerInfo": 32470685, + "PaymentType": "Cash" + }, + { + "Id": 8667, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-05-23T07:27:42", + "TransactionId": 5907013, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 193, + "CustomerInfo": 30475555, + "PaymentType": "Cash" + }, + { + "Id": 8668, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2019-08-09T10:59:40", + "TransactionId": 17463451, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 804, + "CustomerInfo": 29322456, + "PaymentType": "Debit Card" + }, + { + "Id": 8669, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2018-05-24T15:15:33", + "TransactionId": 8062737, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 462, + "CustomerInfo": 16953680, + "PaymentType": "Credit Card" + }, + { + "Id": 8670, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2018-08-18T08:26:36", + "TransactionId": 78725029, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 816, + "CustomerInfo": 25231011, + "PaymentType": "Debit Card" + }, + { + "Id": 8671, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-12-28T12:09:56", + "TransactionId": 56366527, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 818, + "CustomerInfo": 74784412, + "PaymentType": "Cash" + }, + { + "Id": 8672, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2019-06-01T15:22:54", + "TransactionId": 26952435, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 916, + "CustomerInfo": 80432009, + "PaymentType": "Cash" + }, + { + "Id": 8673, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-03-11T10:13:18", + "TransactionId": 4447068, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 246, + "CustomerInfo": 50073294, + "PaymentType": "Cash" + }, + { + "Id": 8674, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-04-11T16:17:46", + "TransactionId": 33763268, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 838, + "CustomerInfo": 648712, + "PaymentType": "Debit Card" + }, + { + "Id": 8675, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2016-03-03T17:07:44", + "TransactionId": 58626205, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 768, + "CustomerInfo": 99514637, + "PaymentType": "Cash" + }, + { + "Id": 8676, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2016-11-02T17:41:08", + "TransactionId": 90415179, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 484, + "CustomerInfo": 37961271, + "PaymentType": "Debit Card" + }, + { + "Id": 8677, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2016-10-12T07:11:25", + "TransactionId": 72334491, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 831, + "CustomerInfo": 85179273, + "PaymentType": "Debit Card" + }, + { + "Id": 8678, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-01-25T08:47:20", + "TransactionId": 6605490, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 31898885, + "PaymentType": "Cash" + }, + { + "Id": 8679, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2019-05-06T07:52:45", + "TransactionId": 63897229, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 98, + "CustomerInfo": 51951534, + "PaymentType": "Credit Card" + }, + { + "Id": 8680, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-10-14T16:35:20", + "TransactionId": 62704842, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 829, + "CustomerInfo": 67977096, + "PaymentType": "Debit Card" + }, + { + "Id": 8681, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-08-07T13:41:31", + "TransactionId": 47397093, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 626, + "CustomerInfo": 52875578, + "PaymentType": "Debit Card" + }, + { + "Id": 8682, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-02-15T08:45:45", + "TransactionId": 93284551, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 156, + "CustomerInfo": 11951478, + "PaymentType": "Debit Card" + }, + { + "Id": 8683, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-10-20T08:48:46", + "TransactionId": 38601179, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 796, + "CustomerInfo": 47493123, + "PaymentType": "Credit Card" + }, + { + "Id": 8684, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-02-14T15:14:33", + "TransactionId": 7819433, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 909, + "CustomerInfo": 35962528, + "PaymentType": "Credit Card" + }, + { + "Id": 8685, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-05-11T19:01:55", + "TransactionId": 75244962, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 627, + "CustomerInfo": 45487070, + "PaymentType": "Credit Card" + }, + { + "Id": 8686, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-03-15T13:52:19", + "TransactionId": 24506913, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 67, + "CustomerInfo": 94191143, + "PaymentType": "Credit Card" + }, + { + "Id": 8687, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2016-06-25T14:25:44", + "TransactionId": 42723873, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 364, + "CustomerInfo": 2133150, + "PaymentType": "Debit Card" + }, + { + "Id": 8688, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2019-11-08T09:49:58", + "TransactionId": 13144185, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 664, + "CustomerInfo": 38739429, + "PaymentType": "Debit Card" + }, + { + "Id": 8689, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-05-15T16:13:18", + "TransactionId": 98194253, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 336, + "CustomerInfo": 51633330, + "PaymentType": "Cash" + }, + { + "Id": 8690, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2019-03-10T14:12:12", + "TransactionId": 23668064, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 904, + "CustomerInfo": 64966609, + "PaymentType": "Cash" + }, + { + "Id": 8691, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2017-01-04T08:01:06", + "TransactionId": 90686038, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 214, + "CustomerInfo": 86623389, + "PaymentType": "Cash" + }, + { + "Id": 8692, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2019-08-30T10:26:15", + "TransactionId": 93400979, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 75, + "CustomerInfo": 81979832, + "PaymentType": "Credit Card" + }, + { + "Id": 8693, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-04-01T19:59:48", + "TransactionId": 29462967, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 944, + "CustomerInfo": 73742466, + "PaymentType": "Credit Card" + }, + { + "Id": 8694, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2018-02-12T16:49:00", + "TransactionId": 22627250, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 606, + "CustomerInfo": 80566506, + "PaymentType": "Credit Card" + }, + { + "Id": 8695, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2016-08-06T14:29:46", + "TransactionId": 42795040, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 982, + "CustomerInfo": 92116367, + "PaymentType": "Debit Card" + }, + { + "Id": 8696, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-08-24T16:33:01", + "TransactionId": 57966157, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 37, + "CustomerInfo": 55407950, + "PaymentType": "Cash" + }, + { + "Id": 8697, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-01-16T15:32:07", + "TransactionId": 6398323, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 500, + "CustomerInfo": 62965070, + "PaymentType": "Cash" + }, + { + "Id": 8698, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2016-08-24T14:04:25", + "TransactionId": 94678768, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 859, + "CustomerInfo": 89128346, + "PaymentType": "Cash" + }, + { + "Id": 8699, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2016-08-07T07:52:54", + "TransactionId": 46417891, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 473, + "CustomerInfo": 61089975, + "PaymentType": "Credit Card" + }, + { + "Id": 8700, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-05-17T08:02:24", + "TransactionId": 46083111, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 987, + "CustomerInfo": 21514819, + "PaymentType": "Cash" + }, + { + "Id": 8701, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-08-01T19:31:52", + "TransactionId": 39006068, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 917, + "CustomerInfo": 58867249, + "PaymentType": "Cash" + }, + { + "Id": 8702, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-04-06T12:21:53", + "TransactionId": 76155248, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 147, + "CustomerInfo": 85196683, + "PaymentType": "Credit Card" + }, + { + "Id": 8703, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-10-07T13:29:51", + "TransactionId": 23864299, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 363, + "CustomerInfo": 39015824, + "PaymentType": "Debit Card" + }, + { + "Id": 8704, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2018-03-26T19:15:01", + "TransactionId": 51887594, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 467, + "CustomerInfo": 27834533, + "PaymentType": "Credit Card" + }, + { + "Id": 8705, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2018-02-07T11:39:50", + "TransactionId": 47377115, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 13, + "CustomerInfo": 68315055, + "PaymentType": "Credit Card" + }, + { + "Id": 8706, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-09-29T08:51:39", + "TransactionId": 14269520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 479, + "CustomerInfo": 22772946, + "PaymentType": "Credit Card" + }, + { + "Id": 8707, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2017-01-28T18:18:26", + "TransactionId": 89706566, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 173, + "CustomerInfo": 81987281, + "PaymentType": "Cash" + }, + { + "Id": 8708, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2018-05-07T07:54:03", + "TransactionId": 40969809, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 637, + "CustomerInfo": 9390351, + "PaymentType": "Cash" + }, + { + "Id": 8709, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2019-09-24T09:36:09", + "TransactionId": 49230483, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 321, + "CustomerInfo": 12958743, + "PaymentType": "Cash" + }, + { + "Id": 8710, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-05-10T08:17:57", + "TransactionId": 53039000, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 493, + "CustomerInfo": 35590820, + "PaymentType": "Debit Card" + }, + { + "Id": 8711, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-04-07T10:27:07", + "TransactionId": 82086739, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 124, + "CustomerInfo": 5443321, + "PaymentType": "Debit Card" + }, + { + "Id": 8712, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2018-05-20T07:24:32", + "TransactionId": 9183027, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 531, + "CustomerInfo": 16472572, + "PaymentType": "Credit Card" + }, + { + "Id": 8713, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2017-01-16T14:58:34", + "TransactionId": 50130168, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 20, + "CustomerInfo": 6715152, + "PaymentType": "Debit Card" + }, + { + "Id": 8714, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-05-10T17:46:36", + "TransactionId": 40277774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 509, + "CustomerInfo": 5344630, + "PaymentType": "Credit Card" + }, + { + "Id": 8715, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2019-08-05T14:44:53", + "TransactionId": 5114101, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 980, + "CustomerInfo": 39801212, + "PaymentType": "Cash" + }, + { + "Id": 8716, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2018-12-18T10:53:28", + "TransactionId": 22327473, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 185, + "CustomerInfo": 50033363, + "PaymentType": "Debit Card" + }, + { + "Id": 8717, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-10-07T15:12:40", + "TransactionId": 27928851, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 983, + "CustomerInfo": 15283301, + "PaymentType": "Cash" + }, + { + "Id": 8718, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-12-06T07:02:12", + "TransactionId": 33391552, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 329, + "CustomerInfo": 65641390, + "PaymentType": "Credit Card" + }, + { + "Id": 8719, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2016-02-08T16:31:09", + "TransactionId": 54103711, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 296, + "CustomerInfo": 49848775, + "PaymentType": "Cash" + }, + { + "Id": 8720, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2018-12-08T11:42:52", + "TransactionId": 6257992, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 100, + "CustomerInfo": 89852111, + "PaymentType": "Credit Card" + }, + { + "Id": 8721, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2019-10-13T17:46:54", + "TransactionId": 46259730, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 472, + "CustomerInfo": 52863077, + "PaymentType": "Credit Card" + }, + { + "Id": 8722, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-10-07T15:04:28", + "TransactionId": 76722795, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 810, + "CustomerInfo": 85423696, + "PaymentType": "Cash" + }, + { + "Id": 8723, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-12-24T17:39:24", + "TransactionId": 48244279, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 174, + "CustomerInfo": 27239497, + "PaymentType": "Cash" + }, + { + "Id": 8724, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2018-03-18T08:15:48", + "TransactionId": 21847186, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 374, + "CustomerInfo": 79746551, + "PaymentType": "Credit Card" + }, + { + "Id": 8725, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-11-01T11:42:09", + "TransactionId": 7451225, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 763, + "CustomerInfo": 92603772, + "PaymentType": "Debit Card" + }, + { + "Id": 8726, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2019-03-13T08:12:12", + "TransactionId": 7130708, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 35993531, + "PaymentType": "Credit Card" + }, + { + "Id": 8727, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-03-15T17:05:17", + "TransactionId": 57501395, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 182, + "CustomerInfo": 30720803, + "PaymentType": "Cash" + }, + { + "Id": 8728, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-10-08T17:31:38", + "TransactionId": 28770049, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 687, + "CustomerInfo": 17254818, + "PaymentType": "Credit Card" + }, + { + "Id": 8729, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-11-24T07:08:59", + "TransactionId": 85909170, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 846, + "CustomerInfo": 50789546, + "PaymentType": "Credit Card" + }, + { + "Id": 8730, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2016-07-27T07:21:39", + "TransactionId": 67621686, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 640, + "CustomerInfo": 42251473, + "PaymentType": "Credit Card" + }, + { + "Id": 8731, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2019-05-23T13:06:06", + "TransactionId": 80289724, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 721, + "CustomerInfo": 37562523, + "PaymentType": "Credit Card" + }, + { + "Id": 8732, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-06-20T07:04:22", + "TransactionId": 25972811, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 260, + "CustomerInfo": 82784399, + "PaymentType": "Debit Card" + }, + { + "Id": 8733, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-04-21T07:30:26", + "TransactionId": 11066001, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 840, + "CustomerInfo": 18720397, + "PaymentType": "Credit Card" + }, + { + "Id": 8734, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2016-04-01T16:39:48", + "TransactionId": 1171434, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 359, + "CustomerInfo": 39212337, + "PaymentType": "Cash" + }, + { + "Id": 8735, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2018-05-23T10:18:12", + "TransactionId": 3465461, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 543, + "CustomerInfo": 35450256, + "PaymentType": "Cash" + }, + { + "Id": 8736, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2016-05-28T07:34:45", + "TransactionId": 42969717, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 721, + "CustomerInfo": 96412365, + "PaymentType": "Cash" + }, + { + "Id": 8737, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2017-06-12T08:50:12", + "TransactionId": 7513675, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 631, + "CustomerInfo": 68490004, + "PaymentType": "Credit Card" + }, + { + "Id": 8738, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-02-07T19:28:42", + "TransactionId": 40759366, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 680, + "CustomerInfo": 59565981, + "PaymentType": "Cash" + }, + { + "Id": 8739, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2016-01-29T07:09:42", + "TransactionId": 44613967, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 353, + "CustomerInfo": 1090489, + "PaymentType": "Debit Card" + }, + { + "Id": 8740, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2016-04-02T18:31:15", + "TransactionId": 95056356, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 125, + "CustomerInfo": 13627268, + "PaymentType": "Credit Card" + }, + { + "Id": 8741, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-10-24T13:43:24", + "TransactionId": 7261836, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 339, + "CustomerInfo": 87531212, + "PaymentType": "Credit Card" + }, + { + "Id": 8742, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2017-05-16T10:06:06", + "TransactionId": 71733288, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 66054926, + "PaymentType": "Debit Card" + }, + { + "Id": 8743, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-12-13T08:04:16", + "TransactionId": 66467082, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 603, + "CustomerInfo": 3941388, + "PaymentType": "Credit Card" + }, + { + "Id": 8744, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-03-31T12:26:12", + "TransactionId": 38374058, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 208, + "CustomerInfo": 36143958, + "PaymentType": "Credit Card" + }, + { + "Id": 8745, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-03-29T18:09:56", + "TransactionId": 62186887, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 524, + "CustomerInfo": 54244301, + "PaymentType": "Debit Card" + }, + { + "Id": 8746, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-03-04T18:25:03", + "TransactionId": 50561541, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 710, + "CustomerInfo": 3191265, + "PaymentType": "Cash" + }, + { + "Id": 8747, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2018-07-29T13:47:25", + "TransactionId": 74028135, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 361, + "CustomerInfo": 36366861, + "PaymentType": "Cash" + }, + { + "Id": 8748, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-04-26T19:48:26", + "TransactionId": 34647862, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 262, + "CustomerInfo": 74336689, + "PaymentType": "Credit Card" + }, + { + "Id": 8749, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-08-12T15:59:28", + "TransactionId": 94111065, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 70046865, + "PaymentType": "Credit Card" + }, + { + "Id": 8750, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-03-12T08:54:49", + "TransactionId": 70860896, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 989, + "CustomerInfo": 69328077, + "PaymentType": "Cash" + }, + { + "Id": 8751, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2019-10-11T12:15:33", + "TransactionId": 66616393, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 401, + "CustomerInfo": 39909149, + "PaymentType": "Credit Card" + }, + { + "Id": 8752, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-09-14T15:43:21", + "TransactionId": 8162977, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 32, + "CustomerInfo": 93145721, + "PaymentType": "Debit Card" + }, + { + "Id": 8753, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2016-09-27T16:48:52", + "TransactionId": 61738572, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 401, + "CustomerInfo": 9924757, + "PaymentType": "Debit Card" + }, + { + "Id": 8754, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-08-06T13:23:40", + "TransactionId": 43390348, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 695, + "CustomerInfo": 70047905, + "PaymentType": "Credit Card" + }, + { + "Id": 8755, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2018-11-14T08:29:37", + "TransactionId": 74253599, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 747, + "CustomerInfo": 86270739, + "PaymentType": "Cash" + }, + { + "Id": 8756, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2018-05-04T12:44:04", + "TransactionId": 14244726, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 72, + "CustomerInfo": 44434917, + "PaymentType": "Credit Card" + }, + { + "Id": 8757, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2016-09-06T11:33:48", + "TransactionId": 19407336, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 510, + "CustomerInfo": 34402415, + "PaymentType": "Debit Card" + }, + { + "Id": 8758, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2016-02-19T13:15:27", + "TransactionId": 80442726, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 293, + "CustomerInfo": 76256073, + "PaymentType": "Credit Card" + }, + { + "Id": 8759, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2019-05-06T18:53:00", + "TransactionId": 56588418, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 392, + "CustomerInfo": 67952878, + "PaymentType": "Credit Card" + }, + { + "Id": 8760, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-08-08T19:32:01", + "TransactionId": 37532843, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 136, + "CustomerInfo": 94660997, + "PaymentType": "Debit Card" + }, + { + "Id": 8761, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-10-13T08:54:58", + "TransactionId": 49562801, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 115, + "CustomerInfo": 82605689, + "PaymentType": "Debit Card" + }, + { + "Id": 8762, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-03-16T19:28:34", + "TransactionId": 11500380, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 480, + "CustomerInfo": 19899508, + "PaymentType": "Credit Card" + }, + { + "Id": 8763, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2018-06-13T07:17:11", + "TransactionId": 57938647, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 338, + "CustomerInfo": 22148693, + "PaymentType": "Cash" + }, + { + "Id": 8764, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2017-07-23T08:02:50", + "TransactionId": 61268657, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 267, + "CustomerInfo": 63413090, + "PaymentType": "Cash" + }, + { + "Id": 8765, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2019-03-02T07:59:23", + "TransactionId": 13276975, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 96262104, + "PaymentType": "Cash" + }, + { + "Id": 8766, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2019-02-01T12:08:21", + "TransactionId": 39351460, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 676, + "CustomerInfo": 49826775, + "PaymentType": "Credit Card" + }, + { + "Id": 8767, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2017-05-09T19:10:16", + "TransactionId": 5708880, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 488, + "CustomerInfo": 97258749, + "PaymentType": "Cash" + }, + { + "Id": 8768, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-02-28T19:25:06", + "TransactionId": 52509520, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 863, + "CustomerInfo": 74237448, + "PaymentType": "Cash" + }, + { + "Id": 8769, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-08-07T16:26:24", + "TransactionId": 75592716, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 87563972, + "PaymentType": "Credit Card" + }, + { + "Id": 8770, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-05-15T08:24:43", + "TransactionId": 36258380, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 477, + "CustomerInfo": 59932476, + "PaymentType": "Cash" + }, + { + "Id": 8771, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2016-05-26T14:31:38", + "TransactionId": 36790078, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 763, + "CustomerInfo": 82712125, + "PaymentType": "Cash" + }, + { + "Id": 8772, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2017-04-25T11:02:50", + "TransactionId": 996715, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 742, + "CustomerInfo": 63949151, + "PaymentType": "Cash" + }, + { + "Id": 8773, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2016-01-01T08:14:04", + "TransactionId": 83401883, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 389, + "CustomerInfo": 24913332, + "PaymentType": "Credit Card" + }, + { + "Id": 8774, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-01-05T16:42:06", + "TransactionId": 41710050, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 594, + "CustomerInfo": 30790996, + "PaymentType": "Debit Card" + }, + { + "Id": 8775, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-03-05T14:13:12", + "TransactionId": 21652455, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 823, + "CustomerInfo": 82130257, + "PaymentType": "Cash" + }, + { + "Id": 8776, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2019-04-06T15:53:25", + "TransactionId": 67387771, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 175, + "CustomerInfo": 36320112, + "PaymentType": "Credit Card" + }, + { + "Id": 8777, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-07-25T15:07:29", + "TransactionId": 96870880, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 380, + "CustomerInfo": 10717678, + "PaymentType": "Cash" + }, + { + "Id": 8778, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2016-03-15T07:09:50", + "TransactionId": 13354204, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 731, + "CustomerInfo": 70594591, + "PaymentType": "Cash" + }, + { + "Id": 8779, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2019-04-01T07:11:25", + "TransactionId": 50551485, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 374, + "CustomerInfo": 54615473, + "PaymentType": "Debit Card" + }, + { + "Id": 8780, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2017-12-21T16:02:30", + "TransactionId": 45242389, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 229, + "CustomerInfo": 54608513, + "PaymentType": "Cash" + }, + { + "Id": 8781, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2017-05-16T11:05:08", + "TransactionId": 97216344, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 772, + "CustomerInfo": 22909432, + "PaymentType": "Credit Card" + }, + { + "Id": 8782, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2016-04-23T19:28:08", + "TransactionId": 60407094, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 341, + "CustomerInfo": 7634276, + "PaymentType": "Cash" + }, + { + "Id": 8783, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2016-07-18T07:15:45", + "TransactionId": 61917412, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 437, + "CustomerInfo": 69437494, + "PaymentType": "Credit Card" + }, + { + "Id": 8784, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2018-10-03T14:29:11", + "TransactionId": 96768035, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 359, + "CustomerInfo": 56038434, + "PaymentType": "Credit Card" + }, + { + "Id": 8785, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2018-01-08T18:40:19", + "TransactionId": 26089732, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 275, + "CustomerInfo": 45021886, + "PaymentType": "Debit Card" + }, + { + "Id": 8786, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-06-17T09:53:08", + "TransactionId": 95038009, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 78, + "CustomerInfo": 11489275, + "PaymentType": "Credit Card" + }, + { + "Id": 8787, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2016-08-18T10:54:37", + "TransactionId": 73174009, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 736, + "CustomerInfo": 49649543, + "PaymentType": "Credit Card" + }, + { + "Id": 8788, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2017-10-06T07:54:20", + "TransactionId": 62601137, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 973, + "CustomerInfo": 93357548, + "PaymentType": "Credit Card" + }, + { + "Id": 8789, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2018-02-20T14:57:07", + "TransactionId": 88824098, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 646, + "CustomerInfo": 25627074, + "PaymentType": "Debit Card" + }, + { + "Id": 8790, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2017-02-20T07:28:42", + "TransactionId": 49954070, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 869, + "CustomerInfo": 82477155, + "PaymentType": "Cash" + }, + { + "Id": 8791, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2017-11-30T08:14:38", + "TransactionId": 93041228, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 62, + "CustomerInfo": 18595363, + "PaymentType": "Credit Card" + }, + { + "Id": 8792, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-09-13T18:40:45", + "TransactionId": 66073241, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 851, + "CustomerInfo": 42724219, + "PaymentType": "Credit Card" + }, + { + "Id": 8793, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2017-04-02T12:01:35", + "TransactionId": 86627487, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 805, + "CustomerInfo": 94608047, + "PaymentType": "Debit Card" + }, + { + "Id": 8794, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2016-01-27T14:26:27", + "TransactionId": 86161641, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 9, + "CustomerInfo": 92784149, + "PaymentType": "Credit Card" + }, + { + "Id": 8795, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-10-11T19:06:06", + "TransactionId": 40594403, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 656, + "CustomerInfo": 58180878, + "PaymentType": "Credit Card" + }, + { + "Id": 8796, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-03-12T13:55:55", + "TransactionId": 74252307, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 734, + "CustomerInfo": 37373351, + "PaymentType": "Cash" + }, + { + "Id": 8797, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2017-10-29T07:36:46", + "TransactionId": 83070939, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 716, + "CustomerInfo": 97076302, + "PaymentType": "Debit Card" + }, + { + "Id": 8798, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2017-12-19T12:45:04", + "TransactionId": 42804957, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 405, + "CustomerInfo": 95322076, + "PaymentType": "Cash" + }, + { + "Id": 8799, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2018-04-25T10:34:28", + "TransactionId": 46346541, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 133, + "CustomerInfo": 103405, + "PaymentType": "Debit Card" + }, + { + "Id": 8800, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-04-26T09:02:27", + "TransactionId": 20076671, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 736, + "CustomerInfo": 61167014, + "PaymentType": "Cash" + }, + { + "Id": 8801, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-03-29T13:00:55", + "TransactionId": 21129673, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 508, + "CustomerInfo": 93540435, + "PaymentType": "Debit Card" + }, + { + "Id": 8802, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2016-08-08T14:38:24", + "TransactionId": 71605668, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 737, + "CustomerInfo": 60829364, + "PaymentType": "Credit Card" + }, + { + "Id": 8803, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-04-13T15:37:18", + "TransactionId": 19146554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 845, + "CustomerInfo": 36584235, + "PaymentType": "Cash" + }, + { + "Id": 8804, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2019-06-14T13:23:48", + "TransactionId": 67682531, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 291, + "CustomerInfo": 42923569, + "PaymentType": "Credit Card" + }, + { + "Id": 8805, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2016-03-29T14:41:43", + "TransactionId": 49790067, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 127, + "CustomerInfo": 73954531, + "PaymentType": "Debit Card" + }, + { + "Id": 8806, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-07-13T19:10:42", + "TransactionId": 12995169, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 869, + "CustomerInfo": 47322960, + "PaymentType": "Credit Card" + }, + { + "Id": 8807, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2019-11-14T19:56:12", + "TransactionId": 33783272, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 905, + "CustomerInfo": 64216111, + "PaymentType": "Debit Card" + }, + { + "Id": 8808, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-07-13T14:43:26", + "TransactionId": 38881213, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 936, + "CustomerInfo": 74877654, + "PaymentType": "Cash" + }, + { + "Id": 8809, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2016-07-04T11:12:37", + "TransactionId": 49679713, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 1, + "CustomerInfo": 11187617, + "PaymentType": "Credit Card" + }, + { + "Id": 8810, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-03-31T08:38:33", + "TransactionId": 8691713, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 980, + "CustomerInfo": 12320476, + "PaymentType": "Debit Card" + }, + { + "Id": 8811, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-04-07T09:14:50", + "TransactionId": 72039600, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 831, + "CustomerInfo": 60846698, + "PaymentType": "Debit Card" + }, + { + "Id": 8812, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-02-03T12:52:42", + "TransactionId": 88497188, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 935, + "CustomerInfo": 21250314, + "PaymentType": "Credit Card" + }, + { + "Id": 8813, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-08-17T08:23:17", + "TransactionId": 11408298, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 553, + "CustomerInfo": 88197307, + "PaymentType": "Credit Card" + }, + { + "Id": 8814, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-10-28T18:05:11", + "TransactionId": 14064293, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 632, + "CustomerInfo": 40024075, + "PaymentType": "Debit Card" + }, + { + "Id": 8815, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-04-04T12:14:59", + "TransactionId": 90559729, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 377, + "CustomerInfo": 69649930, + "PaymentType": "Credit Card" + }, + { + "Id": 8816, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-05-08T15:13:49", + "TransactionId": 40459648, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 175, + "CustomerInfo": 49926315, + "PaymentType": "Credit Card" + }, + { + "Id": 8817, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2018-03-09T13:58:48", + "TransactionId": 41128590, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 10, + "CustomerInfo": 59762114, + "PaymentType": "Credit Card" + }, + { + "Id": 8818, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-01-29T16:14:27", + "TransactionId": 89065868, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 616, + "CustomerInfo": 62840952, + "PaymentType": "Debit Card" + }, + { + "Id": 8819, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-10-05T15:46:57", + "TransactionId": 6297010, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 188, + "CustomerInfo": 37785304, + "PaymentType": "Debit Card" + }, + { + "Id": 8820, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-06-01T12:49:24", + "TransactionId": 50138901, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 76587207, + "PaymentType": "Debit Card" + }, + { + "Id": 8821, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2017-07-22T15:04:54", + "TransactionId": 36749536, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 847, + "CustomerInfo": 19890281, + "PaymentType": "Debit Card" + }, + { + "Id": 8822, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-10-15T07:05:31", + "TransactionId": 21503795, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 122, + "CustomerInfo": 89213729, + "PaymentType": "Cash" + }, + { + "Id": 8823, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2019-07-10T07:37:47", + "TransactionId": 62350883, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 160, + "CustomerInfo": 47368344, + "PaymentType": "Debit Card" + }, + { + "Id": 8824, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-01-25T16:37:55", + "TransactionId": 81287450, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 339, + "CustomerInfo": 45012773, + "PaymentType": "Debit Card" + }, + { + "Id": 8825, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2017-12-04T11:38:07", + "TransactionId": 78108642, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 801, + "CustomerInfo": 61657823, + "PaymentType": "Credit Card" + }, + { + "Id": 8826, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2018-12-30T17:42:26", + "TransactionId": 43903135, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 77, + "CustomerInfo": 84770794, + "PaymentType": "Debit Card" + }, + { + "Id": 8827, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2017-05-24T10:26:24", + "TransactionId": 88832074, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 654, + "CustomerInfo": 25134835, + "PaymentType": "Credit Card" + }, + { + "Id": 8828, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2019-09-09T08:11:54", + "TransactionId": 55862652, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 308, + "CustomerInfo": 81225331, + "PaymentType": "Credit Card" + }, + { + "Id": 8829, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2018-10-18T13:02:12", + "TransactionId": 48815457, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 200, + "CustomerInfo": 47150057, + "PaymentType": "Debit Card" + }, + { + "Id": 8830, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2016-03-09T08:05:08", + "TransactionId": 50677393, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 100, + "CustomerInfo": 18628892, + "PaymentType": "Cash" + }, + { + "Id": 8831, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2017-08-21T11:17:40", + "TransactionId": 64128800, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 65, + "CustomerInfo": 32504610, + "PaymentType": "Cash" + }, + { + "Id": 8832, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2016-09-10T19:13:35", + "TransactionId": 53154304, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 183, + "CustomerInfo": 59352019, + "PaymentType": "Cash" + }, + { + "Id": 8833, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-09-15T08:58:08", + "TransactionId": 65904749, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 454, + "CustomerInfo": 52734039, + "PaymentType": "Credit Card" + }, + { + "Id": 8834, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2018-01-27T12:53:00", + "TransactionId": 48656759, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 439, + "CustomerInfo": 446960, + "PaymentType": "Debit Card" + }, + { + "Id": 8835, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2016-06-24T17:00:23", + "TransactionId": 15337940, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 27, + "CustomerInfo": 78630643, + "PaymentType": "Cash" + }, + { + "Id": 8836, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2019-04-18T15:58:36", + "TransactionId": 75529143, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 995, + "CustomerInfo": 79094570, + "PaymentType": "Debit Card" + }, + { + "Id": 8837, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2016-02-15T15:08:21", + "TransactionId": 26821365, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 455, + "CustomerInfo": 64292524, + "PaymentType": "Credit Card" + }, + { + "Id": 8838, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-11-28T18:59:11", + "TransactionId": 36786287, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 654, + "CustomerInfo": 86635316, + "PaymentType": "Credit Card" + }, + { + "Id": 8839, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-05-06T16:31:26", + "TransactionId": 96885668, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 224, + "CustomerInfo": 23650922, + "PaymentType": "Credit Card" + }, + { + "Id": 8840, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2017-11-15T19:12:00", + "TransactionId": 50272064, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 172, + "CustomerInfo": 80922460, + "PaymentType": "Cash" + }, + { + "Id": 8841, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2018-03-07T10:04:57", + "TransactionId": 83052061, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 625, + "CustomerInfo": 79753233, + "PaymentType": "Debit Card" + }, + { + "Id": 8842, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-07-13T19:54:37", + "TransactionId": 48674266, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 557, + "CustomerInfo": 42454582, + "PaymentType": "Debit Card" + }, + { + "Id": 8843, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-03-23T08:48:03", + "TransactionId": 94148364, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 390, + "CustomerInfo": 62569807, + "PaymentType": "Cash" + }, + { + "Id": 8844, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2018-10-19T07:27:33", + "TransactionId": 72811352, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 979, + "CustomerInfo": 55801782, + "PaymentType": "Credit Card" + }, + { + "Id": 8845, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2018-07-16T19:29:43", + "TransactionId": 63766425, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 144, + "CustomerInfo": 53244387, + "PaymentType": "Credit Card" + }, + { + "Id": 8846, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2019-12-16T13:41:05", + "TransactionId": 72368549, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 505, + "CustomerInfo": 19913711, + "PaymentType": "Credit Card" + }, + { + "Id": 8847, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-10-27T08:27:10", + "TransactionId": 9663712, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 606, + "CustomerInfo": 19487394, + "PaymentType": "Cash" + }, + { + "Id": 8848, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2018-02-10T10:42:06", + "TransactionId": 23044517, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 29, + "CustomerInfo": 11065423, + "PaymentType": "Debit Card" + }, + { + "Id": 8849, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2019-10-08T14:28:02", + "TransactionId": 85927203, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 905, + "CustomerInfo": 49626268, + "PaymentType": "Credit Card" + }, + { + "Id": 8850, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2019-07-16T15:01:26", + "TransactionId": 67424684, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 69481145, + "PaymentType": "Cash" + }, + { + "Id": 8851, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2016-11-04T11:37:41", + "TransactionId": 34437010, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 448, + "CustomerInfo": 73872482, + "PaymentType": "Debit Card" + }, + { + "Id": 8852, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-03-23T15:48:40", + "TransactionId": 71467381, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 486, + "CustomerInfo": 85509093, + "PaymentType": "Debit Card" + }, + { + "Id": 8853, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2017-05-18T11:26:18", + "TransactionId": 11854074, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 473, + "CustomerInfo": 76851927, + "PaymentType": "Cash" + }, + { + "Id": 8854, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-03-31T07:55:47", + "TransactionId": 18943640, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 24, + "CustomerInfo": 44210875, + "PaymentType": "Debit Card" + }, + { + "Id": 8855, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2018-04-24T08:40:42", + "TransactionId": 91360859, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 844, + "CustomerInfo": 60549470, + "PaymentType": "Credit Card" + }, + { + "Id": 8856, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2017-04-12T16:15:36", + "TransactionId": 69392847, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 854, + "CustomerInfo": 11285414, + "PaymentType": "Cash" + }, + { + "Id": 8857, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2018-01-31T08:00:40", + "TransactionId": 7332480, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 660, + "CustomerInfo": 38307385, + "PaymentType": "Debit Card" + }, + { + "Id": 8858, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2019-11-11T16:11:34", + "TransactionId": 56728804, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 617, + "CustomerInfo": 41038579, + "PaymentType": "Credit Card" + }, + { + "Id": 8859, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-07-28T13:15:45", + "TransactionId": 23898380, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 842, + "CustomerInfo": 28853644, + "PaymentType": "Debit Card" + }, + { + "Id": 8860, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2019-12-20T08:01:15", + "TransactionId": 48668880, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 519, + "CustomerInfo": 82049262, + "PaymentType": "Cash" + }, + { + "Id": 8861, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-05-07T11:18:58", + "TransactionId": 32435508, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 515, + "CustomerInfo": 38733789, + "PaymentType": "Cash" + }, + { + "Id": 8862, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2018-11-01T15:31:58", + "TransactionId": 40745031, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 210, + "CustomerInfo": 8676182, + "PaymentType": "Debit Card" + }, + { + "Id": 8863, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2018-05-09T15:43:55", + "TransactionId": 46271760, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 163, + "CustomerInfo": 49697553, + "PaymentType": "Credit Card" + }, + { + "Id": 8864, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2019-06-09T13:27:59", + "TransactionId": 25303336, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 661, + "CustomerInfo": 5048701, + "PaymentType": "Cash" + }, + { + "Id": 8865, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-06-28T11:38:41", + "TransactionId": 72681183, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 753, + "CustomerInfo": 64259687, + "PaymentType": "Credit Card" + }, + { + "Id": 8866, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2018-04-04T19:50:53", + "TransactionId": 88758839, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 484, + "CustomerInfo": 12251822, + "PaymentType": "Debit Card" + }, + { + "Id": 8867, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-03-06T17:25:09", + "TransactionId": 35021607, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 639, + "CustomerInfo": 99708176, + "PaymentType": "Cash" + }, + { + "Id": 8868, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-11-24T09:31:06", + "TransactionId": 19440681, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 939, + "CustomerInfo": 39059434, + "PaymentType": "Cash" + }, + { + "Id": 8869, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2016-06-01T14:06:52", + "TransactionId": 36351073, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 131, + "CustomerInfo": 3259723, + "PaymentType": "Credit Card" + }, + { + "Id": 8870, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-08-15T07:05:48", + "TransactionId": 39158711, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 582, + "CustomerInfo": 6310120, + "PaymentType": "Credit Card" + }, + { + "Id": 8871, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2016-09-12T19:20:47", + "TransactionId": 17389047, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 206, + "CustomerInfo": 21922807, + "PaymentType": "Debit Card" + }, + { + "Id": 8872, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2016-06-14T10:53:20", + "TransactionId": 58621939, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 714, + "CustomerInfo": 51367777, + "PaymentType": "Cash" + }, + { + "Id": 8873, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-07-02T18:18:00", + "TransactionId": 49839215, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 942, + "CustomerInfo": 58826223, + "PaymentType": "Credit Card" + }, + { + "Id": 8874, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2017-10-12T18:33:33", + "TransactionId": 50869638, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 833, + "CustomerInfo": 81979373, + "PaymentType": "Credit Card" + }, + { + "Id": 8875, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2017-05-20T17:14:21", + "TransactionId": 67320918, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 889, + "CustomerInfo": 8386329, + "PaymentType": "Cash" + }, + { + "Id": 8876, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2019-03-20T07:57:39", + "TransactionId": 28442534, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 987, + "CustomerInfo": 38605609, + "PaymentType": "Debit Card" + }, + { + "Id": 8877, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2018-10-22T16:46:25", + "TransactionId": 76027432, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 255, + "CustomerInfo": 75784117, + "PaymentType": "Credit Card" + }, + { + "Id": 8878, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-01-14T14:27:27", + "TransactionId": 66971457, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 935, + "CustomerInfo": 40085878, + "PaymentType": "Credit Card" + }, + { + "Id": 8879, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2018-01-06T09:57:01", + "TransactionId": 51188686, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 680, + "CustomerInfo": 55142719, + "PaymentType": "Cash" + }, + { + "Id": 8880, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2018-09-27T16:03:39", + "TransactionId": 98869047, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 535, + "CustomerInfo": 50754557, + "PaymentType": "Cash" + }, + { + "Id": 8881, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2017-09-27T11:34:57", + "TransactionId": 69837960, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 463, + "CustomerInfo": 26751933, + "PaymentType": "Debit Card" + }, + { + "Id": 8882, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-10-05T07:01:55", + "TransactionId": 90425556, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 71609044, + "PaymentType": "Credit Card" + }, + { + "Id": 8883, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-01-05T14:29:46", + "TransactionId": 26939057, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 63791867, + "PaymentType": "Cash" + }, + { + "Id": 8884, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2018-05-26T16:39:04", + "TransactionId": 38949055, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 945, + "CustomerInfo": 40353657, + "PaymentType": "Debit Card" + }, + { + "Id": 8885, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-06-23T15:28:22", + "TransactionId": 19256378, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 187, + "CustomerInfo": 72740091, + "PaymentType": "Credit Card" + }, + { + "Id": 8886, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-11-02T12:06:03", + "TransactionId": 52374160, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 669, + "CustomerInfo": 59976689, + "PaymentType": "Debit Card" + }, + { + "Id": 8887, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2016-01-12T19:43:32", + "TransactionId": 94578491, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 404, + "CustomerInfo": 96012700, + "PaymentType": "Debit Card" + }, + { + "Id": 8888, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-03-11T07:49:44", + "TransactionId": 13252030, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 901, + "CustomerInfo": 89989265, + "PaymentType": "Cash" + }, + { + "Id": 8889, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2018-01-29T11:21:16", + "TransactionId": 56329847, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 1000, + "CustomerInfo": 3888908, + "PaymentType": "Cash" + }, + { + "Id": 8890, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2017-03-22T11:45:53", + "TransactionId": 7630999, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 648, + "CustomerInfo": 66890812, + "PaymentType": "Credit Card" + }, + { + "Id": 8891, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-05-10T19:55:03", + "TransactionId": 46940890, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 849, + "CustomerInfo": 40466291, + "PaymentType": "Credit Card" + }, + { + "Id": 8892, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2016-11-03T17:34:05", + "TransactionId": 10651478, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 689, + "CustomerInfo": 79178953, + "PaymentType": "Debit Card" + }, + { + "Id": 8893, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-06-01T09:37:44", + "TransactionId": 58577263, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 77, + "CustomerInfo": 65656852, + "PaymentType": "Cash" + }, + { + "Id": 8894, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-10-13T09:05:54", + "TransactionId": 35536185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 391, + "CustomerInfo": 79915702, + "PaymentType": "Debit Card" + }, + { + "Id": 8895, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-05-19T07:10:08", + "TransactionId": 26717615, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 994, + "CustomerInfo": 57345096, + "PaymentType": "Credit Card" + }, + { + "Id": 8896, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2019-06-21T15:11:31", + "TransactionId": 35685137, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 834, + "CustomerInfo": 7061076, + "PaymentType": "Cash" + }, + { + "Id": 8897, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2017-06-25T15:18:17", + "TransactionId": 18011041, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 76486152, + "PaymentType": "Credit Card" + }, + { + "Id": 8898, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-05-12T08:23:00", + "TransactionId": 77562183, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 372, + "CustomerInfo": 43454315, + "PaymentType": "Credit Card" + }, + { + "Id": 8899, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2018-06-27T08:35:14", + "TransactionId": 56088542, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 29862563, + "PaymentType": "Credit Card" + }, + { + "Id": 8900, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2017-02-15T11:35:48", + "TransactionId": 80466248, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 760, + "CustomerInfo": 13027329, + "PaymentType": "Debit Card" + }, + { + "Id": 8901, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-04-02T12:32:41", + "TransactionId": 97041870, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 691, + "CustomerInfo": 10543074, + "PaymentType": "Cash" + }, + { + "Id": 8902, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2017-04-11T11:29:28", + "TransactionId": 16474505, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 850, + "CustomerInfo": 81043647, + "PaymentType": "Credit Card" + }, + { + "Id": 8903, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-02-06T10:11:17", + "TransactionId": 71161883, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 871, + "CustomerInfo": 37496857, + "PaymentType": "Cash" + }, + { + "Id": 8904, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2019-12-21T10:44:50", + "TransactionId": 97968994, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 659, + "CustomerInfo": 34659384, + "PaymentType": "Debit Card" + }, + { + "Id": 8905, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-02-21T18:55:26", + "TransactionId": 68549059, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 434, + "CustomerInfo": 60851122, + "PaymentType": "Debit Card" + }, + { + "Id": 8906, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2016-05-08T09:56:44", + "TransactionId": 51679176, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 600, + "CustomerInfo": 37025786, + "PaymentType": "Debit Card" + }, + { + "Id": 8907, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-11-17T07:36:37", + "TransactionId": 11696672, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 40, + "CustomerInfo": 9348133, + "PaymentType": "Credit Card" + }, + { + "Id": 8908, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2018-03-08T12:06:03", + "TransactionId": 53634870, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 849, + "CustomerInfo": 72255616, + "PaymentType": "Debit Card" + }, + { + "Id": 8909, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2016-07-04T12:16:08", + "TransactionId": 23726702, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 220, + "CustomerInfo": 69886838, + "PaymentType": "Cash" + }, + { + "Id": 8910, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-07-12T09:57:53", + "TransactionId": 9329731, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 438, + "CustomerInfo": 70618383, + "PaymentType": "Credit Card" + }, + { + "Id": 8911, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-01-25T10:58:13", + "TransactionId": 91443698, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 13, + "CustomerInfo": 81884141, + "PaymentType": "Credit Card" + }, + { + "Id": 8912, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2019-07-21T19:44:50", + "TransactionId": 62107696, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 89, + "CustomerInfo": 70368378, + "PaymentType": "Debit Card" + }, + { + "Id": 8913, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-10-03T19:32:10", + "TransactionId": 18239358, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 171, + "CustomerInfo": 65230282, + "PaymentType": "Cash" + }, + { + "Id": 8914, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2016-10-24T11:03:07", + "TransactionId": 15722693, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 741, + "CustomerInfo": 20135904, + "PaymentType": "Debit Card" + }, + { + "Id": 8915, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-09-29T18:27:48", + "TransactionId": 18929978, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 767, + "CustomerInfo": 36997785, + "PaymentType": "Credit Card" + }, + { + "Id": 8916, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2019-11-19T19:26:59", + "TransactionId": 55446044, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 810, + "CustomerInfo": 22848038, + "PaymentType": "Credit Card" + }, + { + "Id": 8917, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-02-06T17:58:16", + "TransactionId": 20262099, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 589, + "CustomerInfo": 77946655, + "PaymentType": "Cash" + }, + { + "Id": 8918, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2016-07-11T11:46:02", + "TransactionId": 17846819, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 604, + "CustomerInfo": 93270906, + "PaymentType": "Debit Card" + }, + { + "Id": 8919, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-01-17T12:52:34", + "TransactionId": 96416319, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 764, + "CustomerInfo": 56123118, + "PaymentType": "Debit Card" + }, + { + "Id": 8920, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2016-11-26T12:17:00", + "TransactionId": 42811063, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 857, + "CustomerInfo": 469482, + "PaymentType": "Cash" + }, + { + "Id": 8921, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2017-09-15T13:21:56", + "TransactionId": 72619223, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 453, + "CustomerInfo": 16302051, + "PaymentType": "Credit Card" + }, + { + "Id": 8922, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-06-14T17:29:02", + "TransactionId": 9271888, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 472, + "CustomerInfo": 18815213, + "PaymentType": "Credit Card" + }, + { + "Id": 8923, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2016-06-08T17:04:51", + "TransactionId": 68347046, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 735, + "CustomerInfo": 78460183, + "PaymentType": "Cash" + }, + { + "Id": 8924, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-05-21T18:47:14", + "TransactionId": 97256346, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 187, + "CustomerInfo": 50697575, + "PaymentType": "Debit Card" + }, + { + "Id": 8925, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2018-03-19T19:47:08", + "TransactionId": 81737779, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 256, + "CustomerInfo": 91587677, + "PaymentType": "Credit Card" + }, + { + "Id": 8926, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-08-16T15:25:55", + "TransactionId": 96257633, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 422, + "CustomerInfo": 69723186, + "PaymentType": "Cash" + }, + { + "Id": 8927, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2017-10-15T08:47:54", + "TransactionId": 60130558, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 156, + "CustomerInfo": 62293183, + "PaymentType": "Cash" + }, + { + "Id": 8928, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2018-07-30T17:31:21", + "TransactionId": 29844991, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 749, + "CustomerInfo": 80745093, + "PaymentType": "Debit Card" + }, + { + "Id": 8929, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-07-20T08:30:12", + "TransactionId": 75556401, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 79, + "CustomerInfo": 16581517, + "PaymentType": "Debit Card" + }, + { + "Id": 8930, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-08-08T15:55:35", + "TransactionId": 9739397, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 645, + "CustomerInfo": 89886136, + "PaymentType": "Cash" + }, + { + "Id": 8931, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2017-10-01T09:07:38", + "TransactionId": 8091141, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 666, + "CustomerInfo": 92638770, + "PaymentType": "Credit Card" + }, + { + "Id": 8932, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2018-06-28T10:06:58", + "TransactionId": 58169047, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 793, + "CustomerInfo": 65550188, + "PaymentType": "Credit Card" + }, + { + "Id": 8933, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-07-30T07:53:20", + "TransactionId": 86688712, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 190, + "CustomerInfo": 91013264, + "PaymentType": "Debit Card" + }, + { + "Id": 8934, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2017-10-20T18:26:56", + "TransactionId": 90899725, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 273, + "CustomerInfo": 90311443, + "PaymentType": "Credit Card" + }, + { + "Id": 8935, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2017-02-04T16:56:12", + "TransactionId": 33270138, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 541, + "CustomerInfo": 95665938, + "PaymentType": "Credit Card" + }, + { + "Id": 8936, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2017-01-03T19:37:47", + "TransactionId": 67095023, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 386, + "CustomerInfo": 58459278, + "PaymentType": "Debit Card" + }, + { + "Id": 8937, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-10-16T17:14:30", + "TransactionId": 91963536, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 6, + "CustomerInfo": 54699567, + "PaymentType": "Credit Card" + }, + { + "Id": 8938, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-01-15T11:34:48", + "TransactionId": 6865770, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 409, + "CustomerInfo": 96478003, + "PaymentType": "Cash" + }, + { + "Id": 8939, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2019-11-25T11:25:00", + "TransactionId": 48982785, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 975, + "CustomerInfo": 82127075, + "PaymentType": "Credit Card" + }, + { + "Id": 8940, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2017-12-02T15:10:22", + "TransactionId": 31363519, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 181, + "CustomerInfo": 32109582, + "PaymentType": "Debit Card" + }, + { + "Id": 8941, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-08-08T12:43:29", + "TransactionId": 26942499, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 704, + "CustomerInfo": 86129407, + "PaymentType": "Debit Card" + }, + { + "Id": 8942, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2019-09-13T15:52:42", + "TransactionId": 62756148, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 169, + "CustomerInfo": 95872339, + "PaymentType": "Credit Card" + }, + { + "Id": 8943, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2017-04-17T19:04:05", + "TransactionId": 7462838, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 349, + "CustomerInfo": 25452069, + "PaymentType": "Credit Card" + }, + { + "Id": 8944, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2016-10-18T15:00:52", + "TransactionId": 65332776, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 475, + "CustomerInfo": 99703222, + "PaymentType": "Debit Card" + }, + { + "Id": 8945, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2017-10-27T14:57:50", + "TransactionId": 24906896, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 976, + "CustomerInfo": 50347784, + "PaymentType": "Cash" + }, + { + "Id": 8946, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-10-15T10:31:18", + "TransactionId": 39884629, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 499, + "CustomerInfo": 66899026, + "PaymentType": "Credit Card" + }, + { + "Id": 8947, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2019-07-13T17:35:57", + "TransactionId": 441171, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 904, + "CustomerInfo": 40862028, + "PaymentType": "Debit Card" + }, + { + "Id": 8948, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-07-25T16:34:19", + "TransactionId": 13358741, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 999, + "CustomerInfo": 92043448, + "PaymentType": "Credit Card" + }, + { + "Id": 8949, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-10-25T18:00:52", + "TransactionId": 33376577, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 128, + "CustomerInfo": 64128939, + "PaymentType": "Debit Card" + }, + { + "Id": 8950, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2016-10-11T15:57:45", + "TransactionId": 18363416, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 610, + "CustomerInfo": 78002371, + "PaymentType": "Cash" + }, + { + "Id": 8951, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2017-12-02T17:58:08", + "TransactionId": 7249654, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 52, + "CustomerInfo": 76512997, + "PaymentType": "Credit Card" + }, + { + "Id": 8952, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2016-10-01T17:27:36", + "TransactionId": 91673597, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 101, + "CustomerInfo": 88746582, + "PaymentType": "Cash" + }, + { + "Id": 8953, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-02-17T13:31:35", + "TransactionId": 22880696, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 802, + "CustomerInfo": 35354730, + "PaymentType": "Cash" + }, + { + "Id": 8954, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2018-11-10T16:13:44", + "TransactionId": 60198039, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 163, + "CustomerInfo": 14054859, + "PaymentType": "Cash" + }, + { + "Id": 8955, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-06-13T19:22:39", + "TransactionId": 60396911, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 27332346, + "PaymentType": "Debit Card" + }, + { + "Id": 8956, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2016-01-19T17:48:03", + "TransactionId": 76455453, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 939, + "CustomerInfo": 6714516, + "PaymentType": "Debit Card" + }, + { + "Id": 8957, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2017-11-07T16:09:07", + "TransactionId": 29126861, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 390, + "CustomerInfo": 98827282, + "PaymentType": "Credit Card" + }, + { + "Id": 8958, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-07-12T18:26:56", + "TransactionId": 73008235, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 849, + "CustomerInfo": 90076001, + "PaymentType": "Debit Card" + }, + { + "Id": 8959, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-08-10T09:25:47", + "TransactionId": 69772903, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 294, + "CustomerInfo": 97028210, + "PaymentType": "Debit Card" + }, + { + "Id": 8960, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2017-10-17T12:05:02", + "TransactionId": 63372145, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 639, + "CustomerInfo": 70598247, + "PaymentType": "Credit Card" + }, + { + "Id": 8961, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2017-03-30T08:04:25", + "TransactionId": 48960886, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 512, + "CustomerInfo": 97018642, + "PaymentType": "Cash" + }, + { + "Id": 8962, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2016-05-12T19:50:01", + "TransactionId": 95995654, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 647, + "CustomerInfo": 30554053, + "PaymentType": "Cash" + }, + { + "Id": 8963, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2017-01-05T09:15:33", + "TransactionId": 90190265, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 516, + "CustomerInfo": 85724746, + "PaymentType": "Debit Card" + }, + { + "Id": 8964, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-11-11T14:12:12", + "TransactionId": 42095143, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 473, + "CustomerInfo": 31775129, + "PaymentType": "Cash" + }, + { + "Id": 8965, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-04-07T18:08:12", + "TransactionId": 33616922, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 346, + "CustomerInfo": 61940659, + "PaymentType": "Debit Card" + }, + { + "Id": 8966, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2016-05-10T11:18:49", + "TransactionId": 42404071, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 562, + "CustomerInfo": 64567196, + "PaymentType": "Cash" + }, + { + "Id": 8967, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-09-17T08:20:41", + "TransactionId": 6683313, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 658, + "CustomerInfo": 3458037, + "PaymentType": "Cash" + }, + { + "Id": 8968, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2016-07-25T12:51:50", + "TransactionId": 57806730, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 965, + "CustomerInfo": 24820948, + "PaymentType": "Cash" + }, + { + "Id": 8969, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-05-08T12:00:09", + "TransactionId": 51545724, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 256, + "CustomerInfo": 85172057, + "PaymentType": "Credit Card" + }, + { + "Id": 8970, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2016-01-20T16:15:36", + "TransactionId": 88095791, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 494, + "CustomerInfo": 22162001, + "PaymentType": "Cash" + }, + { + "Id": 8971, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-01-05T08:11:20", + "TransactionId": 2943259, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 312, + "CustomerInfo": 7487544, + "PaymentType": "Credit Card" + }, + { + "Id": 8972, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2018-06-16T12:07:55", + "TransactionId": 89841036, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 379, + "CustomerInfo": 47524371, + "PaymentType": "Debit Card" + }, + { + "Id": 8973, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-04-20T17:08:18", + "TransactionId": 13066389, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 124, + "CustomerInfo": 50899700, + "PaymentType": "Cash" + }, + { + "Id": 8974, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-05-11T18:46:39", + "TransactionId": 19569543, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 13, + "CustomerInfo": 34141793, + "PaymentType": "Cash" + }, + { + "Id": 8975, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-09-23T07:29:25", + "TransactionId": 95123240, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 780, + "CustomerInfo": 46749320, + "PaymentType": "Credit Card" + }, + { + "Id": 8976, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-06-12T13:08:15", + "TransactionId": 5599791, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 210, + "CustomerInfo": 17896783, + "PaymentType": "Cash" + }, + { + "Id": 8977, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-05-28T16:23:40", + "TransactionId": 84008463, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 740, + "CustomerInfo": 12958228, + "PaymentType": "Cash" + }, + { + "Id": 8978, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2017-04-13T17:19:06", + "TransactionId": 54325, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 808, + "CustomerInfo": 55295857, + "PaymentType": "Credit Card" + }, + { + "Id": 8979, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-08-04T11:19:32", + "TransactionId": 20628501, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 29, + "CustomerInfo": 79709977, + "PaymentType": "Debit Card" + }, + { + "Id": 8980, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-02-13T07:18:37", + "TransactionId": 29903680, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 169, + "CustomerInfo": 2944164, + "PaymentType": "Credit Card" + }, + { + "Id": 8981, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2019-05-07T07:46:16", + "TransactionId": 50629310, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 346, + "CustomerInfo": 89239954, + "PaymentType": "Credit Card" + }, + { + "Id": 8982, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2019-11-26T07:10:51", + "TransactionId": 16568132, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 423, + "CustomerInfo": 75131946, + "PaymentType": "Debit Card" + }, + { + "Id": 8983, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2019-06-22T15:25:47", + "TransactionId": 57418576, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 1, + "CustomerInfo": 97387506, + "PaymentType": "Debit Card" + }, + { + "Id": 8984, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2018-11-01T07:15:36", + "TransactionId": 76900506, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 920, + "CustomerInfo": 40009323, + "PaymentType": "Cash" + }, + { + "Id": 8985, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2019-08-08T12:01:26", + "TransactionId": 12947975, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 896, + "CustomerInfo": 87029577, + "PaymentType": "Debit Card" + }, + { + "Id": 8986, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2016-02-12T09:22:11", + "TransactionId": 96337323, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 849, + "CustomerInfo": 39720922, + "PaymentType": "Credit Card" + }, + { + "Id": 8987, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2017-01-05T13:32:10", + "TransactionId": 42894514, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 474, + "CustomerInfo": 8185949, + "PaymentType": "Debit Card" + }, + { + "Id": 8988, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2018-02-22T12:08:38", + "TransactionId": 25417900, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 355, + "CustomerInfo": 54969486, + "PaymentType": "Credit Card" + }, + { + "Id": 8989, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-06-26T15:08:30", + "TransactionId": 17647482, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 545, + "CustomerInfo": 50725613, + "PaymentType": "Cash" + }, + { + "Id": 8990, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2016-10-06T09:53:43", + "TransactionId": 67846397, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 931, + "CustomerInfo": 95440778, + "PaymentType": "Credit Card" + }, + { + "Id": 8991, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-11-17T18:51:42", + "TransactionId": 71656951, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 328, + "CustomerInfo": 61201556, + "PaymentType": "Credit Card" + }, + { + "Id": 8992, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2017-05-23T19:27:33", + "TransactionId": 77970939, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 863, + "CustomerInfo": 45095431, + "PaymentType": "Debit Card" + }, + { + "Id": 8993, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2017-09-20T15:05:11", + "TransactionId": 3491331, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 448, + "CustomerInfo": 19665757, + "PaymentType": "Credit Card" + }, + { + "Id": 8994, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-02-03T18:29:40", + "TransactionId": 21062689, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 949, + "CustomerInfo": 72142952, + "PaymentType": "Debit Card" + }, + { + "Id": 8995, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2019-04-14T09:45:56", + "TransactionId": 30385337, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 634, + "CustomerInfo": 62987871, + "PaymentType": "Debit Card" + }, + { + "Id": 8996, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2019-11-27T16:32:10", + "TransactionId": 56053016, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 843, + "CustomerInfo": 18869835, + "PaymentType": "Debit Card" + }, + { + "Id": 8997, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2016-05-22T10:00:37", + "TransactionId": 45239396, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 624, + "CustomerInfo": 12587788, + "PaymentType": "Credit Card" + }, + { + "Id": 8998, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2018-09-01T15:27:48", + "TransactionId": 62380325, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 626, + "CustomerInfo": 13803084, + "PaymentType": "Cash" + }, + { + "Id": 8999, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-04-20T19:00:37", + "TransactionId": 71128950, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 790, + "CustomerInfo": 39526861, + "PaymentType": "Credit Card" + }, + { + "Id": 9000, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-10-27T08:20:33", + "TransactionId": 44817014, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 258, + "CustomerInfo": 71480730, + "PaymentType": "Debit Card" + }, + { + "Id": 9001, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2016-11-10T16:51:36", + "TransactionId": 19022149, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 519, + "CustomerInfo": 86454258, + "PaymentType": "Debit Card" + }, + { + "Id": 9002, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2016-08-16T15:21:01", + "TransactionId": 1188893, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 759, + "CustomerInfo": 1462517, + "PaymentType": "Debit Card" + }, + { + "Id": 9003, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2016-10-03T11:24:17", + "TransactionId": 20530143, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 719, + "CustomerInfo": 90087372, + "PaymentType": "Debit Card" + }, + { + "Id": 9004, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-09-01T12:25:55", + "TransactionId": 21628, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 498, + "CustomerInfo": 78172626, + "PaymentType": "Cash" + }, + { + "Id": 9005, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2019-01-17T18:54:09", + "TransactionId": 65563988, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 224, + "CustomerInfo": 67091138, + "PaymentType": "Cash" + }, + { + "Id": 9006, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2019-07-03T08:39:07", + "TransactionId": 25364837, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 649, + "CustomerInfo": 57529591, + "PaymentType": "Credit Card" + }, + { + "Id": 9007, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2017-09-26T18:50:24", + "TransactionId": 21432024, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 329, + "CustomerInfo": 44209085, + "PaymentType": "Debit Card" + }, + { + "Id": 9008, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-02-17T13:41:05", + "TransactionId": 57934556, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 313, + "CustomerInfo": 78562903, + "PaymentType": "Credit Card" + }, + { + "Id": 9009, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-11-05T07:07:32", + "TransactionId": 30189523, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 468, + "CustomerInfo": 98124681, + "PaymentType": "Credit Card" + }, + { + "Id": 9010, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-04-17T18:31:32", + "TransactionId": 39082358, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 187, + "CustomerInfo": 8585053, + "PaymentType": "Cash" + }, + { + "Id": 9011, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2018-02-26T07:19:38", + "TransactionId": 91548312, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 649, + "CustomerInfo": 52557541, + "PaymentType": "Cash" + }, + { + "Id": 9012, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2016-05-11T18:18:43", + "TransactionId": 51229853, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 804, + "CustomerInfo": 96907001, + "PaymentType": "Debit Card" + }, + { + "Id": 9013, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2016-11-07T15:48:49", + "TransactionId": 85179765, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 895, + "CustomerInfo": 45241250, + "PaymentType": "Cash" + }, + { + "Id": 9014, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-07-08T15:46:39", + "TransactionId": 2615263, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 579, + "CustomerInfo": 88731407, + "PaymentType": "Debit Card" + }, + { + "Id": 9015, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-12-06T09:55:26", + "TransactionId": 82052774, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 299, + "CustomerInfo": 2386162, + "PaymentType": "Credit Card" + }, + { + "Id": 9016, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-06-06T15:37:00", + "TransactionId": 68804916, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 827, + "CustomerInfo": 43948359, + "PaymentType": "Cash" + }, + { + "Id": 9017, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2017-04-11T18:42:12", + "TransactionId": 9173432, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 836, + "CustomerInfo": 63390343, + "PaymentType": "Debit Card" + }, + { + "Id": 9018, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2019-02-16T15:42:03", + "TransactionId": 70506195, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 18, + "CustomerInfo": 41095815, + "PaymentType": "Debit Card" + }, + { + "Id": 9019, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2017-05-10T09:48:40", + "TransactionId": 68410901, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 526, + "CustomerInfo": 24747403, + "PaymentType": "Cash" + }, + { + "Id": 9020, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2019-02-19T14:30:37", + "TransactionId": 77657658, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 428, + "CustomerInfo": 68811429, + "PaymentType": "Credit Card" + }, + { + "Id": 9021, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-12-13T12:08:04", + "TransactionId": 67762963, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 543, + "CustomerInfo": 45492046, + "PaymentType": "Cash" + }, + { + "Id": 9022, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2018-08-20T10:05:40", + "TransactionId": 32417968, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 859, + "CustomerInfo": 46605537, + "PaymentType": "Cash" + }, + { + "Id": 9023, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-10-19T12:28:31", + "TransactionId": 740813, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 135, + "CustomerInfo": 82568854, + "PaymentType": "Credit Card" + }, + { + "Id": 9024, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2019-12-13T07:03:30", + "TransactionId": 76857860, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 921, + "CustomerInfo": 74828471, + "PaymentType": "Cash" + }, + { + "Id": 9025, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-11-17T18:01:26", + "TransactionId": 97264826, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 960, + "CustomerInfo": 9957747, + "PaymentType": "Credit Card" + }, + { + "Id": 9026, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2017-02-14T07:15:01", + "TransactionId": 42291187, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 968, + "CustomerInfo": 20786366, + "PaymentType": "Credit Card" + }, + { + "Id": 9027, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2017-06-17T17:32:30", + "TransactionId": 13919562, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 191, + "CustomerInfo": 25156153, + "PaymentType": "Debit Card" + }, + { + "Id": 9028, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2017-09-07T14:30:03", + "TransactionId": 20125468, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 550, + "CustomerInfo": 60119743, + "PaymentType": "Cash" + }, + { + "Id": 9029, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-07-21T16:45:07", + "TransactionId": 63006147, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 249, + "CustomerInfo": 79816003, + "PaymentType": "Credit Card" + }, + { + "Id": 9030, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2016-12-18T07:17:37", + "TransactionId": 96197980, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 585, + "CustomerInfo": 91744026, + "PaymentType": "Credit Card" + }, + { + "Id": 9031, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-10-24T12:33:33", + "TransactionId": 45889143, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 1, + "CustomerInfo": 86482437, + "PaymentType": "Debit Card" + }, + { + "Id": 9032, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2018-10-08T10:57:30", + "TransactionId": 42210129, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 754, + "CustomerInfo": 70466199, + "PaymentType": "Cash" + }, + { + "Id": 9033, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2016-10-20T10:11:17", + "TransactionId": 9795040, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 520, + "CustomerInfo": 3412554, + "PaymentType": "Debit Card" + }, + { + "Id": 9034, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-05-23T11:30:46", + "TransactionId": 16486463, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 278, + "CustomerInfo": 13700347, + "PaymentType": "Credit Card" + }, + { + "Id": 9035, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2016-08-09T17:25:18", + "TransactionId": 72781220, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 418, + "CustomerInfo": 2313766, + "PaymentType": "Cash" + }, + { + "Id": 9036, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-03-01T09:15:59", + "TransactionId": 25319780, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 509, + "CustomerInfo": 40628980, + "PaymentType": "Credit Card" + }, + { + "Id": 9037, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2017-02-14T09:24:37", + "TransactionId": 1830572, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 127, + "CustomerInfo": 49254533, + "PaymentType": "Debit Card" + }, + { + "Id": 9038, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-03-08T09:15:16", + "TransactionId": 2707234, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 988, + "CustomerInfo": 24414309, + "PaymentType": "Cash" + }, + { + "Id": 9039, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-09-10T09:54:09", + "TransactionId": 23076800, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 585, + "CustomerInfo": 35925637, + "PaymentType": "Credit Card" + }, + { + "Id": 9040, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-11-18T19:17:02", + "TransactionId": 20514625, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 270, + "CustomerInfo": 64276115, + "PaymentType": "Debit Card" + }, + { + "Id": 9041, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2016-09-25T10:09:42", + "TransactionId": 45215129, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 813, + "CustomerInfo": 48301189, + "PaymentType": "Credit Card" + }, + { + "Id": 9042, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2017-08-03T16:19:03", + "TransactionId": 21188106, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 169, + "CustomerInfo": 17066339, + "PaymentType": "Cash" + }, + { + "Id": 9043, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-07-19T15:20:36", + "TransactionId": 49392051, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 394, + "CustomerInfo": 16776329, + "PaymentType": "Cash" + }, + { + "Id": 9044, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2017-10-13T19:21:13", + "TransactionId": 14788184, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 831, + "CustomerInfo": 51574793, + "PaymentType": "Credit Card" + }, + { + "Id": 9045, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2016-10-12T14:11:02", + "TransactionId": 78880102, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 84, + "CustomerInfo": 37026858, + "PaymentType": "Cash" + }, + { + "Id": 9046, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2018-05-02T11:43:18", + "TransactionId": 67954310, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 988, + "CustomerInfo": 21591700, + "PaymentType": "Credit Card" + }, + { + "Id": 9047, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2017-07-06T16:40:22", + "TransactionId": 69173539, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 3, + "CustomerInfo": 11897298, + "PaymentType": "Debit Card" + }, + { + "Id": 9048, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2019-09-16T16:54:12", + "TransactionId": 96443795, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 747, + "CustomerInfo": 69754135, + "PaymentType": "Cash" + }, + { + "Id": 9049, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2019-06-10T11:28:11", + "TransactionId": 15984355, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 994, + "CustomerInfo": 16611848, + "PaymentType": "Cash" + }, + { + "Id": 9050, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-10-09T17:14:47", + "TransactionId": 91954095, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 634, + "CustomerInfo": 84299741, + "PaymentType": "Credit Card" + }, + { + "Id": 9051, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2019-06-15T07:16:11", + "TransactionId": 37535162, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 770, + "CustomerInfo": 12012099, + "PaymentType": "Debit Card" + }, + { + "Id": 9052, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-11-09T10:08:07", + "TransactionId": 40417901, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 208, + "CustomerInfo": 58555453, + "PaymentType": "Cash" + }, + { + "Id": 9053, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2019-05-09T12:08:12", + "TransactionId": 75559049, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 55703532, + "PaymentType": "Debit Card" + }, + { + "Id": 9054, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2019-11-10T17:33:56", + "TransactionId": 64878715, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 209, + "CustomerInfo": 31457263, + "PaymentType": "Credit Card" + }, + { + "Id": 9055, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-11-27T16:28:34", + "TransactionId": 60682132, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 779, + "CustomerInfo": 50047376, + "PaymentType": "Credit Card" + }, + { + "Id": 9056, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-03-06T18:48:58", + "TransactionId": 51707728, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 193, + "CustomerInfo": 57931802, + "PaymentType": "Credit Card" + }, + { + "Id": 9057, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2017-10-17T10:55:29", + "TransactionId": 74429799, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 770, + "CustomerInfo": 47163990, + "PaymentType": "Cash" + }, + { + "Id": 9058, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2018-03-13T14:57:07", + "TransactionId": 75540488, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 513, + "CustomerInfo": 92461139, + "PaymentType": "Cash" + }, + { + "Id": 9059, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2017-08-03T08:05:51", + "TransactionId": 13122103, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 707, + "CustomerInfo": 95943290, + "PaymentType": "Credit Card" + }, + { + "Id": 9060, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2016-02-20T10:31:52", + "TransactionId": 81475179, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 484, + "CustomerInfo": 97976953, + "PaymentType": "Credit Card" + }, + { + "Id": 9061, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2017-02-09T17:25:00", + "TransactionId": 21716547, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 84, + "CustomerInfo": 81087360, + "PaymentType": "Cash" + }, + { + "Id": 9062, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2016-07-16T10:46:16", + "TransactionId": 88984848, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 689, + "CustomerInfo": 70969452, + "PaymentType": "Debit Card" + }, + { + "Id": 9063, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2017-09-24T12:46:13", + "TransactionId": 28914968, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 587, + "CustomerInfo": 43869016, + "PaymentType": "Debit Card" + }, + { + "Id": 9064, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2016-04-23T16:23:14", + "TransactionId": 6717208, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 854, + "CustomerInfo": 65712792, + "PaymentType": "Credit Card" + }, + { + "Id": 9065, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2019-07-26T17:16:31", + "TransactionId": 149111, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 402, + "CustomerInfo": 30133804, + "PaymentType": "Credit Card" + }, + { + "Id": 9066, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2019-01-07T08:58:42", + "TransactionId": 10215374, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 920, + "CustomerInfo": 86936426, + "PaymentType": "Credit Card" + }, + { + "Id": 9067, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2019-02-28T19:57:39", + "TransactionId": 90561383, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 55, + "CustomerInfo": 89086215, + "PaymentType": "Cash" + }, + { + "Id": 9068, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2018-05-31T09:43:47", + "TransactionId": 53745728, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 22, + "CustomerInfo": 59860230, + "PaymentType": "Debit Card" + }, + { + "Id": 9069, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2017-09-26T12:31:15", + "TransactionId": 32866522, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 100, + "CustomerInfo": 89008786, + "PaymentType": "Cash" + }, + { + "Id": 9070, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2018-03-22T09:21:45", + "TransactionId": 87267913, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 959, + "CustomerInfo": 17074414, + "PaymentType": "Debit Card" + }, + { + "Id": 9071, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-12-13T08:04:16", + "TransactionId": 11395762, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 663, + "CustomerInfo": 57484872, + "PaymentType": "Credit Card" + }, + { + "Id": 9072, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2019-04-15T08:19:24", + "TransactionId": 38712123, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 941, + "CustomerInfo": 13585421, + "PaymentType": "Credit Card" + }, + { + "Id": 9073, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-04-25T09:16:42", + "TransactionId": 55469763, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 624, + "CustomerInfo": 50238234, + "PaymentType": "Credit Card" + }, + { + "Id": 9074, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-02-13T09:38:27", + "TransactionId": 59184285, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 17, + "CustomerInfo": 38893202, + "PaymentType": "Credit Card" + }, + { + "Id": 9075, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-11-26T14:40:51", + "TransactionId": 69095032, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 625, + "CustomerInfo": 58375096, + "PaymentType": "Cash" + }, + { + "Id": 9076, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-08-09T10:45:33", + "TransactionId": 99324877, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 616, + "CustomerInfo": 48175507, + "PaymentType": "Debit Card" + }, + { + "Id": 9077, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2019-05-01T11:09:27", + "TransactionId": 82916543, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 998, + "CustomerInfo": 18664765, + "PaymentType": "Debit Card" + }, + { + "Id": 9078, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2016-12-31T11:46:28", + "TransactionId": 53509947, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 61155808, + "PaymentType": "Cash" + }, + { + "Id": 9079, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-06-01T16:51:27", + "TransactionId": 87588434, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 497, + "CustomerInfo": 21874689, + "PaymentType": "Debit Card" + }, + { + "Id": 9080, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2019-09-03T16:53:54", + "TransactionId": 43032903, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 54, + "CustomerInfo": 22315480, + "PaymentType": "Cash" + }, + { + "Id": 9081, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2019-07-11T11:17:31", + "TransactionId": 44289141, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 529, + "CustomerInfo": 72671438, + "PaymentType": "Credit Card" + }, + { + "Id": 9082, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-11-07T09:57:53", + "TransactionId": 55847582, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 606, + "CustomerInfo": 93984920, + "PaymentType": "Debit Card" + }, + { + "Id": 9083, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-04-22T12:03:27", + "TransactionId": 94178700, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 110, + "CustomerInfo": 18445910, + "PaymentType": "Cash" + }, + { + "Id": 9084, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2019-11-28T15:45:39", + "TransactionId": 69518735, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 682, + "CustomerInfo": 48241501, + "PaymentType": "Credit Card" + }, + { + "Id": 9085, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-03-03T18:43:47", + "TransactionId": 54009492, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 874, + "CustomerInfo": 57154476, + "PaymentType": "Debit Card" + }, + { + "Id": 9086, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2017-01-31T18:10:31", + "TransactionId": 25393521, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 389, + "CustomerInfo": 52073461, + "PaymentType": "Credit Card" + }, + { + "Id": 9087, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2019-05-28T07:47:08", + "TransactionId": 12797319, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 101, + "CustomerInfo": 94608628, + "PaymentType": "Credit Card" + }, + { + "Id": 9088, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-03-13T17:17:23", + "TransactionId": 437099, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 600, + "CustomerInfo": 90266681, + "PaymentType": "Debit Card" + }, + { + "Id": 9089, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-11-15T17:16:13", + "TransactionId": 90905996, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 46, + "CustomerInfo": 93395602, + "PaymentType": "Debit Card" + }, + { + "Id": 9090, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2019-01-15T13:21:56", + "TransactionId": 98801739, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 496, + "CustomerInfo": 97505867, + "PaymentType": "Cash" + }, + { + "Id": 9091, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-08-28T13:14:27", + "TransactionId": 80030791, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 204, + "CustomerInfo": 85868954, + "PaymentType": "Credit Card" + }, + { + "Id": 9092, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-11-20T11:11:20", + "TransactionId": 81531738, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 576, + "CustomerInfo": 88357215, + "PaymentType": "Debit Card" + }, + { + "Id": 9093, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-11-26T07:32:01", + "TransactionId": 54300583, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 663, + "CustomerInfo": 95687645, + "PaymentType": "Cash" + }, + { + "Id": 9094, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-10-27T16:25:49", + "TransactionId": 29034619, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 924, + "CustomerInfo": 26414377, + "PaymentType": "Cash" + }, + { + "Id": 9095, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-09-20T18:36:35", + "TransactionId": 20272468, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 622, + "CustomerInfo": 13660520, + "PaymentType": "Debit Card" + }, + { + "Id": 9096, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2016-02-21T16:36:37", + "TransactionId": 53181218, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 613, + "CustomerInfo": 62329097, + "PaymentType": "Credit Card" + }, + { + "Id": 9097, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-04-21T13:01:47", + "TransactionId": 64702942, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 784, + "CustomerInfo": 80671423, + "PaymentType": "Credit Card" + }, + { + "Id": 9098, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2017-10-14T08:30:20", + "TransactionId": 99563756, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 266, + "CustomerInfo": 42683149, + "PaymentType": "Debit Card" + }, + { + "Id": 9099, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-05-06T15:46:57", + "TransactionId": 4807373, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 916, + "CustomerInfo": 28694130, + "PaymentType": "Cash" + }, + { + "Id": 9100, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2019-10-09T09:04:02", + "TransactionId": 93880749, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 522, + "CustomerInfo": 6454116, + "PaymentType": "Cash" + }, + { + "Id": 9101, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-08-19T09:21:10", + "TransactionId": 21223904, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 553, + "CustomerInfo": 28240351, + "PaymentType": "Cash" + }, + { + "Id": 9102, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-08-20T16:07:58", + "TransactionId": 94409349, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 475, + "CustomerInfo": 66737024, + "PaymentType": "Credit Card" + }, + { + "Id": 9103, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2019-10-14T17:59:34", + "TransactionId": 82084686, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 831, + "CustomerInfo": 68197722, + "PaymentType": "Credit Card" + }, + { + "Id": 9104, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2016-06-25T14:35:57", + "TransactionId": 78793062, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 61, + "CustomerInfo": 8564997, + "PaymentType": "Credit Card" + }, + { + "Id": 9105, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-03-08T08:02:41", + "TransactionId": 25442980, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 849, + "CustomerInfo": 71844837, + "PaymentType": "Cash" + }, + { + "Id": 9106, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2017-05-01T07:12:17", + "TransactionId": 52659879, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 217, + "CustomerInfo": 47384427, + "PaymentType": "Debit Card" + }, + { + "Id": 9107, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2017-02-22T15:35:43", + "TransactionId": 83575154, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 16291761, + "PaymentType": "Debit Card" + }, + { + "Id": 9108, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-02-15T07:07:06", + "TransactionId": 53211340, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 429, + "CustomerInfo": 31023369, + "PaymentType": "Cash" + }, + { + "Id": 9109, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2019-12-06T11:30:20", + "TransactionId": 61025471, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 344, + "CustomerInfo": 85398810, + "PaymentType": "Credit Card" + }, + { + "Id": 9110, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-02-11T19:11:00", + "TransactionId": 88695703, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 568, + "CustomerInfo": 92861265, + "PaymentType": "Credit Card" + }, + { + "Id": 9111, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-05-12T17:56:33", + "TransactionId": 47826906, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 45596140, + "PaymentType": "Debit Card" + }, + { + "Id": 9112, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2018-03-24T08:16:57", + "TransactionId": 87208953, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 883, + "CustomerInfo": 90527902, + "PaymentType": "Cash" + }, + { + "Id": 9113, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-03-23T14:50:38", + "TransactionId": 50351439, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 383, + "CustomerInfo": 24653165, + "PaymentType": "Credit Card" + }, + { + "Id": 9114, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2016-02-20T17:36:14", + "TransactionId": 2134763, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 27, + "CustomerInfo": 96078745, + "PaymentType": "Credit Card" + }, + { + "Id": 9115, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-10-21T08:24:09", + "TransactionId": 90241073, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 942, + "CustomerInfo": 79377658, + "PaymentType": "Debit Card" + }, + { + "Id": 9116, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-01-04T07:35:02", + "TransactionId": 81971311, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 670, + "CustomerInfo": 32218484, + "PaymentType": "Cash" + }, + { + "Id": 9117, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-12-18T13:34:36", + "TransactionId": 86745903, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 549, + "CustomerInfo": 91994692, + "PaymentType": "Debit Card" + }, + { + "Id": 9118, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2016-10-03T08:52:31", + "TransactionId": 47006794, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 248, + "CustomerInfo": 37309024, + "PaymentType": "Debit Card" + }, + { + "Id": 9119, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2019-06-16T12:30:14", + "TransactionId": 44591426, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 335, + "CustomerInfo": 72456439, + "PaymentType": "Cash" + }, + { + "Id": 9120, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-04-18T10:57:13", + "TransactionId": 71550464, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 385, + "CustomerInfo": 39892899, + "PaymentType": "Debit Card" + }, + { + "Id": 9121, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-08-06T14:19:15", + "TransactionId": 55557740, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 748, + "CustomerInfo": 46586506, + "PaymentType": "Debit Card" + }, + { + "Id": 9122, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2018-12-24T10:02:21", + "TransactionId": 86437143, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 969, + "CustomerInfo": 68979766, + "PaymentType": "Credit Card" + }, + { + "Id": 9123, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-04-26T07:23:57", + "TransactionId": 46972755, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 185, + "CustomerInfo": 14749672, + "PaymentType": "Debit Card" + }, + { + "Id": 9124, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2017-04-20T11:11:11", + "TransactionId": 37622938, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 185, + "CustomerInfo": 19443988, + "PaymentType": "Debit Card" + }, + { + "Id": 9125, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-04-17T07:36:29", + "TransactionId": 58464439, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 954, + "CustomerInfo": 75314610, + "PaymentType": "Credit Card" + }, + { + "Id": 9126, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2017-08-04T10:28:42", + "TransactionId": 82155304, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 828, + "CustomerInfo": 89969365, + "PaymentType": "Credit Card" + }, + { + "Id": 9127, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2017-05-30T14:33:30", + "TransactionId": 11385946, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 286, + "CustomerInfo": 14811423, + "PaymentType": "Cash" + }, + { + "Id": 9128, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2019-02-15T17:45:19", + "TransactionId": 16666821, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 919, + "CustomerInfo": 34651091, + "PaymentType": "Debit Card" + }, + { + "Id": 9129, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-01-31T08:47:02", + "TransactionId": 35444728, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 661, + "CustomerInfo": 24816357, + "PaymentType": "Cash" + }, + { + "Id": 9130, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2016-12-27T12:46:31", + "TransactionId": 55565341, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 766, + "CustomerInfo": 7350923, + "PaymentType": "Credit Card" + }, + { + "Id": 9131, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-06-03T19:27:59", + "TransactionId": 44929956, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 356, + "CustomerInfo": 32540714, + "PaymentType": "Debit Card" + }, + { + "Id": 9132, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-03-12T09:32:33", + "TransactionId": 56338969, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 43214198, + "PaymentType": "Credit Card" + }, + { + "Id": 9133, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-11-10T18:32:15", + "TransactionId": 57231131, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 270, + "CustomerInfo": 99025301, + "PaymentType": "Debit Card" + }, + { + "Id": 9134, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-09-04T16:37:29", + "TransactionId": 38115831, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 547, + "CustomerInfo": 20015894, + "PaymentType": "Credit Card" + }, + { + "Id": 9135, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2016-12-14T09:11:48", + "TransactionId": 69521007, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 489, + "CustomerInfo": 33212551, + "PaymentType": "Credit Card" + }, + { + "Id": 9136, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2016-10-30T15:18:43", + "TransactionId": 51559391, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 385, + "CustomerInfo": 32652784, + "PaymentType": "Credit Card" + }, + { + "Id": 9137, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-01-15T10:03:22", + "TransactionId": 47027737, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 313, + "CustomerInfo": 68281801, + "PaymentType": "Credit Card" + }, + { + "Id": 9138, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2018-08-09T19:48:09", + "TransactionId": 3617452, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 697, + "CustomerInfo": 51582655, + "PaymentType": "Cash" + }, + { + "Id": 9139, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2018-06-12T11:48:46", + "TransactionId": 18979003, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 846, + "CustomerInfo": 97716323, + "PaymentType": "Cash" + }, + { + "Id": 9140, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2017-12-07T18:18:43", + "TransactionId": 15933557, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 355, + "CustomerInfo": 30115876, + "PaymentType": "Cash" + }, + { + "Id": 9141, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2018-01-01T17:08:44", + "TransactionId": 51009461, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 438, + "CustomerInfo": 1340361, + "PaymentType": "Credit Card" + }, + { + "Id": 9142, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-08-13T11:21:50", + "TransactionId": 54104366, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 743, + "CustomerInfo": 58901979, + "PaymentType": "Debit Card" + }, + { + "Id": 9143, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-05-03T16:08:41", + "TransactionId": 2488861, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 369, + "CustomerInfo": 94230435, + "PaymentType": "Cash" + }, + { + "Id": 9144, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2016-08-23T08:28:28", + "TransactionId": 30789186, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 105, + "CustomerInfo": 78516614, + "PaymentType": "Debit Card" + }, + { + "Id": 9145, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-02-17T10:53:37", + "TransactionId": 53129022, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 763, + "CustomerInfo": 3913482, + "PaymentType": "Debit Card" + }, + { + "Id": 9146, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2018-05-18T19:34:11", + "TransactionId": 61587221, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 35, + "CustomerInfo": 30963462, + "PaymentType": "Cash" + }, + { + "Id": 9147, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-02-16T11:52:48", + "TransactionId": 53270506, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 981, + "CustomerInfo": 45246499, + "PaymentType": "Cash" + }, + { + "Id": 9148, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2017-09-03T18:17:25", + "TransactionId": 33792533, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 754, + "CustomerInfo": 87815758, + "PaymentType": "Debit Card" + }, + { + "Id": 9149, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2018-01-12T10:33:19", + "TransactionId": 36479704, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 449, + "CustomerInfo": 38990207, + "PaymentType": "Credit Card" + }, + { + "Id": 9150, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-12-08T17:31:47", + "TransactionId": 96181753, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 260, + "CustomerInfo": 13254805, + "PaymentType": "Cash" + }, + { + "Id": 9151, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2018-05-20T10:05:05", + "TransactionId": 98530681, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 529, + "CustomerInfo": 47655712, + "PaymentType": "Cash" + }, + { + "Id": 9152, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-11-08T09:21:53", + "TransactionId": 50345, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 875, + "CustomerInfo": 99958187, + "PaymentType": "Cash" + }, + { + "Id": 9153, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2016-01-18T07:47:43", + "TransactionId": 58287590, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 827, + "CustomerInfo": 8171791, + "PaymentType": "Credit Card" + }, + { + "Id": 9154, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2018-03-10T13:28:25", + "TransactionId": 87408288, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 241, + "CustomerInfo": 72991996, + "PaymentType": "Cash" + }, + { + "Id": 9155, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2017-11-13T14:58:16", + "TransactionId": 40292883, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 469, + "CustomerInfo": 39216869, + "PaymentType": "Debit Card" + }, + { + "Id": 9156, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2016-04-12T12:47:05", + "TransactionId": 5736731, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 54, + "CustomerInfo": 34619935, + "PaymentType": "Debit Card" + }, + { + "Id": 9157, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2019-12-30T10:55:29", + "TransactionId": 58871196, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 613, + "CustomerInfo": 54820951, + "PaymentType": "Credit Card" + }, + { + "Id": 9158, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-08-07T16:58:22", + "TransactionId": 22151844, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 385, + "CustomerInfo": 7775716, + "PaymentType": "Credit Card" + }, + { + "Id": 9159, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2018-05-29T18:01:09", + "TransactionId": 7036961, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 480, + "CustomerInfo": 12723631, + "PaymentType": "Debit Card" + }, + { + "Id": 9160, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2017-11-25T08:19:24", + "TransactionId": 12653722, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 769, + "CustomerInfo": 67165583, + "PaymentType": "Credit Card" + }, + { + "Id": 9161, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-05-12T09:25:38", + "TransactionId": 32552397, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 433, + "CustomerInfo": 42664147, + "PaymentType": "Debit Card" + }, + { + "Id": 9162, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-11-09T09:43:47", + "TransactionId": 11116483, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 553, + "CustomerInfo": 69199135, + "PaymentType": "Credit Card" + }, + { + "Id": 9163, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2017-03-27T09:36:52", + "TransactionId": 97464028, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 469, + "CustomerInfo": 59346377, + "PaymentType": "Credit Card" + }, + { + "Id": 9164, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2016-12-11T12:54:00", + "TransactionId": 894402, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 602, + "CustomerInfo": 68953176, + "PaymentType": "Cash" + }, + { + "Id": 9165, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2019-08-13T10:15:19", + "TransactionId": 70837236, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 331, + "CustomerInfo": 60015500, + "PaymentType": "Credit Card" + }, + { + "Id": 9166, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-02-15T10:51:53", + "TransactionId": 74130089, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 932, + "CustomerInfo": 85386667, + "PaymentType": "Debit Card" + }, + { + "Id": 9167, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-04-06T13:36:03", + "TransactionId": 97410274, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 48, + "CustomerInfo": 38202517, + "PaymentType": "Cash" + }, + { + "Id": 9168, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2016-03-16T16:43:32", + "TransactionId": 85381283, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 319, + "CustomerInfo": 44619049, + "PaymentType": "Debit Card" + }, + { + "Id": 9169, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2019-07-12T18:14:24", + "TransactionId": 60424349, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 333, + "CustomerInfo": 23083035, + "PaymentType": "Debit Card" + }, + { + "Id": 9170, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2019-07-28T12:01:44", + "TransactionId": 9822456, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 204, + "CustomerInfo": 51030335, + "PaymentType": "Credit Card" + }, + { + "Id": 9171, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2018-02-28T19:16:54", + "TransactionId": 8133586, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 817, + "CustomerInfo": 25374779, + "PaymentType": "Debit Card" + }, + { + "Id": 9172, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-09-24T16:14:53", + "TransactionId": 23394535, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 210, + "CustomerInfo": 40175286, + "PaymentType": "Cash" + }, + { + "Id": 9173, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2017-12-26T09:26:21", + "TransactionId": 78995345, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 756, + "CustomerInfo": 82036623, + "PaymentType": "Debit Card" + }, + { + "Id": 9174, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2019-05-13T18:57:19", + "TransactionId": 64680451, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 344, + "CustomerInfo": 94447053, + "PaymentType": "Cash" + }, + { + "Id": 9175, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2018-04-18T15:28:13", + "TransactionId": 68702613, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 809, + "CustomerInfo": 21586191, + "PaymentType": "Debit Card" + }, + { + "Id": 9176, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2016-02-16T19:30:52", + "TransactionId": 8223143, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 341, + "CustomerInfo": 97034014, + "PaymentType": "Credit Card" + }, + { + "Id": 9177, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2017-11-21T08:39:59", + "TransactionId": 66329451, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 938, + "CustomerInfo": 20073249, + "PaymentType": "Credit Card" + }, + { + "Id": 9178, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2017-02-08T07:56:04", + "TransactionId": 52636044, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 46, + "CustomerInfo": 31578194, + "PaymentType": "Cash" + }, + { + "Id": 9179, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2018-05-10T10:54:03", + "TransactionId": 86684852, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 92, + "CustomerInfo": 79468881, + "PaymentType": "Credit Card" + }, + { + "Id": 9180, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2016-10-16T07:44:41", + "TransactionId": 36284616, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 956, + "CustomerInfo": 9728863, + "PaymentType": "Cash" + }, + { + "Id": 9181, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-06-07T17:47:02", + "TransactionId": 27753004, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 19, + "CustomerInfo": 34986138, + "PaymentType": "Debit Card" + }, + { + "Id": 9182, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2016-05-18T10:23:48", + "TransactionId": 99422873, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 480, + "CustomerInfo": 32227503, + "PaymentType": "Credit Card" + }, + { + "Id": 9183, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-03-28T08:27:36", + "TransactionId": 55222386, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 700, + "CustomerInfo": 21607157, + "PaymentType": "Debit Card" + }, + { + "Id": 9184, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2017-01-16T19:34:11", + "TransactionId": 16042844, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 764, + "CustomerInfo": 42051033, + "PaymentType": "Cash" + }, + { + "Id": 9185, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-02-23T19:01:47", + "TransactionId": 69114840, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 44, + "CustomerInfo": 19133876, + "PaymentType": "Credit Card" + }, + { + "Id": 9186, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-04-11T14:01:49", + "TransactionId": 46435554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 213, + "CustomerInfo": 85975862, + "PaymentType": "Debit Card" + }, + { + "Id": 9187, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2019-10-08T09:31:58", + "TransactionId": 55929892, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 701, + "CustomerInfo": 96477472, + "PaymentType": "Credit Card" + }, + { + "Id": 9188, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-06-18T10:20:30", + "TransactionId": 15212070, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 980, + "CustomerInfo": 33073691, + "PaymentType": "Credit Card" + }, + { + "Id": 9189, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-08-02T07:07:41", + "TransactionId": 84287138, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 36, + "CustomerInfo": 89239001, + "PaymentType": "Credit Card" + }, + { + "Id": 9190, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2017-11-24T10:11:51", + "TransactionId": 12348687, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 177, + "CustomerInfo": 94836838, + "PaymentType": "Cash" + }, + { + "Id": 9191, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2016-06-29T08:25:44", + "TransactionId": 92786644, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 221, + "CustomerInfo": 91136194, + "PaymentType": "Cash" + }, + { + "Id": 9192, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2018-12-27T15:39:19", + "TransactionId": 24200360, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 739, + "CustomerInfo": 78716552, + "PaymentType": "Credit Card" + }, + { + "Id": 9193, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2018-06-06T14:22:08", + "TransactionId": 95042003, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 775, + "CustomerInfo": 46838314, + "PaymentType": "Debit Card" + }, + { + "Id": 9194, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2018-06-23T14:31:03", + "TransactionId": 57316563, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 471, + "CustomerInfo": 65773783, + "PaymentType": "Credit Card" + }, + { + "Id": 9195, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-02-27T07:17:28", + "TransactionId": 44238472, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 458, + "CustomerInfo": 44060101, + "PaymentType": "Credit Card" + }, + { + "Id": 9196, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2017-04-22T14:20:59", + "TransactionId": 88744256, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 568, + "CustomerInfo": 89639848, + "PaymentType": "Cash" + }, + { + "Id": 9197, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2019-08-13T19:11:25", + "TransactionId": 66868266, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 974, + "CustomerInfo": 45823979, + "PaymentType": "Cash" + }, + { + "Id": 9198, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-10-23T08:20:50", + "TransactionId": 95919200, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 67900652, + "PaymentType": "Credit Card" + }, + { + "Id": 9199, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2017-10-01T08:50:30", + "TransactionId": 47335929, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 797, + "CustomerInfo": 44321766, + "PaymentType": "Debit Card" + }, + { + "Id": 9200, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-06-18T19:10:42", + "TransactionId": 73927717, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 467, + "CustomerInfo": 58438422, + "PaymentType": "Cash" + }, + { + "Id": 9201, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-07-19T17:51:22", + "TransactionId": 26667767, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 67, + "CustomerInfo": 32227782, + "PaymentType": "Debit Card" + }, + { + "Id": 9202, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2017-09-20T14:53:31", + "TransactionId": 33992973, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 7, + "CustomerInfo": 18238364, + "PaymentType": "Credit Card" + }, + { + "Id": 9203, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2018-10-24T17:57:16", + "TransactionId": 71007767, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 514, + "CustomerInfo": 23301041, + "PaymentType": "Credit Card" + }, + { + "Id": 9204, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2018-09-26T15:54:26", + "TransactionId": 50963026, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 580, + "CustomerInfo": 30025184, + "PaymentType": "Debit Card" + }, + { + "Id": 9205, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-09-10T12:13:58", + "TransactionId": 56108621, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 638, + "CustomerInfo": 19612563, + "PaymentType": "Debit Card" + }, + { + "Id": 9206, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2019-09-10T14:24:52", + "TransactionId": 53456097, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 238, + "CustomerInfo": 75722588, + "PaymentType": "Cash" + }, + { + "Id": 9207, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2016-12-07T10:50:01", + "TransactionId": 51946473, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 546, + "CustomerInfo": 52184080, + "PaymentType": "Debit Card" + }, + { + "Id": 9208, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-04-03T18:32:15", + "TransactionId": 49961322, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 143, + "CustomerInfo": 52576080, + "PaymentType": "Cash" + }, + { + "Id": 9209, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-07-15T13:08:50", + "TransactionId": 97474041, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 443, + "CustomerInfo": 71324295, + "PaymentType": "Debit Card" + }, + { + "Id": 9210, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-06-23T08:00:49", + "TransactionId": 87707419, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 289, + "CustomerInfo": 48263124, + "PaymentType": "Debit Card" + }, + { + "Id": 9211, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2016-12-06T12:28:39", + "TransactionId": 6371208, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 791, + "CustomerInfo": 65208133, + "PaymentType": "Credit Card" + }, + { + "Id": 9212, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2018-01-27T08:24:35", + "TransactionId": 74767058, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 24, + "CustomerInfo": 81462318, + "PaymentType": "Debit Card" + }, + { + "Id": 9213, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2019-09-17T12:05:46", + "TransactionId": 81236169, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 590, + "CustomerInfo": 17515682, + "PaymentType": "Credit Card" + }, + { + "Id": 9214, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2017-02-09T18:20:18", + "TransactionId": 54361178, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 826, + "CustomerInfo": 829301, + "PaymentType": "Debit Card" + }, + { + "Id": 9215, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2018-01-11T08:22:08", + "TransactionId": 55062557, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 651, + "CustomerInfo": 82310349, + "PaymentType": "Debit Card" + }, + { + "Id": 9216, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2017-01-13T17:01:15", + "TransactionId": 46780837, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 303, + "CustomerInfo": 34589515, + "PaymentType": "Debit Card" + }, + { + "Id": 9217, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-01-11T07:59:57", + "TransactionId": 9372817, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 423, + "CustomerInfo": 92790470, + "PaymentType": "Credit Card" + }, + { + "Id": 9218, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-09-22T08:00:14", + "TransactionId": 59215758, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 162, + "CustomerInfo": 78117295, + "PaymentType": "Debit Card" + }, + { + "Id": 9219, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2016-02-04T15:24:03", + "TransactionId": 2752950, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 824, + "CustomerInfo": 50097547, + "PaymentType": "Debit Card" + }, + { + "Id": 9220, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2018-03-26T11:21:33", + "TransactionId": 70189973, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 596, + "CustomerInfo": 72647762, + "PaymentType": "Credit Card" + }, + { + "Id": 9221, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-05-21T08:17:31", + "TransactionId": 25768786, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 121, + "CustomerInfo": 67655708, + "PaymentType": "Cash" + }, + { + "Id": 9222, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2016-11-27T14:55:49", + "TransactionId": 34854498, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 668, + "CustomerInfo": 8725003, + "PaymentType": "Credit Card" + }, + { + "Id": 9223, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-11-17T10:44:41", + "TransactionId": 95317459, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 533, + "CustomerInfo": 78575136, + "PaymentType": "Credit Card" + }, + { + "Id": 9224, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2016-02-24T09:59:54", + "TransactionId": 3952063, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 596, + "CustomerInfo": 80168416, + "PaymentType": "Cash" + }, + { + "Id": 9225, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-04-28T17:10:54", + "TransactionId": 89231462, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 635, + "CustomerInfo": 12069271, + "PaymentType": "Credit Card" + }, + { + "Id": 9226, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2018-02-11T15:10:48", + "TransactionId": 43170192, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 865, + "CustomerInfo": 15549430, + "PaymentType": "Cash" + }, + { + "Id": 9227, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-08-30T09:52:16", + "TransactionId": 91103564, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 288, + "CustomerInfo": 59514997, + "PaymentType": "Cash" + }, + { + "Id": 9228, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-04-04T10:33:27", + "TransactionId": 3292160, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 752, + "CustomerInfo": 78188060, + "PaymentType": "Debit Card" + }, + { + "Id": 9229, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-07-14T17:48:12", + "TransactionId": 31966483, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 357, + "CustomerInfo": 53932627, + "PaymentType": "Credit Card" + }, + { + "Id": 9230, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-03-12T14:59:51", + "TransactionId": 8894042, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 95443725, + "PaymentType": "Cash" + }, + { + "Id": 9231, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-06-07T19:04:57", + "TransactionId": 80757509, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 909, + "CustomerInfo": 68810208, + "PaymentType": "Debit Card" + }, + { + "Id": 9232, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2018-03-01T11:11:46", + "TransactionId": 61977290, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 997, + "CustomerInfo": 72798818, + "PaymentType": "Cash" + }, + { + "Id": 9233, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2017-01-27T12:42:12", + "TransactionId": 23774211, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 43, + "CustomerInfo": 40138181, + "PaymentType": "Debit Card" + }, + { + "Id": 9234, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2018-04-11T09:06:37", + "TransactionId": 38844786, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 181, + "CustomerInfo": 67883050, + "PaymentType": "Cash" + }, + { + "Id": 9235, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-03-21T12:56:27", + "TransactionId": 52610421, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 602, + "CustomerInfo": 92297790, + "PaymentType": "Debit Card" + }, + { + "Id": 9236, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-03-22T17:41:43", + "TransactionId": 66059685, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 513, + "CustomerInfo": 30793314, + "PaymentType": "Credit Card" + }, + { + "Id": 9237, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2018-04-19T08:10:36", + "TransactionId": 12688023, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 691, + "CustomerInfo": 66412618, + "PaymentType": "Cash" + }, + { + "Id": 9238, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-11-08T12:14:24", + "TransactionId": 73961332, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 347, + "CustomerInfo": 67654247, + "PaymentType": "Debit Card" + }, + { + "Id": 9239, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2017-12-22T17:47:54", + "TransactionId": 22274369, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 639, + "CustomerInfo": 41477639, + "PaymentType": "Credit Card" + }, + { + "Id": 9240, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-04-10T16:00:03", + "TransactionId": 35094186, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 133, + "CustomerInfo": 92876056, + "PaymentType": "Cash" + }, + { + "Id": 9241, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-07-27T12:09:48", + "TransactionId": 79348582, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 679, + "CustomerInfo": 61656937, + "PaymentType": "Credit Card" + }, + { + "Id": 9242, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-09-27T08:27:10", + "TransactionId": 65288844, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 752, + "CustomerInfo": 59271569, + "PaymentType": "Credit Card" + }, + { + "Id": 9243, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2016-03-13T07:45:50", + "TransactionId": 98148740, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 362, + "CustomerInfo": 91778879, + "PaymentType": "Cash" + }, + { + "Id": 9244, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2017-02-11T15:26:04", + "TransactionId": 89306327, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 311, + "CustomerInfo": 57746863, + "PaymentType": "Debit Card" + }, + { + "Id": 9245, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-03-05T07:06:23", + "TransactionId": 41167243, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 795, + "CustomerInfo": 68802313, + "PaymentType": "Debit Card" + }, + { + "Id": 9246, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-08-08T12:44:21", + "TransactionId": 96282686, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 184, + "CustomerInfo": 65240836, + "PaymentType": "Cash" + }, + { + "Id": 9247, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2018-07-11T07:55:47", + "TransactionId": 92327842, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 695, + "CustomerInfo": 18018121, + "PaymentType": "Debit Card" + }, + { + "Id": 9248, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2019-03-08T18:18:52", + "TransactionId": 36458055, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 222, + "CustomerInfo": 92957050, + "PaymentType": "Debit Card" + }, + { + "Id": 9249, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2018-01-10T19:38:12", + "TransactionId": 36582032, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 9, + "CustomerInfo": 25250451, + "PaymentType": "Credit Card" + }, + { + "Id": 9250, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2019-09-12T17:16:05", + "TransactionId": 87195708, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 219, + "CustomerInfo": 15934269, + "PaymentType": "Credit Card" + }, + { + "Id": 9251, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2019-04-07T10:06:49", + "TransactionId": 85523113, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 806, + "CustomerInfo": 93180183, + "PaymentType": "Credit Card" + }, + { + "Id": 9252, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-08-01T12:52:08", + "TransactionId": 3570362, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 560, + "CustomerInfo": 45723433, + "PaymentType": "Debit Card" + }, + { + "Id": 9253, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2019-02-26T16:20:38", + "TransactionId": 55363099, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 495, + "CustomerInfo": 38704023, + "PaymentType": "Cash" + }, + { + "Id": 9254, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2019-11-13T07:08:15", + "TransactionId": 42333187, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 445, + "CustomerInfo": 57098782, + "PaymentType": "Cash" + }, + { + "Id": 9255, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-08-01T15:46:31", + "TransactionId": 20929046, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 516, + "CustomerInfo": 68692626, + "PaymentType": "Debit Card" + }, + { + "Id": 9256, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-10-09T15:02:27", + "TransactionId": 60145172, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 716, + "CustomerInfo": 41400062, + "PaymentType": "Debit Card" + }, + { + "Id": 9257, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-02-23T14:02:41", + "TransactionId": 2548571, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 62635136, + "PaymentType": "Cash" + }, + { + "Id": 9258, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2016-08-20T09:52:42", + "TransactionId": 95586311, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 5, + "CustomerInfo": 63063079, + "PaymentType": "Credit Card" + }, + { + "Id": 9259, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-08-27T10:51:01", + "TransactionId": 41343787, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 836, + "CustomerInfo": 4875289, + "PaymentType": "Debit Card" + }, + { + "Id": 9260, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-06-09T07:04:05", + "TransactionId": 11186557, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 966, + "CustomerInfo": 92067709, + "PaymentType": "Debit Card" + }, + { + "Id": 9261, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-10-08T15:27:22", + "TransactionId": 89914283, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 430, + "CustomerInfo": 60201735, + "PaymentType": "Debit Card" + }, + { + "Id": 9262, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2017-10-16T07:52:28", + "TransactionId": 84811975, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 320, + "CustomerInfo": 51666969, + "PaymentType": "Credit Card" + }, + { + "Id": 9263, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2016-03-23T12:47:40", + "TransactionId": 55057358, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 766, + "CustomerInfo": 45109886, + "PaymentType": "Debit Card" + }, + { + "Id": 9264, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2018-03-11T17:33:30", + "TransactionId": 68273695, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 435, + "CustomerInfo": 8269556, + "PaymentType": "Cash" + }, + { + "Id": 9265, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-06-24T13:47:08", + "TransactionId": 97219885, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 839, + "CustomerInfo": 37751236, + "PaymentType": "Credit Card" + }, + { + "Id": 9266, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-07-23T10:57:04", + "TransactionId": 17951816, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 622, + "CustomerInfo": 22807423, + "PaymentType": "Credit Card" + }, + { + "Id": 9267, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-11-22T07:25:49", + "TransactionId": 87145623, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 979, + "CustomerInfo": 58109007, + "PaymentType": "Credit Card" + }, + { + "Id": 9268, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-02-24T15:04:02", + "TransactionId": 54763657, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 684, + "CustomerInfo": 5522503, + "PaymentType": "Cash" + }, + { + "Id": 9269, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-05-28T07:25:24", + "TransactionId": 20850638, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 584, + "CustomerInfo": 76208653, + "PaymentType": "Debit Card" + }, + { + "Id": 9270, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2018-11-19T18:52:51", + "TransactionId": 80294013, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 437, + "CustomerInfo": 48203104, + "PaymentType": "Cash" + }, + { + "Id": 9271, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-05-06T07:39:22", + "TransactionId": 50711924, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 52934262, + "PaymentType": "Credit Card" + }, + { + "Id": 9272, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2018-09-06T13:31:00", + "TransactionId": 97225431, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 773, + "CustomerInfo": 18409839, + "PaymentType": "Debit Card" + }, + { + "Id": 9273, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-06-09T11:32:04", + "TransactionId": 71153632, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 597, + "CustomerInfo": 72652066, + "PaymentType": "Credit Card" + }, + { + "Id": 9274, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2019-08-28T18:55:52", + "TransactionId": 55358211, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 486, + "CustomerInfo": 85886314, + "PaymentType": "Cash" + }, + { + "Id": 9275, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2016-05-17T14:36:06", + "TransactionId": 70187153, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 257, + "CustomerInfo": 39089436, + "PaymentType": "Debit Card" + }, + { + "Id": 9276, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2017-10-05T12:32:15", + "TransactionId": 45857656, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 383, + "CustomerInfo": 78346890, + "PaymentType": "Credit Card" + }, + { + "Id": 9277, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-07-27T07:34:45", + "TransactionId": 86915289, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 73, + "CustomerInfo": 64317695, + "PaymentType": "Debit Card" + }, + { + "Id": 9278, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-05-23T08:36:14", + "TransactionId": 58174644, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 754, + "CustomerInfo": 27250559, + "PaymentType": "Debit Card" + }, + { + "Id": 9279, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-08-23T15:06:55", + "TransactionId": 38490451, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 1000, + "CustomerInfo": 92839779, + "PaymentType": "Credit Card" + }, + { + "Id": 9280, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-12-28T10:58:31", + "TransactionId": 26713440, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 730, + "CustomerInfo": 40388493, + "PaymentType": "Credit Card" + }, + { + "Id": 9281, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-06-23T19:11:00", + "TransactionId": 24213292, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 917, + "CustomerInfo": 17964761, + "PaymentType": "Debit Card" + }, + { + "Id": 9282, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2019-10-25T14:19:49", + "TransactionId": 16271710, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 736, + "CustomerInfo": 15694794, + "PaymentType": "Cash" + }, + { + "Id": 9283, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-11-24T10:23:48", + "TransactionId": 1081609, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 168, + "CustomerInfo": 24579237, + "PaymentType": "Cash" + }, + { + "Id": 9284, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-08-19T12:20:27", + "TransactionId": 71407898, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 793, + "CustomerInfo": 22568966, + "PaymentType": "Debit Card" + }, + { + "Id": 9285, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-06-24T15:26:56", + "TransactionId": 32119250, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 844, + "CustomerInfo": 67117893, + "PaymentType": "Debit Card" + }, + { + "Id": 9286, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-01-25T18:20:18", + "TransactionId": 90805751, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 760, + "CustomerInfo": 99127877, + "PaymentType": "Debit Card" + }, + { + "Id": 9287, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2018-06-07T15:54:43", + "TransactionId": 3115775, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 89, + "CustomerInfo": 42229062, + "PaymentType": "Debit Card" + }, + { + "Id": 9288, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2016-08-09T12:54:52", + "TransactionId": 44404918, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 663, + "CustomerInfo": 27270425, + "PaymentType": "Credit Card" + }, + { + "Id": 9289, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-11-05T10:28:08", + "TransactionId": 17986840, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 168, + "CustomerInfo": 3912138, + "PaymentType": "Debit Card" + }, + { + "Id": 9290, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-06-28T19:49:35", + "TransactionId": 21452192, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 958, + "CustomerInfo": 53635266, + "PaymentType": "Credit Card" + }, + { + "Id": 9291, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2019-10-11T17:51:22", + "TransactionId": 32252230, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 163, + "CustomerInfo": 87923581, + "PaymentType": "Credit Card" + }, + { + "Id": 9292, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2019-02-24T17:40:34", + "TransactionId": 22318943, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 403, + "CustomerInfo": 88080720, + "PaymentType": "Cash" + }, + { + "Id": 9293, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-01-28T15:32:24", + "TransactionId": 36082878, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 359, + "CustomerInfo": 60000464, + "PaymentType": "Cash" + }, + { + "Id": 9294, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-06-25T16:06:06", + "TransactionId": 53093041, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 539, + "CustomerInfo": 6450073, + "PaymentType": "Credit Card" + }, + { + "Id": 9295, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-09-26T12:43:21", + "TransactionId": 51439197, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 852, + "CustomerInfo": 55717242, + "PaymentType": "Cash" + }, + { + "Id": 9296, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2018-02-04T12:43:29", + "TransactionId": 47776760, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 418, + "CustomerInfo": 66651700, + "PaymentType": "Credit Card" + }, + { + "Id": 9297, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2019-05-28T14:02:15", + "TransactionId": 11206638, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 902, + "CustomerInfo": 95338511, + "PaymentType": "Cash" + }, + { + "Id": 9298, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2016-04-23T18:27:22", + "TransactionId": 15158895, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 738, + "CustomerInfo": 63337367, + "PaymentType": "Cash" + }, + { + "Id": 9299, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2019-09-02T18:04:45", + "TransactionId": 29271927, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 245, + "CustomerInfo": 64747923, + "PaymentType": "Debit Card" + }, + { + "Id": 9300, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-10-26T09:57:45", + "TransactionId": 41029242, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 881, + "CustomerInfo": 28139848, + "PaymentType": "Credit Card" + }, + { + "Id": 9301, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2019-04-19T10:35:28", + "TransactionId": 29458431, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 544, + "CustomerInfo": 68870515, + "PaymentType": "Credit Card" + }, + { + "Id": 9302, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-10-06T18:09:13", + "TransactionId": 46182569, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 225, + "CustomerInfo": 22409394, + "PaymentType": "Cash" + }, + { + "Id": 9303, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2017-02-06T11:47:11", + "TransactionId": 67189279, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 85, + "CustomerInfo": 15224329, + "PaymentType": "Debit Card" + }, + { + "Id": 9304, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2019-09-21T09:15:24", + "TransactionId": 66228752, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 766, + "CustomerInfo": 27045123, + "PaymentType": "Cash" + }, + { + "Id": 9305, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-01-03T09:50:33", + "TransactionId": 30599257, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 575, + "CustomerInfo": 78760536, + "PaymentType": "Debit Card" + }, + { + "Id": 9306, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-05-18T12:05:28", + "TransactionId": 49554403, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 189, + "CustomerInfo": 55236600, + "PaymentType": "Debit Card" + }, + { + "Id": 9307, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2018-05-11T08:54:49", + "TransactionId": 93960430, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 817, + "CustomerInfo": 37745868, + "PaymentType": "Credit Card" + }, + { + "Id": 9308, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-04-02T15:15:59", + "TransactionId": 96526109, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 779, + "CustomerInfo": 81061283, + "PaymentType": "Cash" + }, + { + "Id": 9309, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2016-05-10T15:48:49", + "TransactionId": 15774707, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 844, + "CustomerInfo": 81365252, + "PaymentType": "Cash" + }, + { + "Id": 9310, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2019-03-25T16:31:44", + "TransactionId": 47606924, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 239, + "CustomerInfo": 90362463, + "PaymentType": "Cash" + }, + { + "Id": 9311, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2016-08-03T16:46:34", + "TransactionId": 45168455, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 6025659, + "PaymentType": "Credit Card" + }, + { + "Id": 9312, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-02-06T18:24:37", + "TransactionId": 65867501, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 130, + "CustomerInfo": 23700726, + "PaymentType": "Cash" + }, + { + "Id": 9313, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2016-05-30T19:34:02", + "TransactionId": 99627731, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 490, + "CustomerInfo": 684902, + "PaymentType": "Debit Card" + }, + { + "Id": 9314, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-09-07T14:57:42", + "TransactionId": 25527309, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 354, + "CustomerInfo": 77150893, + "PaymentType": "Cash" + }, + { + "Id": 9315, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-05-08T15:06:37", + "TransactionId": 7465595, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 516, + "CustomerInfo": 51643701, + "PaymentType": "Cash" + }, + { + "Id": 9316, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-12-31T16:57:30", + "TransactionId": 284324, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 44, + "CustomerInfo": 69420460, + "PaymentType": "Cash" + }, + { + "Id": 9317, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2016-08-15T08:28:36", + "TransactionId": 2020448, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 856, + "CustomerInfo": 89786276, + "PaymentType": "Credit Card" + }, + { + "Id": 9318, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-04-13T11:05:51", + "TransactionId": 88468070, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 945, + "CustomerInfo": 37617584, + "PaymentType": "Cash" + }, + { + "Id": 9319, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-01-15T13:28:25", + "TransactionId": 50703456, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 73004710, + "PaymentType": "Credit Card" + }, + { + "Id": 9320, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-02-17T14:39:59", + "TransactionId": 54397739, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 866, + "CustomerInfo": 56687026, + "PaymentType": "Cash" + }, + { + "Id": 9321, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-08-31T18:57:01", + "TransactionId": 29843083, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 503, + "CustomerInfo": 42220124, + "PaymentType": "Debit Card" + }, + { + "Id": 9322, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2017-08-13T16:35:11", + "TransactionId": 48262752, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 840, + "CustomerInfo": 60302742, + "PaymentType": "Debit Card" + }, + { + "Id": 9323, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-11-13T18:56:01", + "TransactionId": 50708488, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 103, + "CustomerInfo": 67020768, + "PaymentType": "Credit Card" + }, + { + "Id": 9324, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2018-09-19T09:58:19", + "TransactionId": 54277525, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 295, + "CustomerInfo": 25283033, + "PaymentType": "Cash" + }, + { + "Id": 9325, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2018-07-17T18:04:36", + "TransactionId": 96427634, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 861, + "CustomerInfo": 84627272, + "PaymentType": "Credit Card" + }, + { + "Id": 9326, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2017-11-25T12:40:36", + "TransactionId": 48813809, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 700, + "CustomerInfo": 49294316, + "PaymentType": "Debit Card" + }, + { + "Id": 9327, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2016-12-19T14:50:04", + "TransactionId": 6766871, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 819, + "CustomerInfo": 19298504, + "PaymentType": "Cash" + }, + { + "Id": 9328, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2017-03-01T18:49:06", + "TransactionId": 92109361, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 892, + "CustomerInfo": 27508815, + "PaymentType": "Debit Card" + }, + { + "Id": 9329, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2016-08-16T11:25:09", + "TransactionId": 36380257, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 773, + "CustomerInfo": 61320757, + "PaymentType": "Cash" + }, + { + "Id": 9330, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-02-28T09:54:00", + "TransactionId": 4238080, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 659, + "CustomerInfo": 79127097, + "PaymentType": "Debit Card" + }, + { + "Id": 9331, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2017-07-30T17:48:37", + "TransactionId": 65717147, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 668, + "CustomerInfo": 20601622, + "PaymentType": "Debit Card" + }, + { + "Id": 9332, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-03-11T13:42:14", + "TransactionId": 28073877, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 719, + "CustomerInfo": 23020312, + "PaymentType": "Debit Card" + }, + { + "Id": 9333, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-11-01T13:28:08", + "TransactionId": 73308811, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 568, + "CustomerInfo": 50880790, + "PaymentType": "Debit Card" + }, + { + "Id": 9334, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2019-04-07T08:57:33", + "TransactionId": 98777831, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 560, + "CustomerInfo": 98639571, + "PaymentType": "Credit Card" + }, + { + "Id": 9335, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-11-18T18:04:28", + "TransactionId": 22781346, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 506, + "CustomerInfo": 25939560, + "PaymentType": "Debit Card" + }, + { + "Id": 9336, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2019-04-08T08:49:47", + "TransactionId": 31865215, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 238, + "CustomerInfo": 60564818, + "PaymentType": "Debit Card" + }, + { + "Id": 9337, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2016-08-12T11:57:50", + "TransactionId": 56054463, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 688, + "CustomerInfo": 17887255, + "PaymentType": "Cash" + }, + { + "Id": 9338, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2019-07-04T08:46:28", + "TransactionId": 66597789, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 134, + "CustomerInfo": 8244665, + "PaymentType": "Cash" + }, + { + "Id": 9339, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2016-05-11T12:58:19", + "TransactionId": 4408493, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 201, + "CustomerInfo": 99715583, + "PaymentType": "Cash" + }, + { + "Id": 9340, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-08-25T12:09:48", + "TransactionId": 73810949, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 459, + "CustomerInfo": 3619611, + "PaymentType": "Debit Card" + }, + { + "Id": 9341, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2016-07-25T18:17:00", + "TransactionId": 37260532, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 233, + "CustomerInfo": 143115, + "PaymentType": "Debit Card" + }, + { + "Id": 9342, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-08-27T09:20:01", + "TransactionId": 11169519, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 116, + "CustomerInfo": 62294746, + "PaymentType": "Credit Card" + }, + { + "Id": 9343, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-04-03T07:34:45", + "TransactionId": 22571780, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 832, + "CustomerInfo": 87107034, + "PaymentType": "Credit Card" + }, + { + "Id": 9344, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-07-26T09:47:14", + "TransactionId": 47678575, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 611, + "CustomerInfo": 49926086, + "PaymentType": "Credit Card" + }, + { + "Id": 9345, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2019-01-21T07:58:05", + "TransactionId": 75874473, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 757, + "CustomerInfo": 13542868, + "PaymentType": "Cash" + }, + { + "Id": 9346, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-10-26T07:27:50", + "TransactionId": 51749726, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 120, + "CustomerInfo": 81640305, + "PaymentType": "Credit Card" + }, + { + "Id": 9347, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2017-12-24T08:40:08", + "TransactionId": 25345948, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 25, + "CustomerInfo": 79057454, + "PaymentType": "Debit Card" + }, + { + "Id": 9348, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2018-10-17T07:39:56", + "TransactionId": 76105886, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 929, + "CustomerInfo": 94309914, + "PaymentType": "Credit Card" + }, + { + "Id": 9349, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2017-03-13T18:49:24", + "TransactionId": 81602567, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 220, + "CustomerInfo": 68633374, + "PaymentType": "Debit Card" + }, + { + "Id": 9350, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-02-21T14:08:53", + "TransactionId": 42755481, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 554, + "CustomerInfo": 34315261, + "PaymentType": "Cash" + }, + { + "Id": 9351, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2016-06-24T10:15:45", + "TransactionId": 64521550, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 693, + "CustomerInfo": 84859543, + "PaymentType": "Cash" + }, + { + "Id": 9352, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2017-11-10T12:34:34", + "TransactionId": 11209295, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 615, + "CustomerInfo": 28004710, + "PaymentType": "Debit Card" + }, + { + "Id": 9353, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2019-06-13T07:38:21", + "TransactionId": 44055189, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 929, + "CustomerInfo": 58057055, + "PaymentType": "Cash" + }, + { + "Id": 9354, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2019-08-29T16:39:22", + "TransactionId": 28558307, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 918, + "CustomerInfo": 91948251, + "PaymentType": "Cash" + }, + { + "Id": 9355, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2017-10-12T19:40:39", + "TransactionId": 49115963, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 978, + "CustomerInfo": 29350064, + "PaymentType": "Debit Card" + }, + { + "Id": 9356, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-08-25T09:55:52", + "TransactionId": 20485165, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 919, + "CustomerInfo": 55829141, + "PaymentType": "Credit Card" + }, + { + "Id": 9357, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2017-05-17T07:14:44", + "TransactionId": 84544591, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 874, + "CustomerInfo": 47724225, + "PaymentType": "Credit Card" + }, + { + "Id": 9358, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-02-11T19:40:13", + "TransactionId": 87595303, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 678, + "CustomerInfo": 12985901, + "PaymentType": "Credit Card" + }, + { + "Id": 9359, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-07-11T08:52:39", + "TransactionId": 46890941, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 56, + "CustomerInfo": 52090790, + "PaymentType": "Cash" + }, + { + "Id": 9360, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-06-24T08:14:04", + "TransactionId": 12191513, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 382, + "CustomerInfo": 99924449, + "PaymentType": "Cash" + }, + { + "Id": 9361, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2016-06-07T08:05:25", + "TransactionId": 52347557, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 733, + "CustomerInfo": 32734739, + "PaymentType": "Cash" + }, + { + "Id": 9362, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-02-04T17:37:49", + "TransactionId": 46396574, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 909, + "CustomerInfo": 64257699, + "PaymentType": "Debit Card" + }, + { + "Id": 9363, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2018-04-12T13:02:04", + "TransactionId": 72524589, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 78, + "CustomerInfo": 71304314, + "PaymentType": "Debit Card" + }, + { + "Id": 9364, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-07-07T10:44:50", + "TransactionId": 36355664, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 457, + "CustomerInfo": 10978318, + "PaymentType": "Debit Card" + }, + { + "Id": 9365, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2019-06-11T13:47:08", + "TransactionId": 16918011, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 5, + "CustomerInfo": 65325469, + "PaymentType": "Debit Card" + }, + { + "Id": 9366, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-02-25T13:12:26", + "TransactionId": 36610934, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 188, + "CustomerInfo": 69746017, + "PaymentType": "Cash" + }, + { + "Id": 9367, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-07-07T12:20:36", + "TransactionId": 25504787, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 303, + "CustomerInfo": 57671280, + "PaymentType": "Debit Card" + }, + { + "Id": 9368, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2016-11-29T14:03:59", + "TransactionId": 79216974, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 917, + "CustomerInfo": 26951541, + "PaymentType": "Cash" + }, + { + "Id": 9369, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-10-19T14:19:06", + "TransactionId": 95429318, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 874, + "CustomerInfo": 16950591, + "PaymentType": "Cash" + }, + { + "Id": 9370, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-01-23T10:54:55", + "TransactionId": 59889516, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 815, + "CustomerInfo": 12354599, + "PaymentType": "Cash" + }, + { + "Id": 9371, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-10-12T10:11:17", + "TransactionId": 81623531, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 397, + "CustomerInfo": 58869739, + "PaymentType": "Credit Card" + }, + { + "Id": 9372, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-11-28T08:33:39", + "TransactionId": 87888248, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 526, + "CustomerInfo": 51166898, + "PaymentType": "Cash" + }, + { + "Id": 9373, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2016-01-30T12:51:50", + "TransactionId": 25798478, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 287, + "CustomerInfo": 47342136, + "PaymentType": "Cash" + }, + { + "Id": 9374, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2017-05-29T19:44:50", + "TransactionId": 51715306, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 874, + "CustomerInfo": 78820279, + "PaymentType": "Debit Card" + }, + { + "Id": 9375, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2018-11-30T12:18:26", + "TransactionId": 82765503, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 358, + "CustomerInfo": 74297336, + "PaymentType": "Cash" + }, + { + "Id": 9376, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-09-26T07:06:58", + "TransactionId": 8143673, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 739, + "CustomerInfo": 4043250, + "PaymentType": "Credit Card" + }, + { + "Id": 9377, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-01-02T15:09:39", + "TransactionId": 33392931, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 696, + "CustomerInfo": 79511889, + "PaymentType": "Debit Card" + }, + { + "Id": 9378, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-01-18T19:47:25", + "TransactionId": 67178465, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 671, + "CustomerInfo": 54320418, + "PaymentType": "Debit Card" + }, + { + "Id": 9379, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-06-07T15:08:12", + "TransactionId": 19755720, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 913, + "CustomerInfo": 77470948, + "PaymentType": "Credit Card" + }, + { + "Id": 9380, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2017-08-09T07:25:58", + "TransactionId": 24010615, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 81204701, + "PaymentType": "Credit Card" + }, + { + "Id": 9381, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2018-06-13T07:10:16", + "TransactionId": 41551687, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 527, + "CustomerInfo": 20553174, + "PaymentType": "Cash" + }, + { + "Id": 9382, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2016-09-18T07:08:24", + "TransactionId": 58368349, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 152, + "CustomerInfo": 85987875, + "PaymentType": "Credit Card" + }, + { + "Id": 9383, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2017-02-17T15:43:47", + "TransactionId": 26267279, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 928, + "CustomerInfo": 76954860, + "PaymentType": "Cash" + }, + { + "Id": 9384, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2019-12-03T08:36:32", + "TransactionId": 46292379, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 379, + "CustomerInfo": 57534550, + "PaymentType": "Cash" + }, + { + "Id": 9385, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-03-16T10:13:00", + "TransactionId": 72789239, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 894, + "CustomerInfo": 52702060, + "PaymentType": "Cash" + }, + { + "Id": 9386, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-09-06T11:43:18", + "TransactionId": 47306293, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 866, + "CustomerInfo": 56939647, + "PaymentType": "Debit Card" + }, + { + "Id": 9387, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2018-07-03T15:24:37", + "TransactionId": 99222577, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 583, + "CustomerInfo": 6463767, + "PaymentType": "Credit Card" + }, + { + "Id": 9388, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-09-11T16:45:50", + "TransactionId": 65884100, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 384, + "CustomerInfo": 7787001, + "PaymentType": "Cash" + }, + { + "Id": 9389, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-07-05T07:18:37", + "TransactionId": 3799612, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 552, + "CustomerInfo": 85712273, + "PaymentType": "Debit Card" + }, + { + "Id": 9390, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-02-04T08:56:41", + "TransactionId": 5575386, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 81, + "CustomerInfo": 3796379, + "PaymentType": "Credit Card" + }, + { + "Id": 9391, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-09-02T15:33:24", + "TransactionId": 3165361, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 459, + "CustomerInfo": 78137385, + "PaymentType": "Credit Card" + }, + { + "Id": 9392, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-09-15T17:51:22", + "TransactionId": 69242240, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 602, + "CustomerInfo": 43547867, + "PaymentType": "Debit Card" + }, + { + "Id": 9393, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-07-10T10:25:06", + "TransactionId": 18468319, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 320, + "CustomerInfo": 77968150, + "PaymentType": "Cash" + }, + { + "Id": 9394, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2019-06-04T14:18:32", + "TransactionId": 39456422, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 808, + "CustomerInfo": 99854392, + "PaymentType": "Cash" + }, + { + "Id": 9395, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2018-01-12T09:17:17", + "TransactionId": 20547083, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 173, + "CustomerInfo": 59609492, + "PaymentType": "Credit Card" + }, + { + "Id": 9396, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2018-12-03T16:59:31", + "TransactionId": 93953471, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 403, + "CustomerInfo": 79588415, + "PaymentType": "Cash" + }, + { + "Id": 9397, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-06-11T17:40:08", + "TransactionId": 20094240, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 12, + "CustomerInfo": 88750916, + "PaymentType": "Credit Card" + }, + { + "Id": 9398, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2016-09-25T13:38:04", + "TransactionId": 25794143, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 284, + "CustomerInfo": 1658539, + "PaymentType": "Credit Card" + }, + { + "Id": 9399, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2017-07-13T15:46:05", + "TransactionId": 39427502, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 192, + "CustomerInfo": 85600123, + "PaymentType": "Cash" + }, + { + "Id": 9400, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-11-15T16:21:22", + "TransactionId": 761175, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 158, + "CustomerInfo": 36801999, + "PaymentType": "Cash" + }, + { + "Id": 9401, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2017-11-22T14:23:43", + "TransactionId": 3714197, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 183, + "CustomerInfo": 75681186, + "PaymentType": "Credit Card" + }, + { + "Id": 9402, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2019-09-11T15:14:50", + "TransactionId": 11879047, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 438, + "CustomerInfo": 52667252, + "PaymentType": "Cash" + }, + { + "Id": 9403, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-06-24T16:47:51", + "TransactionId": 11957865, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 683, + "CustomerInfo": 39540765, + "PaymentType": "Debit Card" + }, + { + "Id": 9404, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2016-08-25T10:20:21", + "TransactionId": 50330851, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 701, + "CustomerInfo": 16997465, + "PaymentType": "Cash" + }, + { + "Id": 9405, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-10-23T16:19:03", + "TransactionId": 17286056, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 289, + "CustomerInfo": 94655883, + "PaymentType": "Debit Card" + }, + { + "Id": 9406, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2017-09-30T14:58:42", + "TransactionId": 22072360, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 517, + "CustomerInfo": 35544562, + "PaymentType": "Cash" + }, + { + "Id": 9407, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2019-11-12T10:08:24", + "TransactionId": 66063558, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 21479253, + "PaymentType": "Credit Card" + }, + { + "Id": 9408, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2016-10-18T18:06:55", + "TransactionId": 27325286, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 818, + "CustomerInfo": 93380940, + "PaymentType": "Credit Card" + }, + { + "Id": 9409, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2019-04-23T15:58:11", + "TransactionId": 76483944, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 5114189, + "PaymentType": "Debit Card" + }, + { + "Id": 9410, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-10-13T15:03:53", + "TransactionId": 87080616, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 341, + "CustomerInfo": 34003818, + "PaymentType": "Cash" + }, + { + "Id": 9411, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2017-08-31T11:17:31", + "TransactionId": 72423352, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 283, + "CustomerInfo": 91721401, + "PaymentType": "Debit Card" + }, + { + "Id": 9412, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-09-13T08:18:32", + "TransactionId": 65269270, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 665, + "CustomerInfo": 50657727, + "PaymentType": "Cash" + }, + { + "Id": 9413, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2017-05-04T07:48:26", + "TransactionId": 19507961, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 243, + "CustomerInfo": 7706522, + "PaymentType": "Credit Card" + }, + { + "Id": 9414, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-09-04T19:43:15", + "TransactionId": 30819085, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 489, + "CustomerInfo": 27560834, + "PaymentType": "Debit Card" + }, + { + "Id": 9415, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-11-11T14:16:39", + "TransactionId": 22899177, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 397, + "CustomerInfo": 58390361, + "PaymentType": "Cash" + }, + { + "Id": 9416, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-07-07T13:01:47", + "TransactionId": 67292777, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 405, + "CustomerInfo": 68272873, + "PaymentType": "Cash" + }, + { + "Id": 9417, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-08-10T16:05:57", + "TransactionId": 37906142, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 25, + "CustomerInfo": 37874225, + "PaymentType": "Debit Card" + }, + { + "Id": 9418, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-11-05T11:46:02", + "TransactionId": 37268141, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 752, + "CustomerInfo": 4984389, + "PaymentType": "Cash" + }, + { + "Id": 9419, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2018-05-15T14:37:06", + "TransactionId": 88770278, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 277, + "CustomerInfo": 47625889, + "PaymentType": "Credit Card" + }, + { + "Id": 9420, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-06-20T07:57:22", + "TransactionId": 45125522, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 759, + "CustomerInfo": 89936723, + "PaymentType": "Credit Card" + }, + { + "Id": 9421, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2019-07-06T18:38:10", + "TransactionId": 78399765, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 393, + "CustomerInfo": 6342627, + "PaymentType": "Credit Card" + }, + { + "Id": 9422, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2019-05-09T18:58:02", + "TransactionId": 97870200, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 177, + "CustomerInfo": 34650124, + "PaymentType": "Cash" + }, + { + "Id": 9423, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-02-13T10:20:47", + "TransactionId": 88208443, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 896, + "CustomerInfo": 38065032, + "PaymentType": "Cash" + }, + { + "Id": 9424, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2019-10-22T09:03:53", + "TransactionId": 18415357, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 350, + "CustomerInfo": 73324389, + "PaymentType": "Credit Card" + }, + { + "Id": 9425, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2018-01-07T17:58:08", + "TransactionId": 92344356, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 672, + "CustomerInfo": 78649348, + "PaymentType": "Debit Card" + }, + { + "Id": 9426, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2018-12-12T18:26:30", + "TransactionId": 49048118, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 625, + "CustomerInfo": 26233173, + "PaymentType": "Credit Card" + }, + { + "Id": 9427, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2016-10-23T18:28:22", + "TransactionId": 6877069, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 363, + "CustomerInfo": 72155156, + "PaymentType": "Credit Card" + }, + { + "Id": 9428, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2017-09-10T08:23:51", + "TransactionId": 15681965, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 245, + "CustomerInfo": 77383433, + "PaymentType": "Cash" + }, + { + "Id": 9429, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2017-05-16T14:16:22", + "TransactionId": 98337560, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 58, + "CustomerInfo": 17426400, + "PaymentType": "Cash" + }, + { + "Id": 9430, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2018-07-10T15:46:39", + "TransactionId": 44454049, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 693, + "CustomerInfo": 10367578, + "PaymentType": "Credit Card" + }, + { + "Id": 9431, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2017-10-09T18:44:21", + "TransactionId": 56342402, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 897, + "CustomerInfo": 72979625, + "PaymentType": "Credit Card" + }, + { + "Id": 9432, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2018-05-09T11:27:53", + "TransactionId": 97872165, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 449, + "CustomerInfo": 74553459, + "PaymentType": "Cash" + }, + { + "Id": 9433, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2018-04-13T16:16:19", + "TransactionId": 66607136, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 817, + "CustomerInfo": 33967739, + "PaymentType": "Credit Card" + }, + { + "Id": 9434, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2017-03-11T19:46:25", + "TransactionId": 28326747, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 81801665, + "PaymentType": "Debit Card" + }, + { + "Id": 9435, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-02-25T13:10:42", + "TransactionId": 11357867, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 838, + "CustomerInfo": 7688419, + "PaymentType": "Debit Card" + }, + { + "Id": 9436, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2016-10-20T14:05:17", + "TransactionId": 41240811, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 595, + "CustomerInfo": 75119478, + "PaymentType": "Debit Card" + }, + { + "Id": 9437, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-10-09T17:21:59", + "TransactionId": 38795158, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 359, + "CustomerInfo": 76191589, + "PaymentType": "Credit Card" + }, + { + "Id": 9438, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-04-10T18:05:54", + "TransactionId": 62004744, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 548, + "CustomerInfo": 56119721, + "PaymentType": "Credit Card" + }, + { + "Id": 9439, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2018-03-01T08:15:39", + "TransactionId": 49401352, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 885, + "CustomerInfo": 97634742, + "PaymentType": "Credit Card" + }, + { + "Id": 9440, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2017-08-27T07:10:25", + "TransactionId": 86620723, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 696, + "CustomerInfo": 36148214, + "PaymentType": "Debit Card" + }, + { + "Id": 9441, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2019-12-13T10:16:45", + "TransactionId": 70272124, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 114, + "CustomerInfo": 19362420, + "PaymentType": "Credit Card" + }, + { + "Id": 9442, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2019-04-16T10:24:32", + "TransactionId": 9747164, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 225, + "CustomerInfo": 89932657, + "PaymentType": "Credit Card" + }, + { + "Id": 9443, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-03-29T10:15:19", + "TransactionId": 10730639, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 738, + "CustomerInfo": 49403714, + "PaymentType": "Debit Card" + }, + { + "Id": 9444, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-04-10T14:54:14", + "TransactionId": 72310402, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 260, + "CustomerInfo": 8900235, + "PaymentType": "Cash" + }, + { + "Id": 9445, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2019-09-25T12:29:48", + "TransactionId": 81610759, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 95, + "CustomerInfo": 38028153, + "PaymentType": "Cash" + }, + { + "Id": 9446, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2016-12-02T09:25:12", + "TransactionId": 97976993, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 724, + "CustomerInfo": 12147437, + "PaymentType": "Cash" + }, + { + "Id": 9447, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2018-10-14T15:10:22", + "TransactionId": 75108372, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 873, + "CustomerInfo": 55218079, + "PaymentType": "Credit Card" + }, + { + "Id": 9448, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-10-27T15:35:08", + "TransactionId": 27100151, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 458, + "CustomerInfo": 82833774, + "PaymentType": "Cash" + }, + { + "Id": 9449, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-05-19T07:23:48", + "TransactionId": 4497048, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 896, + "CustomerInfo": 53903612, + "PaymentType": "Cash" + }, + { + "Id": 9450, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2016-11-07T09:17:34", + "TransactionId": 10029824, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 908, + "CustomerInfo": 60160800, + "PaymentType": "Credit Card" + }, + { + "Id": 9451, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-01-09T13:43:32", + "TransactionId": 93620914, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 718, + "CustomerInfo": 65202648, + "PaymentType": "Cash" + }, + { + "Id": 9452, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2016-09-07T08:02:24", + "TransactionId": 55421082, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 866, + "CustomerInfo": 90733795, + "PaymentType": "Debit Card" + }, + { + "Id": 9453, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-11-15T10:57:39", + "TransactionId": 74508317, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 256, + "CustomerInfo": 28876882, + "PaymentType": "Debit Card" + }, + { + "Id": 9454, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2017-12-23T10:36:03", + "TransactionId": 25192328, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 171, + "CustomerInfo": 67926661, + "PaymentType": "Cash" + }, + { + "Id": 9455, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-04-12T17:19:41", + "TransactionId": 958089, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 363, + "CustomerInfo": 39691988, + "PaymentType": "Cash" + }, + { + "Id": 9456, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2018-04-18T10:46:34", + "TransactionId": 40130122, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 40, + "CustomerInfo": 61850987, + "PaymentType": "Credit Card" + }, + { + "Id": 9457, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2016-05-23T17:46:19", + "TransactionId": 22170994, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 588, + "CustomerInfo": 95832011, + "PaymentType": "Debit Card" + }, + { + "Id": 9458, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-09-30T16:38:21", + "TransactionId": 69581137, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 306, + "CustomerInfo": 69236532, + "PaymentType": "Debit Card" + }, + { + "Id": 9459, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-10-15T14:53:57", + "TransactionId": 30864819, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 883, + "CustomerInfo": 70749414, + "PaymentType": "Cash" + }, + { + "Id": 9460, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2018-12-10T17:34:22", + "TransactionId": 67528073, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 229, + "CustomerInfo": 99672317, + "PaymentType": "Debit Card" + }, + { + "Id": 9461, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2017-10-12T15:42:29", + "TransactionId": 23036691, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 10, + "CustomerInfo": 66145152, + "PaymentType": "Debit Card" + }, + { + "Id": 9462, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-03-16T09:24:37", + "TransactionId": 42465080, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 619, + "CustomerInfo": 87575972, + "PaymentType": "Credit Card" + }, + { + "Id": 9463, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2017-04-06T11:19:32", + "TransactionId": 79492602, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 401, + "CustomerInfo": 34783499, + "PaymentType": "Cash" + }, + { + "Id": 9464, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-03-27T12:03:10", + "TransactionId": 1879540, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 815, + "CustomerInfo": 12041744, + "PaymentType": "Cash" + }, + { + "Id": 9465, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-08-31T10:27:16", + "TransactionId": 74217944, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 676, + "CustomerInfo": 207854, + "PaymentType": "Credit Card" + }, + { + "Id": 9466, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-05-26T17:36:32", + "TransactionId": 28152251, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 563, + "CustomerInfo": 99981788, + "PaymentType": "Cash" + }, + { + "Id": 9467, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2017-10-06T13:05:31", + "TransactionId": 86390923, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 784, + "CustomerInfo": 8361317, + "PaymentType": "Credit Card" + }, + { + "Id": 9468, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-05-30T14:00:58", + "TransactionId": 71441994, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 595, + "CustomerInfo": 95448095, + "PaymentType": "Cash" + }, + { + "Id": 9469, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-10-12T19:41:23", + "TransactionId": 69513031, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 93288933, + "PaymentType": "Credit Card" + }, + { + "Id": 9470, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-08-03T07:31:35", + "TransactionId": 52311, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 975, + "CustomerInfo": 7365146, + "PaymentType": "Cash" + }, + { + "Id": 9471, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2018-07-03T09:07:03", + "TransactionId": 87391647, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 290, + "CustomerInfo": 66815347, + "PaymentType": "Credit Card" + }, + { + "Id": 9472, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2018-08-31T17:16:48", + "TransactionId": 37674042, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 21, + "CustomerInfo": 99578784, + "PaymentType": "Credit Card" + }, + { + "Id": 9473, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-09-23T09:20:36", + "TransactionId": 13713254, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 963, + "CustomerInfo": 96183792, + "PaymentType": "Cash" + }, + { + "Id": 9474, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2016-04-02T17:53:31", + "TransactionId": 58352744, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 110, + "CustomerInfo": 89345925, + "PaymentType": "Credit Card" + }, + { + "Id": 9475, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2017-09-18T17:33:39", + "TransactionId": 30947752, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 628, + "CustomerInfo": 24329461, + "PaymentType": "Cash" + }, + { + "Id": 9476, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-10-31T08:12:46", + "TransactionId": 16070934, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 280, + "CustomerInfo": 9074081, + "PaymentType": "Cash" + }, + { + "Id": 9477, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2017-09-08T11:47:28", + "TransactionId": 82531770, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 318, + "CustomerInfo": 32674851, + "PaymentType": "Cash" + }, + { + "Id": 9478, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2018-09-20T12:30:23", + "TransactionId": 77218607, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 148, + "CustomerInfo": 3837169, + "PaymentType": "Cash" + }, + { + "Id": 9479, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2017-11-06T18:50:24", + "TransactionId": 53424765, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 257, + "CustomerInfo": 61943573, + "PaymentType": "Credit Card" + }, + { + "Id": 9480, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2018-12-19T17:45:36", + "TransactionId": 94151971, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 257, + "CustomerInfo": 85546057, + "PaymentType": "Cash" + }, + { + "Id": 9481, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-01-06T17:03:33", + "TransactionId": 2910853, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 606, + "CustomerInfo": 35536934, + "PaymentType": "Cash" + }, + { + "Id": 9482, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-07-05T10:30:26", + "TransactionId": 77868647, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 800, + "CustomerInfo": 83920322, + "PaymentType": "Credit Card" + }, + { + "Id": 9483, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-10-06T15:33:24", + "TransactionId": 41813035, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 206, + "CustomerInfo": 59255052, + "PaymentType": "Credit Card" + }, + { + "Id": 9484, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2017-08-31T16:52:36", + "TransactionId": 86187204, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 420, + "CustomerInfo": 90971894, + "PaymentType": "Credit Card" + }, + { + "Id": 9485, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-08-15T13:09:59", + "TransactionId": 52823669, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 699, + "CustomerInfo": 34696820, + "PaymentType": "Credit Card" + }, + { + "Id": 9486, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-11-30T07:28:08", + "TransactionId": 12497049, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 806, + "CustomerInfo": 99730215, + "PaymentType": "Cash" + }, + { + "Id": 9487, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2017-04-13T19:57:04", + "TransactionId": 85086360, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 343, + "CustomerInfo": 59976483, + "PaymentType": "Debit Card" + }, + { + "Id": 9488, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-01-25T16:39:56", + "TransactionId": 97665442, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 26, + "CustomerInfo": 19895239, + "PaymentType": "Credit Card" + }, + { + "Id": 9489, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-01-07T10:19:03", + "TransactionId": 95869788, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 413, + "CustomerInfo": 7696483, + "PaymentType": "Cash" + }, + { + "Id": 9490, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2016-06-01T08:05:43", + "TransactionId": 67001261, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 523, + "CustomerInfo": 426913, + "PaymentType": "Cash" + }, + { + "Id": 9491, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-07-25T18:58:36", + "TransactionId": 50967116, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 532, + "CustomerInfo": 56291409, + "PaymentType": "Cash" + }, + { + "Id": 9492, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-03-10T10:18:55", + "TransactionId": 40063650, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 115, + "CustomerInfo": 67494578, + "PaymentType": "Debit Card" + }, + { + "Id": 9493, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2018-09-02T12:13:15", + "TransactionId": 75915051, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 827, + "CustomerInfo": 96569767, + "PaymentType": "Debit Card" + }, + { + "Id": 9494, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2019-06-30T19:44:15", + "TransactionId": 95409739, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 376, + "CustomerInfo": 73153665, + "PaymentType": "Debit Card" + }, + { + "Id": 9495, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-09-26T10:43:06", + "TransactionId": 19264711, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 313, + "CustomerInfo": 89782577, + "PaymentType": "Credit Card" + }, + { + "Id": 9496, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-09-12T14:35:23", + "TransactionId": 76684831, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 215, + "CustomerInfo": 71073762, + "PaymentType": "Cash" + }, + { + "Id": 9497, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-03-21T08:50:56", + "TransactionId": 40502873, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 470, + "CustomerInfo": 31864771, + "PaymentType": "Credit Card" + }, + { + "Id": 9498, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-08-08T09:43:47", + "TransactionId": 69323689, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 577, + "CustomerInfo": 1782790, + "PaymentType": "Cash" + }, + { + "Id": 9499, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-06-12T18:10:31", + "TransactionId": 83618248, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 780, + "CustomerInfo": 18753892, + "PaymentType": "Cash" + }, + { + "Id": 9500, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2017-09-29T07:03:48", + "TransactionId": 85639572, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 133, + "CustomerInfo": 14596972, + "PaymentType": "Cash" + }, + { + "Id": 9501, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2019-11-25T11:48:03", + "TransactionId": 28643150, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 77762268, + "PaymentType": "Cash" + }, + { + "Id": 9502, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2018-08-28T17:42:52", + "TransactionId": 59653711, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 182, + "CustomerInfo": 64661945, + "PaymentType": "Debit Card" + }, + { + "Id": 9503, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-01-16T11:02:24", + "TransactionId": 9916461, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 953, + "CustomerInfo": 19382171, + "PaymentType": "Cash" + }, + { + "Id": 9504, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-06-12T08:23:51", + "TransactionId": 36467982, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 967, + "CustomerInfo": 90289997, + "PaymentType": "Debit Card" + }, + { + "Id": 9505, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-04-09T10:24:14", + "TransactionId": 26025044, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 846, + "CustomerInfo": 29914686, + "PaymentType": "Cash" + }, + { + "Id": 9506, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-01-27T12:58:19", + "TransactionId": 23488757, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 296, + "CustomerInfo": 46630095, + "PaymentType": "Cash" + }, + { + "Id": 9507, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2016-04-09T07:45:50", + "TransactionId": 75126797, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 378, + "CustomerInfo": 25689459, + "PaymentType": "Cash" + }, + { + "Id": 9508, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-04-01T07:35:46", + "TransactionId": 83661419, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 30, + "CustomerInfo": 1728940, + "PaymentType": "Credit Card" + }, + { + "Id": 9509, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-05-19T15:09:30", + "TransactionId": 48168917, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 140, + "CustomerInfo": 49539633, + "PaymentType": "Debit Card" + }, + { + "Id": 9510, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-12-26T13:29:34", + "TransactionId": 82223556, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 176, + "CustomerInfo": 68217376, + "PaymentType": "Debit Card" + }, + { + "Id": 9511, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-12-29T12:32:59", + "TransactionId": 65787535, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 453, + "CustomerInfo": 25851191, + "PaymentType": "Debit Card" + }, + { + "Id": 9512, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-12-28T08:56:50", + "TransactionId": 75911996, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 419, + "CustomerInfo": 64993363, + "PaymentType": "Credit Card" + }, + { + "Id": 9513, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2016-09-17T11:42:00", + "TransactionId": 67167606, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 127, + "CustomerInfo": 6197800, + "PaymentType": "Credit Card" + }, + { + "Id": 9514, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2019-01-08T13:19:29", + "TransactionId": 79054443, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 902, + "CustomerInfo": 3727587, + "PaymentType": "Credit Card" + }, + { + "Id": 9515, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-11-06T17:10:45", + "TransactionId": 16029637, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 284, + "CustomerInfo": 61615949, + "PaymentType": "Debit Card" + }, + { + "Id": 9516, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2016-10-12T10:15:45", + "TransactionId": 89656451, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 938, + "CustomerInfo": 44862762, + "PaymentType": "Debit Card" + }, + { + "Id": 9517, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2016-08-25T14:30:12", + "TransactionId": 88438805, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 697, + "CustomerInfo": 2773691, + "PaymentType": "Cash" + }, + { + "Id": 9518, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-09-06T12:01:52", + "TransactionId": 96816330, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 19, + "CustomerInfo": 31179873, + "PaymentType": "Debit Card" + }, + { + "Id": 9519, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-11-01T18:50:41", + "TransactionId": 70022737, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 607, + "CustomerInfo": 52688717, + "PaymentType": "Cash" + }, + { + "Id": 9520, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2019-12-18T18:17:51", + "TransactionId": 51157708, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 462, + "CustomerInfo": 54935698, + "PaymentType": "Credit Card" + }, + { + "Id": 9521, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2017-12-26T07:47:00", + "TransactionId": 27376240, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 484, + "CustomerInfo": 49884796, + "PaymentType": "Cash" + }, + { + "Id": 9522, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2018-10-14T11:26:10", + "TransactionId": 84564292, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 8, + "CustomerInfo": 5659487, + "PaymentType": "Credit Card" + }, + { + "Id": 9523, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-11-07T12:03:53", + "TransactionId": 18126675, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 26, + "CustomerInfo": 37258988, + "PaymentType": "Cash" + }, + { + "Id": 9524, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2016-11-13T10:38:21", + "TransactionId": 11071676, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 333, + "CustomerInfo": 22834043, + "PaymentType": "Cash" + }, + { + "Id": 9525, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-03-15T12:23:46", + "TransactionId": 10499243, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 318, + "CustomerInfo": 69088800, + "PaymentType": "Cash" + }, + { + "Id": 9526, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2016-09-20T10:06:49", + "TransactionId": 385851, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 277, + "CustomerInfo": 60416775, + "PaymentType": "Credit Card" + }, + { + "Id": 9527, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2019-02-06T09:36:35", + "TransactionId": 47425500, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 156, + "CustomerInfo": 5858064, + "PaymentType": "Debit Card" + }, + { + "Id": 9528, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2018-04-13T18:19:09", + "TransactionId": 75271154, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 806, + "CustomerInfo": 75509261, + "PaymentType": "Credit Card" + }, + { + "Id": 9529, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-10-27T10:24:58", + "TransactionId": 1403960, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 196, + "CustomerInfo": 89505472, + "PaymentType": "Debit Card" + }, + { + "Id": 9530, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2017-12-23T09:06:37", + "TransactionId": 44636951, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 13, + "CustomerInfo": 8937210, + "PaymentType": "Cash" + }, + { + "Id": 9531, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-02-23T09:56:01", + "TransactionId": 90525812, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 535, + "CustomerInfo": 22782161, + "PaymentType": "Credit Card" + }, + { + "Id": 9532, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2016-06-21T10:04:48", + "TransactionId": 63874883, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 10, + "CustomerInfo": 47717586, + "PaymentType": "Cash" + }, + { + "Id": 9533, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2016-09-21T18:47:48", + "TransactionId": 90130366, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 85, + "CustomerInfo": 54041941, + "PaymentType": "Credit Card" + }, + { + "Id": 9534, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2017-04-01T14:22:16", + "TransactionId": 70755057, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 293, + "CustomerInfo": 35460009, + "PaymentType": "Cash" + }, + { + "Id": 9535, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2018-01-10T14:59:43", + "TransactionId": 20276728, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 434, + "CustomerInfo": 37253121, + "PaymentType": "Debit Card" + }, + { + "Id": 9536, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-02-18T10:27:59", + "TransactionId": 53851132, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 407, + "CustomerInfo": 80768235, + "PaymentType": "Credit Card" + }, + { + "Id": 9537, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2019-09-24T18:20:18", + "TransactionId": 24417782, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 190, + "CustomerInfo": 89995404, + "PaymentType": "Credit Card" + }, + { + "Id": 9538, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2017-07-24T11:25:52", + "TransactionId": 5135632, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 620, + "CustomerInfo": 22208776, + "PaymentType": "Credit Card" + }, + { + "Id": 9539, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-10-23T17:12:55", + "TransactionId": 15333291, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 574, + "CustomerInfo": 55816976, + "PaymentType": "Cash" + }, + { + "Id": 9540, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2016-02-12T15:03:36", + "TransactionId": 58251059, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 648, + "CustomerInfo": 21705564, + "PaymentType": "Credit Card" + }, + { + "Id": 9541, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2017-03-13T15:19:44", + "TransactionId": 80197426, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 211, + "CustomerInfo": 26205134, + "PaymentType": "Cash" + }, + { + "Id": 9542, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2019-06-28T08:24:00", + "TransactionId": 71964976, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 918, + "CustomerInfo": 25724758, + "PaymentType": "Credit Card" + }, + { + "Id": 9543, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-09-29T18:19:35", + "TransactionId": 67993322, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 392, + "CustomerInfo": 89933246, + "PaymentType": "Credit Card" + }, + { + "Id": 9544, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-12-24T18:18:09", + "TransactionId": 43063340, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 102, + "CustomerInfo": 74711538, + "PaymentType": "Debit Card" + }, + { + "Id": 9545, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-09-01T15:30:06", + "TransactionId": 79404189, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 636, + "CustomerInfo": 59497584, + "PaymentType": "Cash" + }, + { + "Id": 9546, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-05-15T17:31:55", + "TransactionId": 43678127, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 752, + "CustomerInfo": 82727920, + "PaymentType": "Cash" + }, + { + "Id": 9547, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-06-03T08:42:17", + "TransactionId": 76927323, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 282, + "CustomerInfo": 61209900, + "PaymentType": "Debit Card" + }, + { + "Id": 9548, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-10-29T10:55:38", + "TransactionId": 4504607, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 180, + "CustomerInfo": 49184339, + "PaymentType": "Credit Card" + }, + { + "Id": 9549, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-02-22T13:19:29", + "TransactionId": 57697176, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 72628766, + "PaymentType": "Credit Card" + }, + { + "Id": 9550, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-08-24T13:43:58", + "TransactionId": 55096469, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 416, + "CustomerInfo": 3642044, + "PaymentType": "Credit Card" + }, + { + "Id": 9551, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2016-01-18T12:52:34", + "TransactionId": 67770106, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 852, + "CustomerInfo": 55069567, + "PaymentType": "Cash" + }, + { + "Id": 9552, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-08-26T15:44:21", + "TransactionId": 27927738, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 932, + "CustomerInfo": 5321037, + "PaymentType": "Debit Card" + }, + { + "Id": 9553, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-05-26T16:14:44", + "TransactionId": 82309512, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 935, + "CustomerInfo": 84949164, + "PaymentType": "Cash" + }, + { + "Id": 9554, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-01-16T19:24:49", + "TransactionId": 8999993, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 313, + "CustomerInfo": 65762821, + "PaymentType": "Debit Card" + }, + { + "Id": 9555, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-10-03T11:22:34", + "TransactionId": 89687625, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 72, + "CustomerInfo": 71624688, + "PaymentType": "Credit Card" + }, + { + "Id": 9556, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-02-27T15:09:22", + "TransactionId": 5136396, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 406, + "CustomerInfo": 40675302, + "PaymentType": "Debit Card" + }, + { + "Id": 9557, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2019-02-04T10:58:13", + "TransactionId": 92937213, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 899, + "CustomerInfo": 1922780, + "PaymentType": "Cash" + }, + { + "Id": 9558, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2019-03-02T18:17:43", + "TransactionId": 22217592, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 613, + "CustomerInfo": 51908416, + "PaymentType": "Credit Card" + }, + { + "Id": 9559, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2018-02-27T10:10:25", + "TransactionId": 88335190, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 27, + "CustomerInfo": 54047035, + "PaymentType": "Cash" + }, + { + "Id": 9560, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-11-17T15:31:06", + "TransactionId": 66607502, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 352, + "CustomerInfo": 62936199, + "PaymentType": "Cash" + }, + { + "Id": 9561, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2018-04-05T10:25:15", + "TransactionId": 72137885, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 348, + "CustomerInfo": 41052438, + "PaymentType": "Credit Card" + }, + { + "Id": 9562, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2016-10-09T09:00:17", + "TransactionId": 21511658, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 119, + "CustomerInfo": 43591194, + "PaymentType": "Credit Card" + }, + { + "Id": 9563, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2016-06-12T16:56:21", + "TransactionId": 20134633, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 937, + "CustomerInfo": 32283421, + "PaymentType": "Credit Card" + }, + { + "Id": 9564, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-12-23T14:05:51", + "TransactionId": 8373017, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 574, + "CustomerInfo": 20413075, + "PaymentType": "Debit Card" + }, + { + "Id": 9565, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-03-10T16:39:13", + "TransactionId": 45486663, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 922, + "CustomerInfo": 75003064, + "PaymentType": "Debit Card" + }, + { + "Id": 9566, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2018-02-23T07:29:08", + "TransactionId": 16523036, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 704, + "CustomerInfo": 83415701, + "PaymentType": "Credit Card" + }, + { + "Id": 9567, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-08-19T09:25:55", + "TransactionId": 96389421, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 254, + "CustomerInfo": 70672538, + "PaymentType": "Debit Card" + }, + { + "Id": 9568, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2017-05-25T11:05:08", + "TransactionId": 29030079, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 406, + "CustomerInfo": 77989576, + "PaymentType": "Debit Card" + }, + { + "Id": 9569, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-10-10T15:10:05", + "TransactionId": 92859698, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 458, + "CustomerInfo": 70773557, + "PaymentType": "Debit Card" + }, + { + "Id": 9570, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-06-13T18:42:20", + "TransactionId": 48376796, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 387, + "CustomerInfo": 11304479, + "PaymentType": "Credit Card" + }, + { + "Id": 9571, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-08-19T14:56:33", + "TransactionId": 2309616, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 547, + "CustomerInfo": 81370605, + "PaymentType": "Debit Card" + }, + { + "Id": 9572, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2019-03-16T12:09:22", + "TransactionId": 81172728, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 229, + "CustomerInfo": 89904508, + "PaymentType": "Cash" + }, + { + "Id": 9573, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-11-12T12:47:48", + "TransactionId": 73855446, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 130, + "CustomerInfo": 57086646, + "PaymentType": "Credit Card" + }, + { + "Id": 9574, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-09-21T09:30:58", + "TransactionId": 60351799, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 548, + "CustomerInfo": 32718530, + "PaymentType": "Credit Card" + }, + { + "Id": 9575, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2018-07-15T12:19:09", + "TransactionId": 65174206, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 745, + "CustomerInfo": 38621427, + "PaymentType": "Cash" + }, + { + "Id": 9576, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-08-06T08:59:08", + "TransactionId": 17892436, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 125, + "CustomerInfo": 3672236, + "PaymentType": "Cash" + }, + { + "Id": 9577, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2016-06-16T07:37:47", + "TransactionId": 55283909, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 364, + "CustomerInfo": 22346909, + "PaymentType": "Cash" + }, + { + "Id": 9578, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2017-08-11T14:38:24", + "TransactionId": 12601967, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 650, + "CustomerInfo": 42727395, + "PaymentType": "Credit Card" + }, + { + "Id": 9579, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2017-11-04T18:45:04", + "TransactionId": 22026652, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 892, + "CustomerInfo": 24640340, + "PaymentType": "Credit Card" + }, + { + "Id": 9580, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2018-01-30T16:23:48", + "TransactionId": 60155335, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 502, + "CustomerInfo": 65259976, + "PaymentType": "Debit Card" + }, + { + "Id": 9581, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-05-31T11:44:27", + "TransactionId": 3990404, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 506, + "CustomerInfo": 22500073, + "PaymentType": "Cash" + }, + { + "Id": 9582, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-09-21T16:13:18", + "TransactionId": 98412656, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 218, + "CustomerInfo": 36706971, + "PaymentType": "Debit Card" + }, + { + "Id": 9583, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2019-04-28T14:33:39", + "TransactionId": 47688939, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 872, + "CustomerInfo": 99194838, + "PaymentType": "Cash" + }, + { + "Id": 9584, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2016-03-19T07:50:10", + "TransactionId": 70857401, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 589, + "CustomerInfo": 16936091, + "PaymentType": "Debit Card" + }, + { + "Id": 9585, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-09-19T15:47:05", + "TransactionId": 61174335, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 177, + "CustomerInfo": 15831962, + "PaymentType": "Cash" + }, + { + "Id": 9586, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-07-16T08:31:55", + "TransactionId": 50889703, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 763, + "CustomerInfo": 16109491, + "PaymentType": "Cash" + }, + { + "Id": 9587, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-06-21T14:58:51", + "TransactionId": 59809027, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 937, + "CustomerInfo": 99745933, + "PaymentType": "Cash" + }, + { + "Id": 9588, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2017-03-26T15:27:39", + "TransactionId": 24884087, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 320, + "CustomerInfo": 54785715, + "PaymentType": "Cash" + }, + { + "Id": 9589, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-02-07T15:12:32", + "TransactionId": 98107075, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 576, + "CustomerInfo": 39774930, + "PaymentType": "Debit Card" + }, + { + "Id": 9590, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2018-03-04T07:58:48", + "TransactionId": 1794837, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 54, + "CustomerInfo": 67061259, + "PaymentType": "Credit Card" + }, + { + "Id": 9591, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-01-29T15:55:52", + "TransactionId": 99138219, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 48, + "CustomerInfo": 87484430, + "PaymentType": "Debit Card" + }, + { + "Id": 9592, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2019-02-07T18:38:44", + "TransactionId": 79566426, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 651, + "CustomerInfo": 41752607, + "PaymentType": "Debit Card" + }, + { + "Id": 9593, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-12-15T15:26:56", + "TransactionId": 21310306, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 432, + "CustomerInfo": 77213660, + "PaymentType": "Debit Card" + }, + { + "Id": 9594, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-09-19T11:28:02", + "TransactionId": 8338495, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 850, + "CustomerInfo": 91047087, + "PaymentType": "Debit Card" + }, + { + "Id": 9595, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-05-14T19:37:55", + "TransactionId": 80530707, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 63, + "CustomerInfo": 42356795, + "PaymentType": "Credit Card" + }, + { + "Id": 9596, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2018-04-15T08:16:57", + "TransactionId": 23443011, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 393, + "CustomerInfo": 67878533, + "PaymentType": "Cash" + }, + { + "Id": 9597, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2019-11-19T19:15:45", + "TransactionId": 5803166, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 870, + "CustomerInfo": 3053352, + "PaymentType": "Debit Card" + }, + { + "Id": 9598, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2019-01-31T08:11:37", + "TransactionId": 77195163, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 371, + "CustomerInfo": 26099757, + "PaymentType": "Credit Card" + }, + { + "Id": 9599, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-02-12T08:52:31", + "TransactionId": 92348359, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 766, + "CustomerInfo": 62938333, + "PaymentType": "Cash" + }, + { + "Id": 9600, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2017-03-29T15:09:39", + "TransactionId": 43106838, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 88, + "CustomerInfo": 4086038, + "PaymentType": "Credit Card" + }, + { + "Id": 9601, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2016-07-31T18:46:05", + "TransactionId": 78234483, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 174, + "CustomerInfo": 85154100, + "PaymentType": "Debit Card" + }, + { + "Id": 9602, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-06-19T10:52:19", + "TransactionId": 54686589, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 820, + "CustomerInfo": 27804029, + "PaymentType": "Cash" + }, + { + "Id": 9603, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2018-09-18T13:58:31", + "TransactionId": 65115003, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 794, + "CustomerInfo": 36296964, + "PaymentType": "Debit Card" + }, + { + "Id": 9604, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2018-07-02T11:02:41", + "TransactionId": 82603226, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 250, + "CustomerInfo": 72047935, + "PaymentType": "Cash" + }, + { + "Id": 9605, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-03-23T15:24:20", + "TransactionId": 8123917, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 875, + "CustomerInfo": 22881072, + "PaymentType": "Credit Card" + }, + { + "Id": 9606, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2019-07-23T08:04:42", + "TransactionId": 45050345, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 483, + "CustomerInfo": 68753521, + "PaymentType": "Credit Card" + }, + { + "Id": 9607, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-02-26T19:08:15", + "TransactionId": 72839779, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 983, + "CustomerInfo": 69125334, + "PaymentType": "Credit Card" + }, + { + "Id": 9608, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2016-02-21T07:47:43", + "TransactionId": 50972085, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 720, + "CustomerInfo": 23287317, + "PaymentType": "Credit Card" + }, + { + "Id": 9609, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2017-11-05T09:46:31", + "TransactionId": 50677333, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 110, + "CustomerInfo": 27343773, + "PaymentType": "Credit Card" + }, + { + "Id": 9610, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2019-07-04T08:39:16", + "TransactionId": 71223959, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 310, + "CustomerInfo": 35089790, + "PaymentType": "Debit Card" + }, + { + "Id": 9611, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-02-11T13:25:58", + "TransactionId": 37622146, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 238, + "CustomerInfo": 20812330, + "PaymentType": "Cash" + }, + { + "Id": 9612, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-01-16T11:35:05", + "TransactionId": 87904231, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 40, + "CustomerInfo": 22277199, + "PaymentType": "Credit Card" + }, + { + "Id": 9613, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2016-06-20T14:59:43", + "TransactionId": 17004132, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 616, + "CustomerInfo": 85936304, + "PaymentType": "Credit Card" + }, + { + "Id": 9614, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2016-04-24T17:27:53", + "TransactionId": 47026453, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 219, + "CustomerInfo": 77190161, + "PaymentType": "Credit Card" + }, + { + "Id": 9615, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2019-07-26T10:48:43", + "TransactionId": 42269627, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 890, + "CustomerInfo": 83964806, + "PaymentType": "Debit Card" + }, + { + "Id": 9616, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-10-17T09:37:00", + "TransactionId": 57317901, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 90827344, + "PaymentType": "Credit Card" + }, + { + "Id": 9617, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2018-09-17T08:34:39", + "TransactionId": 45680245, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 992, + "CustomerInfo": 17019683, + "PaymentType": "Debit Card" + }, + { + "Id": 9618, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-12-17T12:49:41", + "TransactionId": 60033052, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 890, + "CustomerInfo": 67531434, + "PaymentType": "Debit Card" + }, + { + "Id": 9619, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2019-07-30T17:58:42", + "TransactionId": 93041600, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 349, + "CustomerInfo": 31142987, + "PaymentType": "Debit Card" + }, + { + "Id": 9620, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2017-07-31T12:40:45", + "TransactionId": 712575, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 823, + "CustomerInfo": 91297978, + "PaymentType": "Cash" + }, + { + "Id": 9621, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-07-31T16:45:50", + "TransactionId": 7857661, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 75, + "CustomerInfo": 43178630, + "PaymentType": "Cash" + }, + { + "Id": 9622, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-08-01T18:14:07", + "TransactionId": 83506503, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 67, + "CustomerInfo": 12505676, + "PaymentType": "Credit Card" + }, + { + "Id": 9623, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2016-06-24T17:54:32", + "TransactionId": 69818564, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 767, + "CustomerInfo": 2348074, + "PaymentType": "Credit Card" + }, + { + "Id": 9624, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2017-02-18T11:12:29", + "TransactionId": 12552910, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 162, + "CustomerInfo": 33600489, + "PaymentType": "Debit Card" + }, + { + "Id": 9625, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-12-06T10:05:31", + "TransactionId": 17044507, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 825, + "CustomerInfo": 76935042, + "PaymentType": "Credit Card" + }, + { + "Id": 9626, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-06-27T14:38:07", + "TransactionId": 32247340, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 176, + "CustomerInfo": 9275112, + "PaymentType": "Debit Card" + }, + { + "Id": 9627, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-08-29T11:03:33", + "TransactionId": 13654020, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 874, + "CustomerInfo": 49405543, + "PaymentType": "Cash" + }, + { + "Id": 9628, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-11-02T08:21:33", + "TransactionId": 59036215, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 222, + "CustomerInfo": 67958336, + "PaymentType": "Cash" + }, + { + "Id": 9629, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2018-02-15T16:45:50", + "TransactionId": 89980631, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 792, + "CustomerInfo": 81612281, + "PaymentType": "Debit Card" + }, + { + "Id": 9630, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2017-09-10T14:54:23", + "TransactionId": 14789200, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 140, + "CustomerInfo": 1458029, + "PaymentType": "Debit Card" + }, + { + "Id": 9631, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-11-30T15:44:30", + "TransactionId": 11724234, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 74, + "CustomerInfo": 31431690, + "PaymentType": "Cash" + }, + { + "Id": 9632, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2019-03-02T11:50:30", + "TransactionId": 90001357, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 62, + "CustomerInfo": 19746060, + "PaymentType": "Debit Card" + }, + { + "Id": 9633, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2016-10-24T13:50:53", + "TransactionId": 53605834, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 525, + "CustomerInfo": 16054104, + "PaymentType": "Credit Card" + }, + { + "Id": 9634, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-11-08T07:57:30", + "TransactionId": 58344103, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 894, + "CustomerInfo": 4230113, + "PaymentType": "Credit Card" + }, + { + "Id": 9635, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-10-19T19:57:04", + "TransactionId": 91994139, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 930, + "CustomerInfo": 96881301, + "PaymentType": "Debit Card" + }, + { + "Id": 9636, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-08-10T11:18:14", + "TransactionId": 22219743, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 284, + "CustomerInfo": 91577031, + "PaymentType": "Cash" + }, + { + "Id": 9637, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2017-09-15T10:51:27", + "TransactionId": 23548040, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 555, + "CustomerInfo": 79845944, + "PaymentType": "Cash" + }, + { + "Id": 9638, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-09-17T10:53:54", + "TransactionId": 30725208, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 74, + "CustomerInfo": 67145120, + "PaymentType": "Debit Card" + }, + { + "Id": 9639, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2019-06-05T17:58:16", + "TransactionId": 96692044, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 637, + "CustomerInfo": 59077375, + "PaymentType": "Debit Card" + }, + { + "Id": 9640, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-12-01T08:14:47", + "TransactionId": 84976580, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 108, + "CustomerInfo": 99386472, + "PaymentType": "Debit Card" + }, + { + "Id": 9641, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2019-05-02T11:38:59", + "TransactionId": 5694714, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 643, + "CustomerInfo": 95072843, + "PaymentType": "Debit Card" + }, + { + "Id": 9642, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2016-07-29T07:51:10", + "TransactionId": 33423629, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 185, + "CustomerInfo": 76016403, + "PaymentType": "Cash" + }, + { + "Id": 9643, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-04-19T17:11:28", + "TransactionId": 33486504, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 965, + "CustomerInfo": 80706983, + "PaymentType": "Debit Card" + }, + { + "Id": 9644, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2017-12-11T09:14:41", + "TransactionId": 41631991, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 251, + "CustomerInfo": 7436163, + "PaymentType": "Credit Card" + }, + { + "Id": 9645, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-03-21T11:58:34", + "TransactionId": 27732625, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 273, + "CustomerInfo": 92267222, + "PaymentType": "Credit Card" + }, + { + "Id": 9646, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2016-12-03T11:39:16", + "TransactionId": 71959714, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 716, + "CustomerInfo": 73793437, + "PaymentType": "Credit Card" + }, + { + "Id": 9647, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-02-07T17:07:44", + "TransactionId": 67281188, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 463, + "CustomerInfo": 19999903, + "PaymentType": "Credit Card" + }, + { + "Id": 9648, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-03-13T11:53:14", + "TransactionId": 84026099, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 567, + "CustomerInfo": 34061170, + "PaymentType": "Cash" + }, + { + "Id": 9649, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2017-06-10T16:58:13", + "TransactionId": 13429908, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 76, + "CustomerInfo": 91340827, + "PaymentType": "Debit Card" + }, + { + "Id": 9650, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2017-06-01T17:29:11", + "TransactionId": 90370555, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 11, + "CustomerInfo": 14834462, + "PaymentType": "Credit Card" + }, + { + "Id": 9651, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2018-07-01T19:18:46", + "TransactionId": 71565686, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 881, + "CustomerInfo": 72123976, + "PaymentType": "Cash" + }, + { + "Id": 9652, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2017-09-01T11:22:51", + "TransactionId": 57182511, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 749, + "CustomerInfo": 30315533, + "PaymentType": "Credit Card" + }, + { + "Id": 9653, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-06-15T08:16:48", + "TransactionId": 95323186, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 309, + "CustomerInfo": 43238437, + "PaymentType": "Credit Card" + }, + { + "Id": 9654, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-01-12T16:46:25", + "TransactionId": 66267188, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 876, + "CustomerInfo": 58717796, + "PaymentType": "Cash" + }, + { + "Id": 9655, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2016-05-05T12:56:18", + "TransactionId": 94439367, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 613, + "CustomerInfo": 80762325, + "PaymentType": "Cash" + }, + { + "Id": 9656, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-10-30T17:54:49", + "TransactionId": 97763133, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 305, + "CustomerInfo": 46542835, + "PaymentType": "Credit Card" + }, + { + "Id": 9657, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-03-03T07:49:26", + "TransactionId": 7337673, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 832, + "CustomerInfo": 95043838, + "PaymentType": "Debit Card" + }, + { + "Id": 9658, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-05-03T15:29:14", + "TransactionId": 2752313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 588, + "CustomerInfo": 28812807, + "PaymentType": "Cash" + }, + { + "Id": 9659, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-07-23T16:22:22", + "TransactionId": 83256052, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 677, + "CustomerInfo": 39612801, + "PaymentType": "Cash" + }, + { + "Id": 9660, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2016-05-15T13:51:01", + "TransactionId": 98593620, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 945, + "CustomerInfo": 22284043, + "PaymentType": "Credit Card" + }, + { + "Id": 9661, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2018-02-19T16:20:21", + "TransactionId": 89931232, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 31545088, + "PaymentType": "Cash" + }, + { + "Id": 9662, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-03-22T10:16:19", + "TransactionId": 31110754, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 676, + "CustomerInfo": 47920069, + "PaymentType": "Debit Card" + }, + { + "Id": 9663, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-09-15T18:30:40", + "TransactionId": 80822318, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 673, + "CustomerInfo": 33967624, + "PaymentType": "Debit Card" + }, + { + "Id": 9664, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2018-04-07T08:30:37", + "TransactionId": 47146926, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 77249530, + "PaymentType": "Credit Card" + }, + { + "Id": 9665, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-03-22T15:04:54", + "TransactionId": 90610986, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 245, + "CustomerInfo": 97449372, + "PaymentType": "Debit Card" + }, + { + "Id": 9666, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2016-03-02T15:49:58", + "TransactionId": 97175217, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 110, + "CustomerInfo": 81096292, + "PaymentType": "Credit Card" + }, + { + "Id": 9667, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2016-01-11T08:58:16", + "TransactionId": 36224711, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 53799610, + "PaymentType": "Cash" + }, + { + "Id": 9668, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-12-18T16:32:10", + "TransactionId": 96726482, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 218, + "CustomerInfo": 34870223, + "PaymentType": "Debit Card" + }, + { + "Id": 9669, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2018-10-28T17:01:58", + "TransactionId": 52179489, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 919, + "CustomerInfo": 89831584, + "PaymentType": "Credit Card" + }, + { + "Id": 9670, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-01-01T11:20:33", + "TransactionId": 34297844, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 172, + "CustomerInfo": 14722902, + "PaymentType": "Debit Card" + }, + { + "Id": 9671, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-04-03T12:46:13", + "TransactionId": 87840237, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 255, + "CustomerInfo": 1705128, + "PaymentType": "Cash" + }, + { + "Id": 9672, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-10-05T07:42:23", + "TransactionId": 53934268, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 166, + "CustomerInfo": 15004780, + "PaymentType": "Cash" + }, + { + "Id": 9673, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2019-12-07T07:34:19", + "TransactionId": 35176144, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 820, + "CustomerInfo": 45066430, + "PaymentType": "Cash" + }, + { + "Id": 9674, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2019-02-10T07:22:39", + "TransactionId": 41848311, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 39, + "CustomerInfo": 29336074, + "PaymentType": "Credit Card" + }, + { + "Id": 9675, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-06-17T09:59:02", + "TransactionId": 86191638, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 656, + "CustomerInfo": 68547949, + "PaymentType": "Credit Card" + }, + { + "Id": 9676, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-01-17T09:48:40", + "TransactionId": 90632859, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 386, + "CustomerInfo": 53604966, + "PaymentType": "Credit Card" + }, + { + "Id": 9677, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2016-02-14T09:12:06", + "TransactionId": 58044647, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 2283471, + "PaymentType": "Cash" + }, + { + "Id": 9678, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-04-03T09:38:18", + "TransactionId": 33405297, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 464, + "CustomerInfo": 47560194, + "PaymentType": "Credit Card" + }, + { + "Id": 9679, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2017-10-20T08:08:44", + "TransactionId": 91009546, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 459, + "CustomerInfo": 67058331, + "PaymentType": "Debit Card" + }, + { + "Id": 9680, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2019-09-27T11:47:46", + "TransactionId": 5619975, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 548, + "CustomerInfo": 3880008, + "PaymentType": "Credit Card" + }, + { + "Id": 9681, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-03-06T18:13:15", + "TransactionId": 67748248, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 155, + "CustomerInfo": 25616515, + "PaymentType": "Debit Card" + }, + { + "Id": 9682, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-10-11T15:35:34", + "TransactionId": 94043513, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 143, + "CustomerInfo": 91084280, + "PaymentType": "Debit Card" + }, + { + "Id": 9683, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2019-12-18T10:42:14", + "TransactionId": 78066982, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 548, + "CustomerInfo": 68805497, + "PaymentType": "Debit Card" + }, + { + "Id": 9684, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-12-14T09:30:14", + "TransactionId": 10719267, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 787, + "CustomerInfo": 11935502, + "PaymentType": "Cash" + }, + { + "Id": 9685, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2017-04-21T17:24:52", + "TransactionId": 70855182, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 58, + "CustomerInfo": 87913694, + "PaymentType": "Credit Card" + }, + { + "Id": 9686, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2019-09-03T11:01:41", + "TransactionId": 98923710, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 714, + "CustomerInfo": 64134366, + "PaymentType": "Debit Card" + }, + { + "Id": 9687, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2017-02-23T14:16:39", + "TransactionId": 9690076, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 403, + "CustomerInfo": 29940264, + "PaymentType": "Credit Card" + }, + { + "Id": 9688, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2019-05-30T18:17:34", + "TransactionId": 11915041, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 722, + "CustomerInfo": 39839045, + "PaymentType": "Debit Card" + }, + { + "Id": 9689, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-06-02T12:48:49", + "TransactionId": 41059731, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 585, + "CustomerInfo": 33852245, + "PaymentType": "Debit Card" + }, + { + "Id": 9690, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2016-01-16T18:47:23", + "TransactionId": 81347328, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 877, + "CustomerInfo": 74799239, + "PaymentType": "Debit Card" + }, + { + "Id": 9691, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-07-23T17:55:15", + "TransactionId": 53302224, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 672, + "CustomerInfo": 15181765, + "PaymentType": "Cash" + }, + { + "Id": 9692, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-05-18T17:52:22", + "TransactionId": 80775745, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 330, + "CustomerInfo": 3154007, + "PaymentType": "Cash" + }, + { + "Id": 9693, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2018-02-15T09:15:59", + "TransactionId": 75309238, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 96, + "CustomerInfo": 85983370, + "PaymentType": "Cash" + }, + { + "Id": 9694, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-03-27T16:18:29", + "TransactionId": 68281077, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 262, + "CustomerInfo": 72047216, + "PaymentType": "Credit Card" + }, + { + "Id": 9695, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2016-01-15T08:35:57", + "TransactionId": 89186418, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 845, + "CustomerInfo": 69052584, + "PaymentType": "Cash" + }, + { + "Id": 9696, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-04-10T08:45:45", + "TransactionId": 14150300, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 874, + "CustomerInfo": 16540093, + "PaymentType": "Debit Card" + }, + { + "Id": 9697, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2019-09-06T14:37:24", + "TransactionId": 85950574, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 678, + "CustomerInfo": 30843412, + "PaymentType": "Debit Card" + }, + { + "Id": 9698, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2017-02-23T15:24:20", + "TransactionId": 69638542, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 723, + "CustomerInfo": 77452627, + "PaymentType": "Cash" + }, + { + "Id": 9699, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2016-11-04T15:16:25", + "TransactionId": 23323774, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 895, + "CustomerInfo": 93233411, + "PaymentType": "Credit Card" + }, + { + "Id": 9700, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2018-06-08T09:06:55", + "TransactionId": 12183300, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 689, + "CustomerInfo": 74813678, + "PaymentType": "Debit Card" + }, + { + "Id": 9701, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-11-09T13:23:40", + "TransactionId": 36831210, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 34844337, + "PaymentType": "Credit Card" + }, + { + "Id": 9702, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2019-07-09T14:17:14", + "TransactionId": 66412539, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 282, + "CustomerInfo": 85180769, + "PaymentType": "Cash" + }, + { + "Id": 9703, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-03-31T14:13:47", + "TransactionId": 32536207, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 968, + "CustomerInfo": 74364741, + "PaymentType": "Cash" + }, + { + "Id": 9704, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-01-04T12:27:30", + "TransactionId": 9672568, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 723, + "CustomerInfo": 75342370, + "PaymentType": "Credit Card" + }, + { + "Id": 9705, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-07-29T15:09:56", + "TransactionId": 83700136, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 905, + "CustomerInfo": 3981458, + "PaymentType": "Debit Card" + }, + { + "Id": 9706, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2019-07-23T08:08:18", + "TransactionId": 20150628, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 750, + "CustomerInfo": 21956216, + "PaymentType": "Cash" + }, + { + "Id": 9707, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-03-20T07:56:38", + "TransactionId": 85548569, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 398, + "CustomerInfo": 49779056, + "PaymentType": "Debit Card" + }, + { + "Id": 9708, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2016-01-24T11:37:58", + "TransactionId": 46554635, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 1000, + "CustomerInfo": 83341266, + "PaymentType": "Debit Card" + }, + { + "Id": 9709, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2016-01-31T14:59:17", + "TransactionId": 94842527, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 440, + "CustomerInfo": 76923522, + "PaymentType": "Debit Card" + }, + { + "Id": 9710, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-08-30T11:41:34", + "TransactionId": 52497974, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 854, + "CustomerInfo": 41502061, + "PaymentType": "Debit Card" + }, + { + "Id": 9711, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2019-05-25T15:53:43", + "TransactionId": 13152527, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 82637515, + "PaymentType": "Credit Card" + }, + { + "Id": 9712, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2017-12-29T19:45:07", + "TransactionId": 20552729, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 639, + "CustomerInfo": 29747224, + "PaymentType": "Credit Card" + }, + { + "Id": 9713, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-03-20T17:29:46", + "TransactionId": 44133415, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 946, + "CustomerInfo": 83594373, + "PaymentType": "Debit Card" + }, + { + "Id": 9714, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2019-11-12T18:12:06", + "TransactionId": 47069108, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 99353858, + "PaymentType": "Debit Card" + }, + { + "Id": 9715, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-04-06T15:05:54", + "TransactionId": 64886148, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 81, + "CustomerInfo": 85864238, + "PaymentType": "Debit Card" + }, + { + "Id": 9716, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2017-07-23T07:53:46", + "TransactionId": 96363767, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 524, + "CustomerInfo": 32587734, + "PaymentType": "Credit Card" + }, + { + "Id": 9717, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2018-08-07T09:54:52", + "TransactionId": 38116250, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 763, + "CustomerInfo": 19484809, + "PaymentType": "Credit Card" + }, + { + "Id": 9718, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2019-06-09T15:18:00", + "TransactionId": 79163022, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 686, + "CustomerInfo": 54420672, + "PaymentType": "Cash" + }, + { + "Id": 9719, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-07-07T08:27:19", + "TransactionId": 99523064, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 861, + "CustomerInfo": 30418906, + "PaymentType": "Cash" + }, + { + "Id": 9720, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2019-06-30T08:48:20", + "TransactionId": 4563025, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 26679036, + "PaymentType": "Cash" + }, + { + "Id": 9721, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2018-06-28T11:47:11", + "TransactionId": 79364678, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 554, + "CustomerInfo": 25801182, + "PaymentType": "Cash" + }, + { + "Id": 9722, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2018-07-01T08:00:32", + "TransactionId": 21900887, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 707, + "CustomerInfo": 33377586, + "PaymentType": "Cash" + }, + { + "Id": 9723, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-08-15T17:21:07", + "TransactionId": 76633552, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 782, + "CustomerInfo": 36719070, + "PaymentType": "Debit Card" + }, + { + "Id": 9724, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-11-27T07:20:56", + "TransactionId": 3263531, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 380, + "CustomerInfo": 15540566, + "PaymentType": "Credit Card" + }, + { + "Id": 9725, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2019-08-22T17:00:23", + "TransactionId": 57324407, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 167, + "CustomerInfo": 40299532, + "PaymentType": "Credit Card" + }, + { + "Id": 9726, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2019-12-19T15:36:17", + "TransactionId": 54700262, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 617, + "CustomerInfo": 87503988, + "PaymentType": "Credit Card" + }, + { + "Id": 9727, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2018-01-30T07:51:53", + "TransactionId": 30746729, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 5, + "CustomerInfo": 64915340, + "PaymentType": "Debit Card" + }, + { + "Id": 9728, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-08-04T07:43:15", + "TransactionId": 61024307, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 338, + "CustomerInfo": 24964978, + "PaymentType": "Debit Card" + }, + { + "Id": 9729, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-02-28T12:39:53", + "TransactionId": 81397359, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 366, + "CustomerInfo": 3077962, + "PaymentType": "Cash" + }, + { + "Id": 9730, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2016-01-15T12:56:53", + "TransactionId": 21326068, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 400, + "CustomerInfo": 28631529, + "PaymentType": "Debit Card" + }, + { + "Id": 9731, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-01-14T16:06:06", + "TransactionId": 63530362, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 679, + "CustomerInfo": 62745314, + "PaymentType": "Credit Card" + }, + { + "Id": 9732, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2017-11-18T07:23:57", + "TransactionId": 17789835, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 542, + "CustomerInfo": 10270773, + "PaymentType": "Credit Card" + }, + { + "Id": 9733, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2016-02-24T18:28:57", + "TransactionId": 3706479, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 788, + "CustomerInfo": 57924018, + "PaymentType": "Cash" + }, + { + "Id": 9734, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-01-08T13:08:50", + "TransactionId": 30562332, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 682, + "CustomerInfo": 87549283, + "PaymentType": "Debit Card" + }, + { + "Id": 9735, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-03-02T15:35:17", + "TransactionId": 81820815, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 317, + "CustomerInfo": 99332922, + "PaymentType": "Debit Card" + }, + { + "Id": 9736, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-08-02T19:14:53", + "TransactionId": 6509249, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 952, + "CustomerInfo": 57803754, + "PaymentType": "Cash" + }, + { + "Id": 9737, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2018-05-08T17:32:04", + "TransactionId": 17669392, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 1000, + "CustomerInfo": 53293263, + "PaymentType": "Debit Card" + }, + { + "Id": 9738, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2019-03-19T14:03:42", + "TransactionId": 21390184, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 210, + "CustomerInfo": 37168534, + "PaymentType": "Cash" + }, + { + "Id": 9739, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2019-07-31T12:09:48", + "TransactionId": 1484082, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 973, + "CustomerInfo": 28071706, + "PaymentType": "Debit Card" + }, + { + "Id": 9740, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2018-06-30T12:26:30", + "TransactionId": 72900976, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 102, + "CustomerInfo": 31055769, + "PaymentType": "Cash" + }, + { + "Id": 9741, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2016-04-21T10:39:48", + "TransactionId": 32714876, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 751, + "CustomerInfo": 11047939, + "PaymentType": "Cash" + }, + { + "Id": 9742, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2016-09-25T12:07:55", + "TransactionId": 10466307, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 561, + "CustomerInfo": 82142679, + "PaymentType": "Debit Card" + }, + { + "Id": 9743, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2016-09-22T16:39:48", + "TransactionId": 2024634, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 762, + "CustomerInfo": 63002881, + "PaymentType": "Cash" + }, + { + "Id": 9744, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-09-25T11:59:51", + "TransactionId": 52905936, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 819, + "CustomerInfo": 50257724, + "PaymentType": "Cash" + }, + { + "Id": 9745, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2017-12-03T08:13:55", + "TransactionId": 51636043, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 312, + "CustomerInfo": 26502917, + "PaymentType": "Cash" + }, + { + "Id": 9746, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-02-16T17:42:00", + "TransactionId": 35434081, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 28569676, + "PaymentType": "Credit Card" + }, + { + "Id": 9747, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-04-14T07:19:55", + "TransactionId": 46433171, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 183, + "CustomerInfo": 30561310, + "PaymentType": "Cash" + }, + { + "Id": 9748, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2016-11-23T17:29:46", + "TransactionId": 20128202, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 156, + "CustomerInfo": 80978829, + "PaymentType": "Cash" + }, + { + "Id": 9749, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-07-14T12:50:33", + "TransactionId": 55038334, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 554, + "CustomerInfo": 73559086, + "PaymentType": "Cash" + }, + { + "Id": 9750, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2018-12-02T09:47:05", + "TransactionId": 75844886, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 911, + "CustomerInfo": 77792308, + "PaymentType": "Cash" + }, + { + "Id": 9751, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2016-12-19T12:10:48", + "TransactionId": 93857595, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 466, + "CustomerInfo": 50058962, + "PaymentType": "Debit Card" + }, + { + "Id": 9752, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2019-11-15T16:21:30", + "TransactionId": 55675624, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 294, + "CustomerInfo": 28558270, + "PaymentType": "Credit Card" + }, + { + "Id": 9753, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2018-03-15T14:25:09", + "TransactionId": 78669150, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 456, + "CustomerInfo": 6648595, + "PaymentType": "Cash" + }, + { + "Id": 9754, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2018-04-11T10:01:55", + "TransactionId": 76792730, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 343, + "CustomerInfo": 69415789, + "PaymentType": "Debit Card" + }, + { + "Id": 9755, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2016-10-24T09:23:28", + "TransactionId": 82983893, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 74, + "CustomerInfo": 93967041, + "PaymentType": "Credit Card" + }, + { + "Id": 9756, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2019-03-10T11:54:32", + "TransactionId": 51616388, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 522, + "CustomerInfo": 90374521, + "PaymentType": "Credit Card" + }, + { + "Id": 9757, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2018-08-10T07:04:39", + "TransactionId": 94132522, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 668, + "CustomerInfo": 63201392, + "PaymentType": "Debit Card" + }, + { + "Id": 9758, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2019-04-26T14:26:01", + "TransactionId": 96007720, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 593, + "CustomerInfo": 13728533, + "PaymentType": "Cash" + }, + { + "Id": 9759, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2018-11-13T14:18:58", + "TransactionId": 40066340, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 741, + "CustomerInfo": 96220008, + "PaymentType": "Credit Card" + }, + { + "Id": 9760, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2018-08-31T13:47:34", + "TransactionId": 26486388, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 733, + "CustomerInfo": 75827714, + "PaymentType": "Credit Card" + }, + { + "Id": 9761, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2018-04-11T15:40:54", + "TransactionId": 67811300, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 101, + "CustomerInfo": 78247823, + "PaymentType": "Credit Card" + }, + { + "Id": 9762, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2018-06-17T08:38:41", + "TransactionId": 496565, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 761, + "CustomerInfo": 51511022, + "PaymentType": "Credit Card" + }, + { + "Id": 9763, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2017-12-04T15:40:28", + "TransactionId": 51263688, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 917, + "CustomerInfo": 48612492, + "PaymentType": "Credit Card" + }, + { + "Id": 9764, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2019-01-08T11:10:02", + "TransactionId": 34765591, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 39, + "CustomerInfo": 84521105, + "PaymentType": "Debit Card" + }, + { + "Id": 9765, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2017-09-10T16:18:03", + "TransactionId": 51759356, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 196, + "CustomerInfo": 55045085, + "PaymentType": "Credit Card" + }, + { + "Id": 9766, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2018-07-23T10:50:53", + "TransactionId": 31234495, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 429, + "CustomerInfo": 15475413, + "PaymentType": "Debit Card" + }, + { + "Id": 9767, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2016-09-28T14:02:33", + "TransactionId": 8076230, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 270, + "CustomerInfo": 76604935, + "PaymentType": "Credit Card" + }, + { + "Id": 9768, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2019-01-17T15:50:41", + "TransactionId": 74506665, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 958, + "CustomerInfo": 51548164, + "PaymentType": "Cash" + }, + { + "Id": 9769, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2018-09-20T16:51:36", + "TransactionId": 16959363, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 773, + "CustomerInfo": 45864262, + "PaymentType": "Cash" + }, + { + "Id": 9770, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-09-02T18:28:57", + "TransactionId": 63131077, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 538, + "CustomerInfo": 13428092, + "PaymentType": "Credit Card" + }, + { + "Id": 9771, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-11-19T15:01:09", + "TransactionId": 30832917, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 103, + "CustomerInfo": 82275981, + "PaymentType": "Cash" + }, + { + "Id": 9772, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2017-09-04T15:55:35", + "TransactionId": 68446675, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 112, + "CustomerInfo": 20610063, + "PaymentType": "Credit Card" + }, + { + "Id": 9773, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2017-11-26T17:55:24", + "TransactionId": 32129557, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 481, + "CustomerInfo": 85492699, + "PaymentType": "Debit Card" + }, + { + "Id": 9774, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-01-27T17:51:39", + "TransactionId": 6651892, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 255, + "CustomerInfo": 35761226, + "PaymentType": "Credit Card" + }, + { + "Id": 9775, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-10-22T13:14:01", + "TransactionId": 44597496, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 892, + "CustomerInfo": 73138220, + "PaymentType": "Credit Card" + }, + { + "Id": 9776, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-10-08T09:02:53", + "TransactionId": 1007657, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 8, + "CustomerInfo": 21278163, + "PaymentType": "Cash" + }, + { + "Id": 9777, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-10-15T12:48:32", + "TransactionId": 71769970, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 48266205, + "PaymentType": "Cash" + }, + { + "Id": 9778, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2018-12-05T07:17:28", + "TransactionId": 62898601, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 611, + "CustomerInfo": 77047046, + "PaymentType": "Cash" + }, + { + "Id": 9779, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-01-24T08:39:59", + "TransactionId": 87959412, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 690, + "CustomerInfo": 64849147, + "PaymentType": "Cash" + }, + { + "Id": 9780, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-03-06T14:20:59", + "TransactionId": 76453953, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 190, + "CustomerInfo": 19431505, + "PaymentType": "Debit Card" + }, + { + "Id": 9781, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-11-13T08:18:49", + "TransactionId": 56396419, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 546, + "CustomerInfo": 22173034, + "PaymentType": "Cash" + }, + { + "Id": 9782, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-08-07T11:59:51", + "TransactionId": 73300837, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 612, + "CustomerInfo": 64652751, + "PaymentType": "Cash" + }, + { + "Id": 9783, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-01-16T13:24:49", + "TransactionId": 36197983, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 9, + "CustomerInfo": 47920386, + "PaymentType": "Debit Card" + }, + { + "Id": 9784, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2018-09-15T08:48:03", + "TransactionId": 31887935, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 366, + "CustomerInfo": 74138848, + "PaymentType": "Debit Card" + }, + { + "Id": 9785, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2019-01-22T19:05:57", + "TransactionId": 7416299, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 96, + "CustomerInfo": 10651812, + "PaymentType": "Credit Card" + }, + { + "Id": 9786, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-06-09T19:18:55", + "TransactionId": 25359155, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 584, + "CustomerInfo": 23797516, + "PaymentType": "Cash" + }, + { + "Id": 9787, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2018-09-23T10:54:55", + "TransactionId": 71808245, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 101, + "CustomerInfo": 13556585, + "PaymentType": "Credit Card" + }, + { + "Id": 9788, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2017-05-01T17:12:46", + "TransactionId": 86147526, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 904, + "CustomerInfo": 19774316, + "PaymentType": "Credit Card" + }, + { + "Id": 9789, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-07-21T13:40:13", + "TransactionId": 29936554, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 867, + "CustomerInfo": 48158836, + "PaymentType": "Cash" + }, + { + "Id": 9790, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-11-25T11:10:11", + "TransactionId": 24233759, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 288, + "CustomerInfo": 12332953, + "PaymentType": "Credit Card" + }, + { + "Id": 9791, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2018-09-21T08:52:22", + "TransactionId": 80048453, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 250, + "CustomerInfo": 94266401, + "PaymentType": "Credit Card" + }, + { + "Id": 9792, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2017-04-29T17:54:14", + "TransactionId": 70346515, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 228, + "CustomerInfo": 38064585, + "PaymentType": "Debit Card" + }, + { + "Id": 9793, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2016-11-05T09:14:59", + "TransactionId": 97518381, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 392, + "CustomerInfo": 20771105, + "PaymentType": "Credit Card" + }, + { + "Id": 9794, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2017-06-20T07:01:03", + "TransactionId": 30947486, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 725, + "CustomerInfo": 58112718, + "PaymentType": "Debit Card" + }, + { + "Id": 9795, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2018-08-10T10:37:47", + "TransactionId": 77481873, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 647, + "CustomerInfo": 56288831, + "PaymentType": "Cash" + }, + { + "Id": 9796, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2017-02-03T15:24:12", + "TransactionId": 43799229, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 42, + "CustomerInfo": 15491191, + "PaymentType": "Credit Card" + }, + { + "Id": 9797, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2016-06-17T10:01:03", + "TransactionId": 21251277, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 882, + "CustomerInfo": 82666011, + "PaymentType": "Debit Card" + }, + { + "Id": 9798, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2016-02-04T09:06:55", + "TransactionId": 48738590, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 377, + "CustomerInfo": 82784460, + "PaymentType": "Debit Card" + }, + { + "Id": 9799, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2017-04-29T18:58:02", + "TransactionId": 71017794, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 524, + "CustomerInfo": 35865829, + "PaymentType": "Debit Card" + }, + { + "Id": 9800, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-05-23T17:38:50", + "TransactionId": 21008366, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 308, + "CustomerInfo": 16160377, + "PaymentType": "Debit Card" + }, + { + "Id": 9801, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2017-07-12T10:12:35", + "TransactionId": 84727454, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 206, + "CustomerInfo": 28112614, + "PaymentType": "Credit Card" + }, + { + "Id": 9802, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-09-10T19:22:57", + "TransactionId": 50189937, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 401, + "CustomerInfo": 96522989, + "PaymentType": "Credit Card" + }, + { + "Id": 9803, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-08-28T12:02:18", + "TransactionId": 78146028, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 807, + "CustomerInfo": 55571678, + "PaymentType": "Debit Card" + }, + { + "Id": 9804, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-06-11T16:55:21", + "TransactionId": 94187069, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 50238667, + "PaymentType": "Debit Card" + }, + { + "Id": 9805, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-10-18T09:48:40", + "TransactionId": 42431021, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 406, + "CustomerInfo": 41065137, + "PaymentType": "Cash" + }, + { + "Id": 9806, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-04-26T17:09:27", + "TransactionId": 25273461, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 945, + "CustomerInfo": 44623777, + "PaymentType": "Credit Card" + }, + { + "Id": 9807, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2016-02-24T19:54:03", + "TransactionId": 3773101, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 315, + "CustomerInfo": 72295951, + "PaymentType": "Cash" + }, + { + "Id": 9808, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-11-08T10:56:47", + "TransactionId": 26040640, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 674, + "CustomerInfo": 82254733, + "PaymentType": "Debit Card" + }, + { + "Id": 9809, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2016-11-09T19:28:34", + "TransactionId": 98573927, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 34, + "CustomerInfo": 86917806, + "PaymentType": "Debit Card" + }, + { + "Id": 9810, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2018-03-07T16:52:11", + "TransactionId": 94719410, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 921, + "CustomerInfo": 8677098, + "PaymentType": "Cash" + }, + { + "Id": 9811, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2017-11-24T15:53:00", + "TransactionId": 16327675, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 831, + "CustomerInfo": 27729268, + "PaymentType": "Cash" + }, + { + "Id": 9812, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2018-02-14T11:22:25", + "TransactionId": 3680679, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 322, + "CustomerInfo": 23301411, + "PaymentType": "Debit Card" + }, + { + "Id": 9813, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2017-02-08T18:12:14", + "TransactionId": 75717123, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 822, + "CustomerInfo": 8484450, + "PaymentType": "Debit Card" + }, + { + "Id": 9814, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2016-06-17T16:23:05", + "TransactionId": 37976113, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 920, + "CustomerInfo": 84695458, + "PaymentType": "Cash" + }, + { + "Id": 9815, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2016-10-10T16:12:00", + "TransactionId": 19577891, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 492, + "CustomerInfo": 52173181, + "PaymentType": "Debit Card" + }, + { + "Id": 9816, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2016-08-25T13:51:19", + "TransactionId": 16251794, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 500, + "CustomerInfo": 32146016, + "PaymentType": "Credit Card" + }, + { + "Id": 9817, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2016-01-16T11:34:39", + "TransactionId": 8388855, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 642, + "CustomerInfo": 39489831, + "PaymentType": "Credit Card" + }, + { + "Id": 9818, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-08-10T13:18:29", + "TransactionId": 53945694, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 206, + "CustomerInfo": 42509601, + "PaymentType": "Credit Card" + }, + { + "Id": 9819, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2016-01-09T08:16:22", + "TransactionId": 51256959, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 223, + "CustomerInfo": 20114525, + "PaymentType": "Credit Card" + }, + { + "Id": 9820, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2016-07-09T19:56:04", + "TransactionId": 5360480, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 76, + "CustomerInfo": 50307183, + "PaymentType": "Cash" + }, + { + "Id": 9821, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-03-24T09:32:07", + "TransactionId": 57163271, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 145, + "CustomerInfo": 34089889, + "PaymentType": "Cash" + }, + { + "Id": 9822, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2017-11-26T10:32:10", + "TransactionId": 72874975, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 362, + "CustomerInfo": 93449086, + "PaymentType": "Credit Card" + }, + { + "Id": 9823, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2017-02-07T15:17:00", + "TransactionId": 62318189, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 754, + "CustomerInfo": 36783983, + "PaymentType": "Credit Card" + }, + { + "Id": 9824, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-08-12T08:13:38", + "TransactionId": 62968602, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 432, + "CustomerInfo": 26342022, + "PaymentType": "Cash" + }, + { + "Id": 9825, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2017-04-27T10:25:58", + "TransactionId": 86809269, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 175, + "CustomerInfo": 68006403, + "PaymentType": "Debit Card" + }, + { + "Id": 9826, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-11-24T19:59:23", + "TransactionId": 73311515, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 11, + "CustomerInfo": 16720605, + "PaymentType": "Cash" + }, + { + "Id": 9827, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2016-09-19T15:32:50", + "TransactionId": 45699609, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 468, + "CustomerInfo": 19352073, + "PaymentType": "Cash" + }, + { + "Id": 9828, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-09-17T11:18:06", + "TransactionId": 86420023, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 218, + "CustomerInfo": 29654444, + "PaymentType": "Cash" + }, + { + "Id": 9829, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2019-03-28T07:25:49", + "TransactionId": 4418278, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 755, + "CustomerInfo": 39009685, + "PaymentType": "Cash" + }, + { + "Id": 9830, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2016-01-20T07:11:17", + "TransactionId": 57957479, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 159, + "CustomerInfo": 22607208, + "PaymentType": "Credit Card" + }, + { + "Id": 9831, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2019-06-11T08:17:57", + "TransactionId": 16381904, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 806, + "CustomerInfo": 77619264, + "PaymentType": "Cash" + }, + { + "Id": 9832, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-07-28T14:42:52", + "TransactionId": 70308010, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 930, + "CustomerInfo": 98032134, + "PaymentType": "Credit Card" + }, + { + "Id": 9833, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2017-07-11T19:15:36", + "TransactionId": 23746556, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 265, + "CustomerInfo": 60818398, + "PaymentType": "Credit Card" + }, + { + "Id": 9834, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2018-03-06T11:28:11", + "TransactionId": 70410835, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 308, + "CustomerInfo": 74811853, + "PaymentType": "Credit Card" + }, + { + "Id": 9835, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2019-09-07T13:00:37", + "TransactionId": 43313623, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 785, + "CustomerInfo": 78247136, + "PaymentType": "Cash" + }, + { + "Id": 9836, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-10-24T12:44:47", + "TransactionId": 23241114, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 525, + "CustomerInfo": 87601434, + "PaymentType": "Credit Card" + }, + { + "Id": 9837, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-05-12T17:35:31", + "TransactionId": 95422655, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 769, + "CustomerInfo": 29530771, + "PaymentType": "Cash" + }, + { + "Id": 9838, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2019-03-17T09:14:50", + "TransactionId": 47753083, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 986, + "CustomerInfo": 88843894, + "PaymentType": "Credit Card" + }, + { + "Id": 9839, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2017-04-12T14:19:24", + "TransactionId": 21174216, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 661, + "CustomerInfo": 75434564, + "PaymentType": "Credit Card" + }, + { + "Id": 9840, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2017-01-28T11:46:19", + "TransactionId": 26977990, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 344, + "CustomerInfo": 28728600, + "PaymentType": "Debit Card" + }, + { + "Id": 9841, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2017-06-15T16:16:19", + "TransactionId": 47800384, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 520, + "CustomerInfo": 3920666, + "PaymentType": "Debit Card" + }, + { + "Id": 9842, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-11-13T17:21:59", + "TransactionId": 68777154, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 271, + "CustomerInfo": 56775743, + "PaymentType": "Debit Card" + }, + { + "Id": 9843, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-09-23T11:46:19", + "TransactionId": 52486472, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 625, + "CustomerInfo": 84186891, + "PaymentType": "Debit Card" + }, + { + "Id": 9844, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2016-01-10T11:41:00", + "TransactionId": 52193409, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 62, + "CustomerInfo": 84691316, + "PaymentType": "Credit Card" + }, + { + "Id": 9845, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-11-16T18:07:38", + "TransactionId": 95957713, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 312, + "CustomerInfo": 2817944, + "PaymentType": "Debit Card" + }, + { + "Id": 9846, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-10-27T17:35:48", + "TransactionId": 21022353, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 651, + "CustomerInfo": 1551074, + "PaymentType": "Cash" + }, + { + "Id": 9847, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2016-07-25T08:16:57", + "TransactionId": 67247268, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 931, + "CustomerInfo": 35236182, + "PaymentType": "Debit Card" + }, + { + "Id": 9848, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-06-20T16:39:39", + "TransactionId": 99863293, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 58, + "CustomerInfo": 29722812, + "PaymentType": "Debit Card" + }, + { + "Id": 9849, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2019-10-25T08:38:50", + "TransactionId": 23956112, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 850, + "CustomerInfo": 85161899, + "PaymentType": "Credit Card" + }, + { + "Id": 9850, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2016-08-09T17:54:14", + "TransactionId": 39167568, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 610, + "CustomerInfo": 42806046, + "PaymentType": "Debit Card" + }, + { + "Id": 9851, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-08-10T09:31:06", + "TransactionId": 82170593, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 344, + "CustomerInfo": 56035838, + "PaymentType": "Debit Card" + }, + { + "Id": 9852, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2019-03-30T10:14:10", + "TransactionId": 31928467, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 619, + "CustomerInfo": 67763727, + "PaymentType": "Credit Card" + }, + { + "Id": 9853, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2016-01-10T16:26:50", + "TransactionId": 84006797, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 651, + "CustomerInfo": 43357956, + "PaymentType": "Debit Card" + }, + { + "Id": 9854, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2017-05-02T18:40:54", + "TransactionId": 4145629, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 415, + "CustomerInfo": 29043090, + "PaymentType": "Credit Card" + }, + { + "Id": 9855, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2018-07-17T16:50:36", + "TransactionId": 8643362, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 211, + "CustomerInfo": 82622340, + "PaymentType": "Debit Card" + }, + { + "Id": 9856, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-07-22T08:22:51", + "TransactionId": 12415602, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 51, + "CustomerInfo": 2797253, + "PaymentType": "Cash" + }, + { + "Id": 9857, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-11-12T13:25:41", + "TransactionId": 92186866, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 897, + "CustomerInfo": 31957417, + "PaymentType": "Credit Card" + }, + { + "Id": 9858, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2019-05-06T16:54:20", + "TransactionId": 96170468, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 44, + "CustomerInfo": 54954203, + "PaymentType": "Debit Card" + }, + { + "Id": 9859, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-09-02T11:47:28", + "TransactionId": 65593200, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 522, + "CustomerInfo": 34148456, + "PaymentType": "Cash" + }, + { + "Id": 9860, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-05-31T15:53:34", + "TransactionId": 7499342, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 67523106, + "PaymentType": "Credit Card" + }, + { + "Id": 9861, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-03-18T17:12:46", + "TransactionId": 56611325, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 208, + "CustomerInfo": 97084478, + "PaymentType": "Cash" + }, + { + "Id": 9862, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-08-22T14:58:42", + "TransactionId": 19465663, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 55, + "CustomerInfo": 31722414, + "PaymentType": "Cash" + }, + { + "Id": 9863, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2017-03-01T18:54:43", + "TransactionId": 49756299, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 250, + "CustomerInfo": 46711119, + "PaymentType": "Cash" + }, + { + "Id": 9864, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-12-20T19:31:00", + "TransactionId": 72358922, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 691, + "CustomerInfo": 35102343, + "PaymentType": "Cash" + }, + { + "Id": 9865, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2017-03-26T17:49:21", + "TransactionId": 26655634, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 136, + "CustomerInfo": 16114503, + "PaymentType": "Debit Card" + }, + { + "Id": 9866, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-04-18T12:53:43", + "TransactionId": 9530263, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 275, + "CustomerInfo": 53731366, + "PaymentType": "Debit Card" + }, + { + "Id": 9867, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-11-17T16:07:24", + "TransactionId": 34585830, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 259, + "CustomerInfo": 89259150, + "PaymentType": "Debit Card" + }, + { + "Id": 9868, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2018-02-05T15:44:04", + "TransactionId": 94869158, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 395, + "CustomerInfo": 49250537, + "PaymentType": "Credit Card" + }, + { + "Id": 9869, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2018-12-10T07:12:09", + "TransactionId": 56126750, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 424, + "CustomerInfo": 20197704, + "PaymentType": "Debit Card" + }, + { + "Id": 9870, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2016-04-16T18:54:00", + "TransactionId": 95652373, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 653, + "CustomerInfo": 72714393, + "PaymentType": "Debit Card" + }, + { + "Id": 9871, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2017-11-18T10:58:22", + "TransactionId": 32537296, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 4, + "CustomerInfo": 64546551, + "PaymentType": "Cash" + }, + { + "Id": 9872, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-04-22T07:33:10", + "TransactionId": 61006572, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 711, + "CustomerInfo": 54428254, + "PaymentType": "Cash" + }, + { + "Id": 9873, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2017-10-24T07:00:29", + "TransactionId": 42324100, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 86, + "CustomerInfo": 18789862, + "PaymentType": "Credit Card" + }, + { + "Id": 9874, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2019-07-17T13:31:44", + "TransactionId": 47857488, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 667, + "CustomerInfo": 35495416, + "PaymentType": "Credit Card" + }, + { + "Id": 9875, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2017-07-01T10:00:12", + "TransactionId": 90112277, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 94, + "CustomerInfo": 23589994, + "PaymentType": "Debit Card" + }, + { + "Id": 9876, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2017-06-30T08:25:09", + "TransactionId": 53585637, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 548, + "CustomerInfo": 98662238, + "PaymentType": "Debit Card" + }, + { + "Id": 9877, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2017-01-05T16:53:11", + "TransactionId": 80425090, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 53, + "CustomerInfo": 50277998, + "PaymentType": "Cash" + }, + { + "Id": 9878, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2018-05-20T16:04:31", + "TransactionId": 83759227, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 27200190, + "PaymentType": "Cash" + }, + { + "Id": 9879, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-11-23T15:01:00", + "TransactionId": 8706035, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 476, + "CustomerInfo": 14307775, + "PaymentType": "Debit Card" + }, + { + "Id": 9880, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-10-10T19:47:00", + "TransactionId": 88057913, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 6069811, + "PaymentType": "Cash" + }, + { + "Id": 9881, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2017-07-16T16:41:31", + "TransactionId": 96461937, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 536, + "CustomerInfo": 60885519, + "PaymentType": "Credit Card" + }, + { + "Id": 9882, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-11-02T10:32:10", + "TransactionId": 26516222, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 746, + "CustomerInfo": 3717579, + "PaymentType": "Debit Card" + }, + { + "Id": 9883, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-06-21T10:28:08", + "TransactionId": 77012718, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 251, + "CustomerInfo": 80480785, + "PaymentType": "Credit Card" + }, + { + "Id": 9884, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2017-03-27T12:03:45", + "TransactionId": 82365583, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 879, + "CustomerInfo": 15552741, + "PaymentType": "Credit Card" + }, + { + "Id": 9885, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2016-02-22T18:52:25", + "TransactionId": 73966669, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 976, + "CustomerInfo": 44237693, + "PaymentType": "Debit Card" + }, + { + "Id": 9886, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2016-10-15T14:21:50", + "TransactionId": 95039475, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 20, + "CustomerInfo": 90064042, + "PaymentType": "Credit Card" + }, + { + "Id": 9887, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2018-02-01T13:57:48", + "TransactionId": 39441723, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 769, + "CustomerInfo": 95215688, + "PaymentType": "Credit Card" + }, + { + "Id": 9888, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2019-09-30T09:54:35", + "TransactionId": 9106158, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 715, + "CustomerInfo": 30425195, + "PaymentType": "Cash" + }, + { + "Id": 9889, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-05-28T08:18:40", + "TransactionId": 14897756, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 605, + "CustomerInfo": 94554971, + "PaymentType": "Cash" + }, + { + "Id": 9890, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-02-26T19:58:05", + "TransactionId": 8125299, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 421, + "CustomerInfo": 18281754, + "PaymentType": "Debit Card" + }, + { + "Id": 9891, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2018-02-25T18:29:14", + "TransactionId": 57411182, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 650, + "CustomerInfo": 61234020, + "PaymentType": "Debit Card" + }, + { + "Id": 9892, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-10-24T09:25:12", + "TransactionId": 32232807, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 100, + "CustomerInfo": 69842185, + "PaymentType": "Debit Card" + }, + { + "Id": 9893, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2017-12-22T13:28:51", + "TransactionId": 59356187, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 54, + "CustomerInfo": 27348084, + "PaymentType": "Cash" + }, + { + "Id": 9894, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-06-02T14:17:14", + "TransactionId": 97388588, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 995, + "CustomerInfo": 6251388, + "PaymentType": "Credit Card" + }, + { + "Id": 9895, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-12-15T07:48:43", + "TransactionId": 667398, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 82, + "CustomerInfo": 51002684, + "PaymentType": "Credit Card" + }, + { + "Id": 9896, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2018-11-21T09:35:08", + "TransactionId": 50681504, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 614, + "CustomerInfo": 71046190, + "PaymentType": "Credit Card" + }, + { + "Id": 9897, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2018-01-16T08:38:41", + "TransactionId": 31286949, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 282, + "CustomerInfo": 79564758, + "PaymentType": "Cash" + }, + { + "Id": 9898, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2019-06-16T09:50:07", + "TransactionId": 86084547, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 681, + "CustomerInfo": 76325925, + "PaymentType": "Cash" + }, + { + "Id": 9899, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2019-11-30T10:02:21", + "TransactionId": 85393275, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 976, + "CustomerInfo": 45825076, + "PaymentType": "Cash" + }, + { + "Id": 9900, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2017-03-14T18:14:07", + "TransactionId": 18968194, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 518, + "CustomerInfo": 79582605, + "PaymentType": "Credit Card" + }, + { + "Id": 9901, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2018-02-24T19:47:43", + "TransactionId": 83418528, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 262, + "CustomerInfo": 27653590, + "PaymentType": "Debit Card" + }, + { + "Id": 9902, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-04-14T14:31:55", + "TransactionId": 35262659, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 65, + "CustomerInfo": 86429011, + "PaymentType": "Cash" + }, + { + "Id": 9903, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2017-11-04T09:48:58", + "TransactionId": 69461534, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 883, + "CustomerInfo": 73394443, + "PaymentType": "Credit Card" + }, + { + "Id": 9904, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2019-11-08T14:34:39", + "TransactionId": 12683445, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 532, + "CustomerInfo": 65646587, + "PaymentType": "Credit Card" + }, + { + "Id": 9905, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-01-03T13:08:24", + "TransactionId": 1149609, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 519, + "CustomerInfo": 10312252, + "PaymentType": "Credit Card" + }, + { + "Id": 9906, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2016-10-27T19:14:18", + "TransactionId": 94062110, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 853, + "CustomerInfo": 49795169, + "PaymentType": "Cash" + }, + { + "Id": 9907, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-04-13T16:03:22", + "TransactionId": 61052757, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 857, + "CustomerInfo": 67529108, + "PaymentType": "Debit Card" + }, + { + "Id": 9908, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2016-04-16T08:10:28", + "TransactionId": 32970188, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 698, + "CustomerInfo": 76731816, + "PaymentType": "Debit Card" + }, + { + "Id": 9909, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2019-03-30T18:12:23", + "TransactionId": 86575962, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 472, + "CustomerInfo": 15301208, + "PaymentType": "Debit Card" + }, + { + "Id": 9910, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-08-24T10:31:09", + "TransactionId": 93840565, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 30, + "CustomerInfo": 28013631, + "PaymentType": "Credit Card" + }, + { + "Id": 9911, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2018-02-25T16:19:29", + "TransactionId": 55625970, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 705, + "CustomerInfo": 50750253, + "PaymentType": "Cash" + }, + { + "Id": 9912, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2016-01-16T16:30:52", + "TransactionId": 52988120, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 799, + "CustomerInfo": 1442415, + "PaymentType": "Cash" + }, + { + "Id": 9913, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-10-21T07:46:16", + "TransactionId": 13413223, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 493, + "CustomerInfo": 2304520, + "PaymentType": "Credit Card" + }, + { + "Id": 9914, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-10-30T19:25:06", + "TransactionId": 2246910, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 695, + "CustomerInfo": 53930575, + "PaymentType": "Credit Card" + }, + { + "Id": 9915, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-07-15T18:58:28", + "TransactionId": 53040015, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 667, + "CustomerInfo": 30788214, + "PaymentType": "Credit Card" + }, + { + "Id": 9916, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2017-03-17T11:37:32", + "TransactionId": 80270449, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 329, + "CustomerInfo": 77972125, + "PaymentType": "Credit Card" + }, + { + "Id": 9917, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2019-12-21T13:42:49", + "TransactionId": 27850344, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 462, + "CustomerInfo": 93646451, + "PaymentType": "Cash" + }, + { + "Id": 9918, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2019-12-17T19:50:10", + "TransactionId": 67807047, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 355, + "CustomerInfo": 74190855, + "PaymentType": "Credit Card" + }, + { + "Id": 9919, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-07-16T07:42:32", + "TransactionId": 98269613, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 2, + "CustomerInfo": 51839715, + "PaymentType": "Cash" + }, + { + "Id": 9920, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-03-12T15:24:03", + "TransactionId": 42801705, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 232, + "CustomerInfo": 39993117, + "PaymentType": "Debit Card" + }, + { + "Id": 9921, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2017-08-09T09:36:43", + "TransactionId": 1905514, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 927, + "CustomerInfo": 31081021, + "PaymentType": "Cash" + }, + { + "Id": 9922, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-03-23T11:09:19", + "TransactionId": 66758562, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 117, + "CustomerInfo": 7657468, + "PaymentType": "Debit Card" + }, + { + "Id": 9923, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-05-21T10:39:56", + "TransactionId": 28650780, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 744, + "CustomerInfo": 39496501, + "PaymentType": "Debit Card" + }, + { + "Id": 9924, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2017-02-28T14:12:46", + "TransactionId": 96191101, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 49, + "CustomerInfo": 1688077, + "PaymentType": "Debit Card" + }, + { + "Id": 9925, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2018-04-14T17:33:22", + "TransactionId": 27573327, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 535, + "CustomerInfo": 3979398, + "PaymentType": "Debit Card" + }, + { + "Id": 9926, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2017-04-03T18:29:23", + "TransactionId": 51041319, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 433, + "CustomerInfo": 44428508, + "PaymentType": "Debit Card" + }, + { + "Id": 9927, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-07-08T15:26:12", + "TransactionId": 69233218, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 443, + "CustomerInfo": 71121287, + "PaymentType": "Credit Card" + }, + { + "Id": 9928, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2017-11-18T07:29:08", + "TransactionId": 22041389, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 652, + "CustomerInfo": 51193563, + "PaymentType": "Credit Card" + }, + { + "Id": 9929, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-02-18T19:23:48", + "TransactionId": 10880725, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 367, + "CustomerInfo": 16507105, + "PaymentType": "Cash" + }, + { + "Id": 9930, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2016-06-25T08:04:08", + "TransactionId": 42447713, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 732, + "CustomerInfo": 21835658, + "PaymentType": "Debit Card" + }, + { + "Id": 9931, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2018-01-18T14:20:24", + "TransactionId": 41413500, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 829, + "CustomerInfo": 22597256, + "PaymentType": "Debit Card" + }, + { + "Id": 9932, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-01-21T14:17:48", + "TransactionId": 15864491, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 771, + "CustomerInfo": 6017218, + "PaymentType": "Debit Card" + }, + { + "Id": 9933, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2017-07-19T11:16:05", + "TransactionId": 75239066, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 708, + "CustomerInfo": 42865988, + "PaymentType": "Credit Card" + }, + { + "Id": 9934, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2019-06-01T16:54:37", + "TransactionId": 62766249, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 50611865, + "PaymentType": "Debit Card" + }, + { + "Id": 9935, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2019-03-25T14:46:19", + "TransactionId": 29846094, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 933, + "CustomerInfo": 53174697, + "PaymentType": "Cash" + }, + { + "Id": 9936, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2016-08-21T09:36:35", + "TransactionId": 55760873, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 870, + "CustomerInfo": 53140073, + "PaymentType": "Debit Card" + }, + { + "Id": 9937, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2019-03-19T10:27:42", + "TransactionId": 39025314, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 220, + "CustomerInfo": 94444035, + "PaymentType": "Credit Card" + }, + { + "Id": 9938, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2017-03-07T14:33:56", + "TransactionId": 73114263, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 345, + "CustomerInfo": 40104617, + "PaymentType": "Cash" + }, + { + "Id": 9939, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-05-08T13:45:16", + "TransactionId": 82837518, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 83, + "CustomerInfo": 61072449, + "PaymentType": "Cash" + }, + { + "Id": 9940, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-07-16T18:42:55", + "TransactionId": 78336832, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 910, + "CustomerInfo": 80861682, + "PaymentType": "Debit Card" + }, + { + "Id": 9941, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2019-11-14T12:36:09", + "TransactionId": 8275635, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 679, + "CustomerInfo": 59011083, + "PaymentType": "Debit Card" + }, + { + "Id": 9942, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-10-02T13:38:56", + "TransactionId": 57671784, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 741, + "CustomerInfo": 13088541, + "PaymentType": "Cash" + }, + { + "Id": 9943, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2016-02-02T17:59:51", + "TransactionId": 5293730, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 138, + "CustomerInfo": 96976054, + "PaymentType": "Debit Card" + }, + { + "Id": 9944, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2019-01-05T12:28:05", + "TransactionId": 86928722, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 421, + "CustomerInfo": 88864709, + "PaymentType": "Credit Card" + }, + { + "Id": 9945, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-10-04T15:03:53", + "TransactionId": 68548697, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 968, + "CustomerInfo": 17299381, + "PaymentType": "Cash" + }, + { + "Id": 9946, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-10-14T14:21:33", + "TransactionId": 87890682, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 4, + "CustomerInfo": 71499513, + "PaymentType": "Cash" + }, + { + "Id": 9947, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2017-01-04T12:10:05", + "TransactionId": 22919041, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 49, + "CustomerInfo": 57063539, + "PaymentType": "Credit Card" + }, + { + "Id": 9948, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2017-11-30T09:47:31", + "TransactionId": 52224803, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 862, + "CustomerInfo": 32125592, + "PaymentType": "Credit Card" + }, + { + "Id": 9949, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2019-02-13T09:40:19", + "TransactionId": 61405926, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 226, + "CustomerInfo": 87243111, + "PaymentType": "Cash" + }, + { + "Id": 9950, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-09-03T10:33:01", + "TransactionId": 81364264, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 454, + "CustomerInfo": 7043035, + "PaymentType": "Debit Card" + }, + { + "Id": 9951, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2017-12-26T15:28:31", + "TransactionId": 21885941, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 89581512, + "PaymentType": "Cash" + }, + { + "Id": 9952, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-02-28T12:40:28", + "TransactionId": 47069825, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 790, + "CustomerInfo": 57638416, + "PaymentType": "Credit Card" + }, + { + "Id": 9953, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-03-19T11:11:20", + "TransactionId": 77264830, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 144, + "CustomerInfo": 44061537, + "PaymentType": "Credit Card" + }, + { + "Id": 9954, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-01-27T16:33:45", + "TransactionId": 38496936, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 888, + "CustomerInfo": 4904030, + "PaymentType": "Credit Card" + }, + { + "Id": 9955, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2016-11-19T18:50:24", + "TransactionId": 71297167, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 360, + "CustomerInfo": 32205026, + "PaymentType": "Debit Card" + }, + { + "Id": 9956, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-12-21T14:30:37", + "TransactionId": 95636299, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 778, + "CustomerInfo": 68694762, + "PaymentType": "Debit Card" + }, + { + "Id": 9957, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2016-06-08T17:44:10", + "TransactionId": 28110403, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 691, + "CustomerInfo": 45335646, + "PaymentType": "Debit Card" + }, + { + "Id": 9958, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2018-11-20T10:06:06", + "TransactionId": 85258270, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 833, + "CustomerInfo": 46977395, + "PaymentType": "Cash" + }, + { + "Id": 9959, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-03-20T13:56:38", + "TransactionId": 49973118, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 473, + "CustomerInfo": 28810220, + "PaymentType": "Cash" + }, + { + "Id": 9960, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2016-08-17T18:56:44", + "TransactionId": 56615034, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 404, + "CustomerInfo": 38070739, + "PaymentType": "Debit Card" + }, + { + "Id": 9961, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2016-09-13T15:53:00", + "TransactionId": 85886848, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 182, + "CustomerInfo": 33818048, + "PaymentType": "Credit Card" + }, + { + "Id": 9962, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-04-17T09:22:11", + "TransactionId": 65532641, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 910, + "CustomerInfo": 38623694, + "PaymentType": "Cash" + }, + { + "Id": 9963, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-05-22T07:41:05", + "TransactionId": 23813308, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 28, + "CustomerInfo": 90903782, + "PaymentType": "Cash" + }, + { + "Id": 9964, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-07-20T16:18:29", + "TransactionId": 52848036, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 33, + "CustomerInfo": 98892086, + "PaymentType": "Cash" + }, + { + "Id": 9965, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2017-04-07T13:57:13", + "TransactionId": 56465428, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 884, + "CustomerInfo": 74119246, + "PaymentType": "Debit Card" + }, + { + "Id": 9966, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-02-12T08:33:22", + "TransactionId": 80455559, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 867, + "CustomerInfo": 84973550, + "PaymentType": "Cash" + }, + { + "Id": 9967, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-09-15T10:05:57", + "TransactionId": 80229026, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 890, + "CustomerInfo": 62498785, + "PaymentType": "Credit Card" + }, + { + "Id": 9968, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2017-03-10T11:56:59", + "TransactionId": 52291902, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 35, + "CustomerInfo": 64148300, + "PaymentType": "Debit Card" + }, + { + "Id": 9969, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-12-03T09:30:58", + "TransactionId": 95075142, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 461, + "CustomerInfo": 39257547, + "PaymentType": "Debit Card" + }, + { + "Id": 9970, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2017-12-04T07:25:41", + "TransactionId": 54114393, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 843, + "CustomerInfo": 12820292, + "PaymentType": "Credit Card" + }, + { + "Id": 9971, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-12-07T13:07:32", + "TransactionId": 41939177, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 937, + "CustomerInfo": 28360569, + "PaymentType": "Credit Card" + }, + { + "Id": 9972, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-10-10T13:44:50", + "TransactionId": 46829932, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 255, + "CustomerInfo": 28807901, + "PaymentType": "Cash" + }, + { + "Id": 9973, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-03-03T08:18:14", + "TransactionId": 67588005, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 432, + "CustomerInfo": 69860708, + "PaymentType": "Debit Card" + }, + { + "Id": 9974, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2018-11-17T10:01:47", + "TransactionId": 21054608, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 368, + "CustomerInfo": 72596795, + "PaymentType": "Cash" + }, + { + "Id": 9975, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2016-12-30T15:40:45", + "TransactionId": 25613790, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 61, + "CustomerInfo": 77218746, + "PaymentType": "Debit Card" + }, + { + "Id": 9976, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-06-27T08:23:34", + "TransactionId": 94999969, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 357, + "CustomerInfo": 559499, + "PaymentType": "Cash" + }, + { + "Id": 9977, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2017-01-26T13:17:02", + "TransactionId": 22785865, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 97, + "CustomerInfo": 40641192, + "PaymentType": "Debit Card" + }, + { + "Id": 9978, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-09-08T11:35:23", + "TransactionId": 57763438, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 966, + "CustomerInfo": 57092044, + "PaymentType": "Debit Card" + }, + { + "Id": 9979, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2016-10-13T15:19:09", + "TransactionId": 56113180, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 224, + "CustomerInfo": 23870346, + "PaymentType": "Cash" + }, + { + "Id": 9980, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-11-01T11:19:41", + "TransactionId": 35228751, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 196, + "CustomerInfo": 80623199, + "PaymentType": "Cash" + }, + { + "Id": 9981, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-01-21T19:48:43", + "TransactionId": 56793883, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 984, + "CustomerInfo": 66839338, + "PaymentType": "Debit Card" + }, + { + "Id": 9982, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-02-07T17:41:25", + "TransactionId": 23707983, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 318, + "CustomerInfo": 88496196, + "PaymentType": "Cash" + }, + { + "Id": 9983, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2016-09-01T10:56:12", + "TransactionId": 39328303, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 841, + "CustomerInfo": 27405283, + "PaymentType": "Debit Card" + }, + { + "Id": 9984, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-07-22T11:08:36", + "TransactionId": 99979372, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 623, + "CustomerInfo": 15112709, + "PaymentType": "Credit Card" + }, + { + "Id": 9985, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-11-26T18:30:49", + "TransactionId": 72504999, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 288, + "CustomerInfo": 4350752, + "PaymentType": "Cash" + }, + { + "Id": 9986, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-10-31T10:08:59", + "TransactionId": 23649953, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 445, + "CustomerInfo": 1107256, + "PaymentType": "Credit Card" + }, + { + "Id": 9987, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-08-01T11:37:41", + "TransactionId": 3673102, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 145, + "CustomerInfo": 15069371, + "PaymentType": "Cash" + }, + { + "Id": 9988, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-07-30T17:49:47", + "TransactionId": 4292208, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 107, + "CustomerInfo": 37179425, + "PaymentType": "Cash" + }, + { + "Id": 9989, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2018-07-10T08:49:29", + "TransactionId": 66319389, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 150, + "CustomerInfo": 45961171, + "PaymentType": "Credit Card" + }, + { + "Id": 9990, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-04-07T11:25:52", + "TransactionId": 64417238, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 614, + "CustomerInfo": 84335643, + "PaymentType": "Debit Card" + }, + { + "Id": 9991, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2017-02-21T13:04:57", + "TransactionId": 35414661, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 70, + "CustomerInfo": 30980088, + "PaymentType": "Debit Card" + }, + { + "Id": 9992, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2019-01-26T08:23:34", + "TransactionId": 64768477, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 875, + "CustomerInfo": 59567610, + "PaymentType": "Cash" + }, + { + "Id": 9993, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-05-18T13:00:20", + "TransactionId": 63390926, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 947, + "CustomerInfo": 45901197, + "PaymentType": "Debit Card" + }, + { + "Id": 9994, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2019-05-17T09:56:27", + "TransactionId": 33488950, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 54, + "CustomerInfo": 74048819, + "PaymentType": "Cash" + }, + { + "Id": 9995, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-01-09T12:41:02", + "TransactionId": 67420022, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 147, + "CustomerInfo": 7264628, + "PaymentType": "Debit Card" + }, + { + "Id": 9996, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2016-05-07T19:31:26", + "TransactionId": 71901372, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 952, + "CustomerInfo": 6572549, + "PaymentType": "Debit Card" + }, + { + "Id": 9997, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-09-23T15:07:29", + "TransactionId": 62364350, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 602, + "CustomerInfo": 95713424, + "PaymentType": "Cash" + }, + { + "Id": 9998, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-06-13T12:00:26", + "TransactionId": 45814547, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 733, + "CustomerInfo": 50258849, + "PaymentType": "Debit Card" + }, + { + "Id": 9999, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-03-15T14:43:44", + "TransactionId": 80584818, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 172, + "CustomerInfo": 57718346, + "PaymentType": "Cash" + }, + { + "Id": 10000, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2016-01-20T09:28:57", + "TransactionId": 7464222, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 567, + "CustomerInfo": 46516069, + "PaymentType": "Debit Card" + }, + { + "Id": 10001, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-03-24T09:36:52", + "TransactionId": 54294158, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 599, + "CustomerInfo": 23118957, + "PaymentType": "Debit Card" + }, + { + "Id": 10002, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2017-01-15T14:54:58", + "TransactionId": 36460281, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 477, + "CustomerInfo": 49962060, + "PaymentType": "Cash" + }, + { + "Id": 10003, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2018-06-10T18:20:10", + "TransactionId": 14351668, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 200, + "CustomerInfo": 25202068, + "PaymentType": "Cash" + }, + { + "Id": 10004, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2016-02-13T08:57:50", + "TransactionId": 29548311, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 822, + "CustomerInfo": 58218587, + "PaymentType": "Cash" + }, + { + "Id": 10005, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-10-03T09:40:45", + "TransactionId": 50001271, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 420, + "CustomerInfo": 54062261, + "PaymentType": "Credit Card" + }, + { + "Id": 10006, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-04-06T16:23:40", + "TransactionId": 87215171, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 275, + "CustomerInfo": 47543180, + "PaymentType": "Cash" + }, + { + "Id": 10007, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2017-10-02T19:01:21", + "TransactionId": 69975471, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 233, + "CustomerInfo": 50569728, + "PaymentType": "Debit Card" + }, + { + "Id": 10008, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2017-10-22T08:04:08", + "TransactionId": 93537291, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 712, + "CustomerInfo": 107743, + "PaymentType": "Cash" + }, + { + "Id": 10009, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2017-07-22T16:25:32", + "TransactionId": 75445325, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 833, + "CustomerInfo": 12518343, + "PaymentType": "Credit Card" + }, + { + "Id": 10010, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2018-02-02T16:30:52", + "TransactionId": 57322221, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 885, + "CustomerInfo": 41854404, + "PaymentType": "Credit Card" + }, + { + "Id": 10011, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2019-01-25T14:15:30", + "TransactionId": 99886362, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 965, + "CustomerInfo": 27793277, + "PaymentType": "Credit Card" + }, + { + "Id": 10012, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2016-09-16T16:49:44", + "TransactionId": 88295104, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 926, + "CustomerInfo": 6843522, + "PaymentType": "Cash" + }, + { + "Id": 10013, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2019-12-17T15:59:11", + "TransactionId": 33501485, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 725, + "CustomerInfo": 2379359, + "PaymentType": "Debit Card" + }, + { + "Id": 10014, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2018-02-10T19:52:54", + "TransactionId": 30392044, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 692, + "CustomerInfo": 8802401, + "PaymentType": "Cash" + }, + { + "Id": 10015, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-02-18T15:42:55", + "TransactionId": 32401960, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 209, + "CustomerInfo": 95657871, + "PaymentType": "Cash" + }, + { + "Id": 10016, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-07-09T10:06:32", + "TransactionId": 6637476, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 202, + "CustomerInfo": 14480131, + "PaymentType": "Debit Card" + }, + { + "Id": 10017, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-07-10T11:58:42", + "TransactionId": 65779665, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 736, + "CustomerInfo": 34043780, + "PaymentType": "Credit Card" + }, + { + "Id": 10018, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-03-02T14:06:09", + "TransactionId": 24167864, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 258, + "CustomerInfo": 80732458, + "PaymentType": "Credit Card" + }, + { + "Id": 10019, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-01-12T16:26:59", + "TransactionId": 87974654, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 425, + "CustomerInfo": 61337111, + "PaymentType": "Debit Card" + }, + { + "Id": 10020, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-10-11T09:11:05", + "TransactionId": 13216409, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 630, + "CustomerInfo": 48955344, + "PaymentType": "Cash" + }, + { + "Id": 10021, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2017-09-04T08:10:36", + "TransactionId": 16100849, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 61, + "CustomerInfo": 27230427, + "PaymentType": "Debit Card" + }, + { + "Id": 10022, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-06-19T17:06:00", + "TransactionId": 96739721, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 395, + "CustomerInfo": 81032155, + "PaymentType": "Debit Card" + }, + { + "Id": 10023, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-10-20T15:06:37", + "TransactionId": 21413801, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 488, + "CustomerInfo": 75614181, + "PaymentType": "Debit Card" + }, + { + "Id": 10024, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2018-03-15T15:47:48", + "TransactionId": 67342648, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 975, + "CustomerInfo": 36477324, + "PaymentType": "Debit Card" + }, + { + "Id": 10025, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-05-26T19:49:52", + "TransactionId": 30758140, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 170, + "CustomerInfo": 69159277, + "PaymentType": "Credit Card" + }, + { + "Id": 10026, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-08-24T19:19:29", + "TransactionId": 39309299, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 17608442, + "PaymentType": "Credit Card" + }, + { + "Id": 10027, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2019-01-16T15:15:24", + "TransactionId": 92439982, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 837, + "CustomerInfo": 17235709, + "PaymentType": "Debit Card" + }, + { + "Id": 10028, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2016-12-27T14:28:54", + "TransactionId": 27916586, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 98, + "CustomerInfo": 21880461, + "PaymentType": "Credit Card" + }, + { + "Id": 10029, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-06-24T19:27:59", + "TransactionId": 76469839, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 960, + "CustomerInfo": 25024740, + "PaymentType": "Credit Card" + }, + { + "Id": 10030, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-03-31T19:39:48", + "TransactionId": 43133393, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 503, + "CustomerInfo": 67526187, + "PaymentType": "Debit Card" + }, + { + "Id": 10031, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-10-06T09:28:57", + "TransactionId": 62372387, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 232, + "CustomerInfo": 78624192, + "PaymentType": "Cash" + }, + { + "Id": 10032, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-08-10T19:17:20", + "TransactionId": 84805043, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 727, + "CustomerInfo": 78819167, + "PaymentType": "Cash" + }, + { + "Id": 10033, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-01-17T13:03:13", + "TransactionId": 55525553, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 935, + "CustomerInfo": 46012951, + "PaymentType": "Cash" + }, + { + "Id": 10034, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2019-08-18T17:52:39", + "TransactionId": 4373347, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 67788628, + "PaymentType": "Debit Card" + }, + { + "Id": 10035, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2019-03-12T13:13:00", + "TransactionId": 18000453, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 235, + "CustomerInfo": 80609992, + "PaymentType": "Credit Card" + }, + { + "Id": 10036, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2017-09-15T19:03:04", + "TransactionId": 49586067, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 17, + "CustomerInfo": 34126644, + "PaymentType": "Debit Card" + }, + { + "Id": 10037, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-02-25T13:04:31", + "TransactionId": 70518806, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 719, + "CustomerInfo": 24579209, + "PaymentType": "Debit Card" + }, + { + "Id": 10038, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2016-12-13T08:32:38", + "TransactionId": 55266851, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 685, + "CustomerInfo": 40612044, + "PaymentType": "Cash" + }, + { + "Id": 10039, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-10-18T07:25:06", + "TransactionId": 70053672, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 811, + "CustomerInfo": 12546404, + "PaymentType": "Debit Card" + }, + { + "Id": 10040, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-07-11T17:34:57", + "TransactionId": 40867466, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 875, + "CustomerInfo": 16833064, + "PaymentType": "Debit Card" + }, + { + "Id": 10041, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-02-13T14:30:46", + "TransactionId": 3851013, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 276, + "CustomerInfo": 76487786, + "PaymentType": "Credit Card" + }, + { + "Id": 10042, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2017-05-29T13:17:28", + "TransactionId": 23372971, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 113, + "CustomerInfo": 16110649, + "PaymentType": "Credit Card" + }, + { + "Id": 10043, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-05-29T16:57:30", + "TransactionId": 62154848, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 842, + "CustomerInfo": 84915095, + "PaymentType": "Credit Card" + }, + { + "Id": 10044, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2016-09-05T08:27:27", + "TransactionId": 15446276, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 874, + "CustomerInfo": 51074946, + "PaymentType": "Cash" + }, + { + "Id": 10045, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-11-25T15:12:14", + "TransactionId": 5060460, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 400, + "CustomerInfo": 15448833, + "PaymentType": "Credit Card" + }, + { + "Id": 10046, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2017-07-06T07:25:32", + "TransactionId": 65228399, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 24, + "CustomerInfo": 64289748, + "PaymentType": "Debit Card" + }, + { + "Id": 10047, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-11-20T09:22:19", + "TransactionId": 27072808, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 109, + "CustomerInfo": 43695515, + "PaymentType": "Debit Card" + }, + { + "Id": 10048, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2016-12-30T10:26:15", + "TransactionId": 20911271, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 751, + "CustomerInfo": 54321814, + "PaymentType": "Credit Card" + }, + { + "Id": 10049, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-05-16T14:47:11", + "TransactionId": 34878328, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 449, + "CustomerInfo": 25097223, + "PaymentType": "Credit Card" + }, + { + "Id": 10050, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2018-10-27T13:29:43", + "TransactionId": 75391359, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 2, + "CustomerInfo": 96682010, + "PaymentType": "Credit Card" + }, + { + "Id": 10051, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-08-28T07:10:16", + "TransactionId": 58903890, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 21, + "CustomerInfo": 82467003, + "PaymentType": "Credit Card" + }, + { + "Id": 10052, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2016-09-17T08:33:56", + "TransactionId": 81636037, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 58, + "CustomerInfo": 78584494, + "PaymentType": "Debit Card" + }, + { + "Id": 10053, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2016-11-09T19:33:45", + "TransactionId": 6896422, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 930, + "CustomerInfo": 9771502, + "PaymentType": "Debit Card" + }, + { + "Id": 10054, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2018-10-20T17:49:03", + "TransactionId": 81064990, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 434, + "CustomerInfo": 560348, + "PaymentType": "Cash" + }, + { + "Id": 10055, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-09-15T08:34:48", + "TransactionId": 82447254, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 384, + "CustomerInfo": 6511727, + "PaymentType": "Debit Card" + }, + { + "Id": 10056, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-09-25T11:29:46", + "TransactionId": 24917284, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 383, + "CustomerInfo": 39075423, + "PaymentType": "Cash" + }, + { + "Id": 10057, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2017-05-06T16:34:02", + "TransactionId": 34487972, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 567, + "CustomerInfo": 51709713, + "PaymentType": "Credit Card" + }, + { + "Id": 10058, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2018-04-03T16:22:48", + "TransactionId": 70178566, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 605, + "CustomerInfo": 45652148, + "PaymentType": "Cash" + }, + { + "Id": 10059, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-10-02T11:11:54", + "TransactionId": 78575048, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 370, + "CustomerInfo": 9635333, + "PaymentType": "Cash" + }, + { + "Id": 10060, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2018-02-19T13:47:08", + "TransactionId": 94894098, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 609, + "CustomerInfo": 72072915, + "PaymentType": "Debit Card" + }, + { + "Id": 10061, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2017-08-09T07:27:16", + "TransactionId": 2959342, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 926, + "CustomerInfo": 51632700, + "PaymentType": "Credit Card" + }, + { + "Id": 10062, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-03-24T14:41:25", + "TransactionId": 97117757, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 254, + "CustomerInfo": 32817561, + "PaymentType": "Debit Card" + }, + { + "Id": 10063, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-12-12T16:08:15", + "TransactionId": 75696744, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 184, + "CustomerInfo": 54178707, + "PaymentType": "Cash" + }, + { + "Id": 10064, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-05-29T12:17:08", + "TransactionId": 79633322, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 873, + "CustomerInfo": 25088713, + "PaymentType": "Cash" + }, + { + "Id": 10065, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2017-02-19T08:16:31", + "TransactionId": 68688555, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 667, + "CustomerInfo": 72834710, + "PaymentType": "Credit Card" + }, + { + "Id": 10066, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2016-07-22T18:38:27", + "TransactionId": 75951136, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 731, + "CustomerInfo": 56014013, + "PaymentType": "Debit Card" + }, + { + "Id": 10067, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2017-03-19T08:53:48", + "TransactionId": 13160505, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 821, + "CustomerInfo": 54142006, + "PaymentType": "Credit Card" + }, + { + "Id": 10068, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-06-13T17:32:21", + "TransactionId": 28122349, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 867, + "CustomerInfo": 6860071, + "PaymentType": "Credit Card" + }, + { + "Id": 10069, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2018-04-15T13:10:51", + "TransactionId": 35032379, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 808, + "CustomerInfo": 29933762, + "PaymentType": "Cash" + }, + { + "Id": 10070, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-08-15T13:30:09", + "TransactionId": 5744795, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 236, + "CustomerInfo": 40199272, + "PaymentType": "Credit Card" + }, + { + "Id": 10071, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2017-04-09T12:30:40", + "TransactionId": 29915509, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 29, + "CustomerInfo": 51047453, + "PaymentType": "Cash" + }, + { + "Id": 10072, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-11-16T10:19:03", + "TransactionId": 54464782, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 328, + "CustomerInfo": 87385330, + "PaymentType": "Credit Card" + }, + { + "Id": 10073, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2017-08-12T08:52:13", + "TransactionId": 95021955, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 771, + "CustomerInfo": 68686941, + "PaymentType": "Credit Card" + }, + { + "Id": 10074, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2017-09-19T12:12:58", + "TransactionId": 99456125, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 314, + "CustomerInfo": 97117690, + "PaymentType": "Debit Card" + }, + { + "Id": 10075, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-12-15T14:35:14", + "TransactionId": 94938268, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 221, + "CustomerInfo": 93420921, + "PaymentType": "Debit Card" + }, + { + "Id": 10076, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2016-10-26T19:03:48", + "TransactionId": 31689255, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 678, + "CustomerInfo": 79655502, + "PaymentType": "Cash" + }, + { + "Id": 10077, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2017-03-24T08:45:10", + "TransactionId": 87458353, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 211, + "CustomerInfo": 12334599, + "PaymentType": "Debit Card" + }, + { + "Id": 10078, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2018-03-15T13:05:05", + "TransactionId": 28617564, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 319, + "CustomerInfo": 41689722, + "PaymentType": "Credit Card" + }, + { + "Id": 10079, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-10-28T19:30:00", + "TransactionId": 57165615, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 677, + "CustomerInfo": 54593225, + "PaymentType": "Credit Card" + }, + { + "Id": 10080, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2019-01-28T07:51:27", + "TransactionId": 69015720, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 219, + "CustomerInfo": 39907173, + "PaymentType": "Credit Card" + }, + { + "Id": 10081, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2019-06-12T08:50:56", + "TransactionId": 58753216, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 267, + "CustomerInfo": 87936132, + "PaymentType": "Credit Card" + }, + { + "Id": 10082, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-02-12T14:41:17", + "TransactionId": 1043182, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 472, + "CustomerInfo": 94947715, + "PaymentType": "Debit Card" + }, + { + "Id": 10083, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-01-31T09:04:11", + "TransactionId": 45074266, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 751, + "CustomerInfo": 18874149, + "PaymentType": "Debit Card" + }, + { + "Id": 10084, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-08-21T11:25:35", + "TransactionId": 50631588, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 76, + "CustomerInfo": 63271563, + "PaymentType": "Debit Card" + }, + { + "Id": 10085, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-05-08T14:20:59", + "TransactionId": 8545148, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 20, + "CustomerInfo": 10677370, + "PaymentType": "Debit Card" + }, + { + "Id": 10086, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-05-22T16:42:49", + "TransactionId": 76946250, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 475, + "CustomerInfo": 50084459, + "PaymentType": "Cash" + }, + { + "Id": 10087, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-01-06T19:29:00", + "TransactionId": 70989367, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 897, + "CustomerInfo": 72875744, + "PaymentType": "Cash" + }, + { + "Id": 10088, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-03-02T17:47:20", + "TransactionId": 83508778, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 734, + "CustomerInfo": 87461996, + "PaymentType": "Cash" + }, + { + "Id": 10089, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-08-11T13:49:00", + "TransactionId": 70954162, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 831, + "CustomerInfo": 19320626, + "PaymentType": "Cash" + }, + { + "Id": 10090, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-12-12T13:42:14", + "TransactionId": 64142646, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 453, + "CustomerInfo": 51121894, + "PaymentType": "Credit Card" + }, + { + "Id": 10091, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2017-09-27T17:08:10", + "TransactionId": 41693798, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 549, + "CustomerInfo": 61111468, + "PaymentType": "Credit Card" + }, + { + "Id": 10092, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-04-26T08:48:20", + "TransactionId": 77678350, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 407, + "CustomerInfo": 44531478, + "PaymentType": "Cash" + }, + { + "Id": 10093, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-05-09T15:25:21", + "TransactionId": 86756647, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 223, + "CustomerInfo": 70897480, + "PaymentType": "Credit Card" + }, + { + "Id": 10094, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2019-08-31T07:45:33", + "TransactionId": 629942, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 851, + "CustomerInfo": 72753102, + "PaymentType": "Cash" + }, + { + "Id": 10095, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-11-18T09:44:47", + "TransactionId": 96300800, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 872, + "CustomerInfo": 33804341, + "PaymentType": "Credit Card" + }, + { + "Id": 10096, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-02-03T15:15:33", + "TransactionId": 62879433, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 227, + "CustomerInfo": 89844461, + "PaymentType": "Cash" + }, + { + "Id": 10097, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-06-15T07:14:53", + "TransactionId": 89048510, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 998, + "CustomerInfo": 78779854, + "PaymentType": "Credit Card" + }, + { + "Id": 10098, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-05-30T09:02:36", + "TransactionId": 9599556, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 168, + "CustomerInfo": 32208091, + "PaymentType": "Cash" + }, + { + "Id": 10099, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2019-09-27T13:25:32", + "TransactionId": 46418620, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 324, + "CustomerInfo": 73300048, + "PaymentType": "Debit Card" + }, + { + "Id": 10100, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2017-03-13T15:11:05", + "TransactionId": 56250947, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 616, + "CustomerInfo": 5832791, + "PaymentType": "Cash" + }, + { + "Id": 10101, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2017-12-07T07:49:44", + "TransactionId": 60530296, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 634, + "CustomerInfo": 81315502, + "PaymentType": "Credit Card" + }, + { + "Id": 10102, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2019-01-22T10:22:57", + "TransactionId": 31968784, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 290, + "CustomerInfo": 37130256, + "PaymentType": "Cash" + }, + { + "Id": 10103, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-02-19T17:02:15", + "TransactionId": 76432535, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 75071426, + "PaymentType": "Credit Card" + }, + { + "Id": 10104, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-06-19T16:17:37", + "TransactionId": 10691882, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 173, + "CustomerInfo": 82180948, + "PaymentType": "Credit Card" + }, + { + "Id": 10105, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-06-09T12:42:46", + "TransactionId": 88018671, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 936, + "CustomerInfo": 20829519, + "PaymentType": "Cash" + }, + { + "Id": 10106, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2019-03-21T13:42:14", + "TransactionId": 73979462, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 511, + "CustomerInfo": 72954011, + "PaymentType": "Debit Card" + }, + { + "Id": 10107, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-03-09T18:23:20", + "TransactionId": 63962092, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 784, + "CustomerInfo": 34467289, + "PaymentType": "Debit Card" + }, + { + "Id": 10108, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2018-05-22T17:24:52", + "TransactionId": 17918563, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 667, + "CustomerInfo": 98092566, + "PaymentType": "Credit Card" + }, + { + "Id": 10109, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-03-04T18:28:48", + "TransactionId": 72385009, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 637, + "CustomerInfo": 50500452, + "PaymentType": "Debit Card" + }, + { + "Id": 10110, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2016-12-11T13:14:53", + "TransactionId": 56302232, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 70, + "CustomerInfo": 93019481, + "PaymentType": "Cash" + }, + { + "Id": 10111, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-07-16T10:20:12", + "TransactionId": 1209929, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 361, + "CustomerInfo": 85461697, + "PaymentType": "Cash" + }, + { + "Id": 10112, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2018-08-22T12:16:08", + "TransactionId": 84989725, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 78377705, + "PaymentType": "Credit Card" + }, + { + "Id": 10113, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2017-08-27T08:35:23", + "TransactionId": 43735515, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 837, + "CustomerInfo": 42695604, + "PaymentType": "Credit Card" + }, + { + "Id": 10114, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2018-01-04T16:08:07", + "TransactionId": 58343713, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 363, + "CustomerInfo": 77824684, + "PaymentType": "Credit Card" + }, + { + "Id": 10115, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-02-24T14:10:02", + "TransactionId": 51202159, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 98, + "CustomerInfo": 47058869, + "PaymentType": "Debit Card" + }, + { + "Id": 10116, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-07-27T14:20:33", + "TransactionId": 13498409, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 230, + "CustomerInfo": 90956289, + "PaymentType": "Cash" + }, + { + "Id": 10117, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-01-31T10:14:18", + "TransactionId": 3566955, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 22, + "CustomerInfo": 25169356, + "PaymentType": "Credit Card" + }, + { + "Id": 10118, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-05-11T14:06:43", + "TransactionId": 79761527, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 483, + "CustomerInfo": 29046312, + "PaymentType": "Cash" + }, + { + "Id": 10119, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2016-08-17T13:28:34", + "TransactionId": 93655644, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 96, + "CustomerInfo": 67499159, + "PaymentType": "Cash" + }, + { + "Id": 10120, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-01-09T10:36:29", + "TransactionId": 12695750, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 258, + "CustomerInfo": 67313081, + "PaymentType": "Cash" + }, + { + "Id": 10121, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-09-06T10:58:39", + "TransactionId": 77669091, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 17, + "CustomerInfo": 87348170, + "PaymentType": "Credit Card" + }, + { + "Id": 10122, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2018-07-10T18:18:00", + "TransactionId": 4186673, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 107, + "CustomerInfo": 43769591, + "PaymentType": "Credit Card" + }, + { + "Id": 10123, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2016-12-11T08:04:51", + "TransactionId": 74578704, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 134, + "CustomerInfo": 34349604, + "PaymentType": "Cash" + }, + { + "Id": 10124, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-10-24T19:33:19", + "TransactionId": 78918845, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 549, + "CustomerInfo": 99693750, + "PaymentType": "Debit Card" + }, + { + "Id": 10125, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2019-11-07T07:40:22", + "TransactionId": 15049150, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 737, + "CustomerInfo": 71797664, + "PaymentType": "Credit Card" + }, + { + "Id": 10126, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2017-06-09T16:59:31", + "TransactionId": 2552688, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 169, + "CustomerInfo": 2539581, + "PaymentType": "Debit Card" + }, + { + "Id": 10127, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-10-10T17:26:27", + "TransactionId": 20559826, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 551, + "CustomerInfo": 42981405, + "PaymentType": "Credit Card" + }, + { + "Id": 10128, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2018-11-09T18:37:35", + "TransactionId": 96907728, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 478, + "CustomerInfo": 13052651, + "PaymentType": "Credit Card" + }, + { + "Id": 10129, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2017-10-27T11:37:32", + "TransactionId": 86620102, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 205, + "CustomerInfo": 63729039, + "PaymentType": "Credit Card" + }, + { + "Id": 10130, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-07-05T09:41:11", + "TransactionId": 88672395, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 432, + "CustomerInfo": 91480224, + "PaymentType": "Credit Card" + }, + { + "Id": 10131, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-08-16T14:50:38", + "TransactionId": 42883420, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 969, + "CustomerInfo": 80608088, + "PaymentType": "Credit Card" + }, + { + "Id": 10132, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-05-15T16:02:12", + "TransactionId": 78585392, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 587, + "CustomerInfo": 86995712, + "PaymentType": "Credit Card" + }, + { + "Id": 10133, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-11-12T13:01:21", + "TransactionId": 84656300, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 119, + "CustomerInfo": 19028652, + "PaymentType": "Debit Card" + }, + { + "Id": 10134, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2017-10-14T14:09:19", + "TransactionId": 84461873, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 534, + "CustomerInfo": 2879613, + "PaymentType": "Credit Card" + }, + { + "Id": 10135, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2019-02-03T13:59:14", + "TransactionId": 82458374, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 609, + "CustomerInfo": 98826974, + "PaymentType": "Credit Card" + }, + { + "Id": 10136, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2017-10-22T12:51:59", + "TransactionId": 88407365, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 641, + "CustomerInfo": 52966203, + "PaymentType": "Credit Card" + }, + { + "Id": 10137, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2019-03-26T14:26:10", + "TransactionId": 74595457, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 476, + "CustomerInfo": 95211302, + "PaymentType": "Cash" + }, + { + "Id": 10138, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2016-11-16T14:44:53", + "TransactionId": 33001551, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 873, + "CustomerInfo": 43124628, + "PaymentType": "Cash" + }, + { + "Id": 10139, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-10-18T07:08:07", + "TransactionId": 24984370, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 818, + "CustomerInfo": 66962835, + "PaymentType": "Credit Card" + }, + { + "Id": 10140, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2018-11-23T18:56:10", + "TransactionId": 37566490, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 586, + "CustomerInfo": 28328766, + "PaymentType": "Debit Card" + }, + { + "Id": 10141, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2019-06-04T19:03:39", + "TransactionId": 82775385, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 615, + "CustomerInfo": 46433070, + "PaymentType": "Debit Card" + }, + { + "Id": 10142, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-09-24T10:50:44", + "TransactionId": 26600553, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 4, + "CustomerInfo": 77949775, + "PaymentType": "Credit Card" + }, + { + "Id": 10143, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-09-07T08:40:08", + "TransactionId": 19566244, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 523, + "CustomerInfo": 50855059, + "PaymentType": "Debit Card" + }, + { + "Id": 10144, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-12-04T07:26:59", + "TransactionId": 80947030, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 141, + "CustomerInfo": 81974433, + "PaymentType": "Debit Card" + }, + { + "Id": 10145, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2019-05-29T10:06:06", + "TransactionId": 41946721, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 370, + "CustomerInfo": 72930240, + "PaymentType": "Credit Card" + }, + { + "Id": 10146, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-08-09T12:54:26", + "TransactionId": 75173009, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 316, + "CustomerInfo": 89356208, + "PaymentType": "Credit Card" + }, + { + "Id": 10147, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2016-08-14T17:05:25", + "TransactionId": 88725917, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 435, + "CustomerInfo": 8379456, + "PaymentType": "Credit Card" + }, + { + "Id": 10148, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-10-24T18:29:48", + "TransactionId": 58470091, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 778, + "CustomerInfo": 69819238, + "PaymentType": "Credit Card" + }, + { + "Id": 10149, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-12-14T12:35:51", + "TransactionId": 2878537, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 392, + "CustomerInfo": 45709679, + "PaymentType": "Cash" + }, + { + "Id": 10150, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-06-15T08:56:07", + "TransactionId": 57682055, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 44, + "CustomerInfo": 90284074, + "PaymentType": "Credit Card" + }, + { + "Id": 10151, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-08-26T07:34:19", + "TransactionId": 59978779, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 615, + "CustomerInfo": 54612465, + "PaymentType": "Debit Card" + }, + { + "Id": 10152, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-12-21T12:05:46", + "TransactionId": 4481759, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 153, + "CustomerInfo": 61830317, + "PaymentType": "Debit Card" + }, + { + "Id": 10153, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2019-12-10T18:28:22", + "TransactionId": 85172737, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 65, + "CustomerInfo": 77254164, + "PaymentType": "Debit Card" + }, + { + "Id": 10154, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2019-11-05T18:53:00", + "TransactionId": 11355956, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 134, + "CustomerInfo": 41336961, + "PaymentType": "Cash" + }, + { + "Id": 10155, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2018-01-08T10:51:01", + "TransactionId": 54933248, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 43, + "CustomerInfo": 38408900, + "PaymentType": "Credit Card" + }, + { + "Id": 10156, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2017-02-14T10:15:27", + "TransactionId": 90893158, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 77, + "CustomerInfo": 98304463, + "PaymentType": "Cash" + }, + { + "Id": 10157, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-10-23T10:26:33", + "TransactionId": 74809304, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 818, + "CustomerInfo": 58335401, + "PaymentType": "Credit Card" + }, + { + "Id": 10158, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-04-15T11:40:16", + "TransactionId": 21879777, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 811, + "CustomerInfo": 94451057, + "PaymentType": "Cash" + }, + { + "Id": 10159, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2018-05-10T13:18:12", + "TransactionId": 24469246, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 35, + "CustomerInfo": 75342748, + "PaymentType": "Credit Card" + }, + { + "Id": 10160, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2016-03-15T12:22:28", + "TransactionId": 53987008, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 789, + "CustomerInfo": 47542808, + "PaymentType": "Cash" + }, + { + "Id": 10161, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2016-12-07T16:58:39", + "TransactionId": 99284700, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 40, + "CustomerInfo": 28988683, + "PaymentType": "Cash" + }, + { + "Id": 10162, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2017-09-23T15:50:59", + "TransactionId": 32569679, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 942, + "CustomerInfo": 26361700, + "PaymentType": "Debit Card" + }, + { + "Id": 10163, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2016-11-22T09:21:01", + "TransactionId": 23796819, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 667, + "CustomerInfo": 9979318, + "PaymentType": "Debit Card" + }, + { + "Id": 10164, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-11-20T07:48:35", + "TransactionId": 93393291, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 699, + "CustomerInfo": 30919123, + "PaymentType": "Credit Card" + }, + { + "Id": 10165, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-08-10T16:50:44", + "TransactionId": 55564513, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 50, + "CustomerInfo": 66136682, + "PaymentType": "Credit Card" + }, + { + "Id": 10166, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-11-15T10:16:45", + "TransactionId": 37513822, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 48000574, + "PaymentType": "Cash" + }, + { + "Id": 10167, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-05-06T14:21:07", + "TransactionId": 59457933, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 224, + "CustomerInfo": 45829783, + "PaymentType": "Cash" + }, + { + "Id": 10168, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-05-31T17:57:59", + "TransactionId": 89109144, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 807, + "CustomerInfo": 35402267, + "PaymentType": "Debit Card" + }, + { + "Id": 10169, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2018-03-23T07:56:04", + "TransactionId": 75110364, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 30992554, + "PaymentType": "Cash" + }, + { + "Id": 10170, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-09-22T08:59:43", + "TransactionId": 21241227, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 693, + "CustomerInfo": 31307080, + "PaymentType": "Debit Card" + }, + { + "Id": 10171, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2017-07-13T12:12:14", + "TransactionId": 41047293, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 187, + "CustomerInfo": 57716681, + "PaymentType": "Credit Card" + }, + { + "Id": 10172, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-06-14T14:11:28", + "TransactionId": 48292083, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 723, + "CustomerInfo": 47347937, + "PaymentType": "Credit Card" + }, + { + "Id": 10173, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2016-08-05T11:56:24", + "TransactionId": 41467404, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 785, + "CustomerInfo": 98850095, + "PaymentType": "Cash" + }, + { + "Id": 10174, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2018-09-18T14:57:59", + "TransactionId": 62229520, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 939, + "CustomerInfo": 99851684, + "PaymentType": "Credit Card" + }, + { + "Id": 10175, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-02-22T16:43:06", + "TransactionId": 12194538, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 523, + "CustomerInfo": 95667394, + "PaymentType": "Cash" + }, + { + "Id": 10176, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-08-01T18:56:44", + "TransactionId": 98376583, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 252, + "CustomerInfo": 27540396, + "PaymentType": "Credit Card" + }, + { + "Id": 10177, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-01-14T10:44:33", + "TransactionId": 30349720, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 602, + "CustomerInfo": 93326669, + "PaymentType": "Cash" + }, + { + "Id": 10178, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-12-25T14:39:50", + "TransactionId": 68893988, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 483, + "CustomerInfo": 10786906, + "PaymentType": "Cash" + }, + { + "Id": 10179, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-11-06T16:06:14", + "TransactionId": 97047272, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 861, + "CustomerInfo": 96289052, + "PaymentType": "Credit Card" + }, + { + "Id": 10180, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-05-03T14:55:41", + "TransactionId": 72384834, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 520, + "CustomerInfo": 73748975, + "PaymentType": "Credit Card" + }, + { + "Id": 10181, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2019-07-11T14:30:03", + "TransactionId": 33104709, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 717, + "CustomerInfo": 83301668, + "PaymentType": "Cash" + }, + { + "Id": 10182, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-12-19T11:13:03", + "TransactionId": 9001312, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 331, + "CustomerInfo": 71440363, + "PaymentType": "Cash" + }, + { + "Id": 10183, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-03-29T11:29:02", + "TransactionId": 20229088, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 49, + "CustomerInfo": 66920156, + "PaymentType": "Debit Card" + }, + { + "Id": 10184, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2018-12-01T09:31:58", + "TransactionId": 39847997, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 94, + "CustomerInfo": 45082292, + "PaymentType": "Credit Card" + }, + { + "Id": 10185, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-07-28T17:45:10", + "TransactionId": 83831976, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 19, + "CustomerInfo": 6638008, + "PaymentType": "Debit Card" + }, + { + "Id": 10186, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-07-24T09:41:20", + "TransactionId": 55894826, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 797, + "CustomerInfo": 14814534, + "PaymentType": "Credit Card" + }, + { + "Id": 10187, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2017-12-19T11:01:58", + "TransactionId": 63825389, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 384, + "CustomerInfo": 81967267, + "PaymentType": "Credit Card" + }, + { + "Id": 10188, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-01-25T09:31:49", + "TransactionId": 9131742, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 673, + "CustomerInfo": 4192459, + "PaymentType": "Debit Card" + }, + { + "Id": 10189, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-11-24T12:51:50", + "TransactionId": 17849323, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 543, + "CustomerInfo": 96158433, + "PaymentType": "Credit Card" + }, + { + "Id": 10190, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2017-12-01T15:18:00", + "TransactionId": 53057368, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 72950732, + "PaymentType": "Credit Card" + }, + { + "Id": 10191, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2016-04-11T17:47:54", + "TransactionId": 57024663, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 63503785, + "PaymentType": "Debit Card" + }, + { + "Id": 10192, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-11-07T14:45:27", + "TransactionId": 51605939, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 739, + "CustomerInfo": 90656410, + "PaymentType": "Debit Card" + }, + { + "Id": 10193, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-06-04T10:54:46", + "TransactionId": 61908281, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 297, + "CustomerInfo": 84329596, + "PaymentType": "Credit Card" + }, + { + "Id": 10194, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2019-05-16T15:11:05", + "TransactionId": 166515, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 677, + "CustomerInfo": 88531004, + "PaymentType": "Debit Card" + }, + { + "Id": 10195, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2018-04-22T12:02:10", + "TransactionId": 83997274, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 151, + "CustomerInfo": 16526108, + "PaymentType": "Debit Card" + }, + { + "Id": 10196, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-01-05T09:49:41", + "TransactionId": 38086396, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 244, + "CustomerInfo": 51183334, + "PaymentType": "Debit Card" + }, + { + "Id": 10197, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2016-05-30T07:14:27", + "TransactionId": 53165999, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 704, + "CustomerInfo": 48626291, + "PaymentType": "Cash" + }, + { + "Id": 10198, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2017-01-28T11:18:40", + "TransactionId": 61580178, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 197, + "CustomerInfo": 34935156, + "PaymentType": "Credit Card" + }, + { + "Id": 10199, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-07-10T18:08:21", + "TransactionId": 41220736, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 488, + "CustomerInfo": 87371721, + "PaymentType": "Debit Card" + }, + { + "Id": 10200, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2019-02-28T19:07:41", + "TransactionId": 42303232, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 689, + "CustomerInfo": 98717325, + "PaymentType": "Cash" + }, + { + "Id": 10201, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-12-25T10:37:12", + "TransactionId": 74517678, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 274, + "CustomerInfo": 19744326, + "PaymentType": "Cash" + }, + { + "Id": 10202, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-05-28T08:15:04", + "TransactionId": 22815706, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 291, + "CustomerInfo": 66266112, + "PaymentType": "Cash" + }, + { + "Id": 10203, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2018-02-15T13:14:53", + "TransactionId": 80679097, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 3255837, + "PaymentType": "Debit Card" + }, + { + "Id": 10204, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2018-12-24T18:51:42", + "TransactionId": 57883019, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 695, + "CustomerInfo": 36343374, + "PaymentType": "Cash" + }, + { + "Id": 10205, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2016-12-21T10:16:36", + "TransactionId": 74527614, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 897, + "CustomerInfo": 99202894, + "PaymentType": "Credit Card" + }, + { + "Id": 10206, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2016-05-28T08:28:02", + "TransactionId": 7382898, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 964, + "CustomerInfo": 13375513, + "PaymentType": "Cash" + }, + { + "Id": 10207, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-01-09T17:35:57", + "TransactionId": 85268204, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 356, + "CustomerInfo": 34363222, + "PaymentType": "Cash" + }, + { + "Id": 10208, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-03-06T13:29:17", + "TransactionId": 64726355, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 217, + "CustomerInfo": 49534911, + "PaymentType": "Debit Card" + }, + { + "Id": 10209, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2018-11-13T12:34:25", + "TransactionId": 34176748, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 277, + "CustomerInfo": 97546300, + "PaymentType": "Debit Card" + }, + { + "Id": 10210, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2018-12-17T17:12:03", + "TransactionId": 85124300, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 218, + "CustomerInfo": 1469560, + "PaymentType": "Cash" + }, + { + "Id": 10211, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-05-10T10:55:55", + "TransactionId": 41194333, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 443, + "CustomerInfo": 20775548, + "PaymentType": "Debit Card" + }, + { + "Id": 10212, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-03-16T17:35:48", + "TransactionId": 37173848, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 89, + "CustomerInfo": 25271445, + "PaymentType": "Debit Card" + }, + { + "Id": 10213, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2019-07-09T15:47:05", + "TransactionId": 23237619, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 650, + "CustomerInfo": 91959462, + "PaymentType": "Credit Card" + }, + { + "Id": 10214, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-06-12T11:20:41", + "TransactionId": 43747253, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 181, + "CustomerInfo": 80568812, + "PaymentType": "Debit Card" + }, + { + "Id": 10215, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2017-01-04T13:02:56", + "TransactionId": 15382705, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 25, + "CustomerInfo": 48152942, + "PaymentType": "Credit Card" + }, + { + "Id": 10216, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2019-08-04T16:31:26", + "TransactionId": 77986528, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 533, + "CustomerInfo": 37680475, + "PaymentType": "Debit Card" + }, + { + "Id": 10217, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2016-01-11T10:57:13", + "TransactionId": 574649, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 580, + "CustomerInfo": 77097923, + "PaymentType": "Credit Card" + }, + { + "Id": 10218, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-06-08T19:45:33", + "TransactionId": 14979523, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 320, + "CustomerInfo": 97079505, + "PaymentType": "Cash" + }, + { + "Id": 10219, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2018-09-21T10:14:44", + "TransactionId": 12989053, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 407, + "CustomerInfo": 50451711, + "PaymentType": "Credit Card" + }, + { + "Id": 10220, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2017-02-01T07:29:34", + "TransactionId": 4621413, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 473, + "CustomerInfo": 44317251, + "PaymentType": "Cash" + }, + { + "Id": 10221, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2017-10-27T09:00:09", + "TransactionId": 82074216, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 575, + "CustomerInfo": 50698763, + "PaymentType": "Cash" + }, + { + "Id": 10222, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2019-10-11T18:38:18", + "TransactionId": 16169209, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 150, + "CustomerInfo": 45899104, + "PaymentType": "Credit Card" + }, + { + "Id": 10223, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-12-10T11:20:24", + "TransactionId": 72317507, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 510, + "CustomerInfo": 83566223, + "PaymentType": "Cash" + }, + { + "Id": 10224, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2017-11-09T09:18:00", + "TransactionId": 41567060, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 286, + "CustomerInfo": 566757, + "PaymentType": "Credit Card" + }, + { + "Id": 10225, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-10-15T12:11:40", + "TransactionId": 84440225, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 405, + "CustomerInfo": 24982936, + "PaymentType": "Debit Card" + }, + { + "Id": 10226, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-11-17T13:00:37", + "TransactionId": 99677264, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 879, + "CustomerInfo": 29945129, + "PaymentType": "Credit Card" + }, + { + "Id": 10227, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2016-01-22T18:13:58", + "TransactionId": 9736318, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 613, + "CustomerInfo": 18303117, + "PaymentType": "Cash" + }, + { + "Id": 10228, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2019-04-27T13:03:04", + "TransactionId": 49505927, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 263, + "CustomerInfo": 19089855, + "PaymentType": "Debit Card" + }, + { + "Id": 10229, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2016-07-12T13:39:56", + "TransactionId": 28305729, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 92799641, + "PaymentType": "Cash" + }, + { + "Id": 10230, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2017-09-14T11:42:52", + "TransactionId": 10679798, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 21, + "CustomerInfo": 51608643, + "PaymentType": "Debit Card" + }, + { + "Id": 10231, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-05-12T07:53:02", + "TransactionId": 68272007, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 799, + "CustomerInfo": 49699214, + "PaymentType": "Credit Card" + }, + { + "Id": 10232, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2018-09-21T18:57:36", + "TransactionId": 28911941, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 484, + "CustomerInfo": 86732488, + "PaymentType": "Debit Card" + }, + { + "Id": 10233, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-10-27T19:26:50", + "TransactionId": 41057751, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 840, + "CustomerInfo": 64974555, + "PaymentType": "Cash" + }, + { + "Id": 10234, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2017-02-12T15:24:29", + "TransactionId": 70790763, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 869, + "CustomerInfo": 14616765, + "PaymentType": "Credit Card" + }, + { + "Id": 10235, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-03-04T15:40:54", + "TransactionId": 85449627, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 585, + "CustomerInfo": 80414366, + "PaymentType": "Credit Card" + }, + { + "Id": 10236, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2017-12-12T13:41:57", + "TransactionId": 14646667, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 929, + "CustomerInfo": 42387576, + "PaymentType": "Debit Card" + }, + { + "Id": 10237, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-11-29T12:57:27", + "TransactionId": 89984940, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 374, + "CustomerInfo": 2182727, + "PaymentType": "Debit Card" + }, + { + "Id": 10238, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-03-23T10:57:13", + "TransactionId": 91343363, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 198, + "CustomerInfo": 67018454, + "PaymentType": "Debit Card" + }, + { + "Id": 10239, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-01-19T16:14:44", + "TransactionId": 5798058, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 578, + "CustomerInfo": 42786229, + "PaymentType": "Cash" + }, + { + "Id": 10240, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2016-12-25T07:18:55", + "TransactionId": 25632466, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 915, + "CustomerInfo": 48875650, + "PaymentType": "Credit Card" + }, + { + "Id": 10241, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-01-02T15:29:05", + "TransactionId": 5455461, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 171, + "CustomerInfo": 73236946, + "PaymentType": "Cash" + }, + { + "Id": 10242, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2019-05-19T18:47:40", + "TransactionId": 72101549, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 853, + "CustomerInfo": 2585204, + "PaymentType": "Cash" + }, + { + "Id": 10243, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2017-01-02T07:03:30", + "TransactionId": 15086802, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 130, + "CustomerInfo": 1292250, + "PaymentType": "Cash" + }, + { + "Id": 10244, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2019-11-04T12:49:06", + "TransactionId": 34995504, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 457, + "CustomerInfo": 99728033, + "PaymentType": "Debit Card" + }, + { + "Id": 10245, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2017-09-05T10:50:44", + "TransactionId": 18276056, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 738, + "CustomerInfo": 51247909, + "PaymentType": "Credit Card" + }, + { + "Id": 10246, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-12-30T19:27:07", + "TransactionId": 15959713, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 349, + "CustomerInfo": 13634168, + "PaymentType": "Debit Card" + }, + { + "Id": 10247, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2018-05-10T18:46:31", + "TransactionId": 16028610, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 50, + "CustomerInfo": 31625888, + "PaymentType": "Cash" + }, + { + "Id": 10248, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-02-28T11:52:05", + "TransactionId": 41588124, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 948, + "CustomerInfo": 86802380, + "PaymentType": "Cash" + }, + { + "Id": 10249, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-06-10T18:26:47", + "TransactionId": 6433085, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 11, + "CustomerInfo": 57079968, + "PaymentType": "Cash" + }, + { + "Id": 10250, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2017-07-21T17:23:25", + "TransactionId": 79649381, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 259, + "CustomerInfo": 55928129, + "PaymentType": "Cash" + }, + { + "Id": 10251, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-05-22T10:12:00", + "TransactionId": 87599610, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 521, + "CustomerInfo": 29122912, + "PaymentType": "Debit Card" + }, + { + "Id": 10252, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2017-06-01T16:21:56", + "TransactionId": 96237279, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 362, + "CustomerInfo": 1283368, + "PaymentType": "Credit Card" + }, + { + "Id": 10253, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-08-05T14:33:30", + "TransactionId": 11977414, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 273, + "CustomerInfo": 84036677, + "PaymentType": "Credit Card" + }, + { + "Id": 10254, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2017-03-24T08:40:25", + "TransactionId": 91240301, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 885, + "CustomerInfo": 38914718, + "PaymentType": "Credit Card" + }, + { + "Id": 10255, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-12-07T07:47:08", + "TransactionId": 61930826, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 769, + "CustomerInfo": 72984667, + "PaymentType": "Credit Card" + }, + { + "Id": 10256, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2019-04-17T19:50:10", + "TransactionId": 33696636, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 351, + "CustomerInfo": 905396, + "PaymentType": "Debit Card" + }, + { + "Id": 10257, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2019-12-01T11:52:22", + "TransactionId": 98473402, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 428, + "CustomerInfo": 93867131, + "PaymentType": "Debit Card" + }, + { + "Id": 10258, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-10-21T17:35:31", + "TransactionId": 95888534, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 495, + "CustomerInfo": 25746419, + "PaymentType": "Credit Card" + }, + { + "Id": 10259, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2017-11-01T08:00:58", + "TransactionId": 35796246, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 428, + "CustomerInfo": 48418662, + "PaymentType": "Cash" + }, + { + "Id": 10260, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2016-12-09T19:23:31", + "TransactionId": 86449709, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 130, + "CustomerInfo": 66087938, + "PaymentType": "Cash" + }, + { + "Id": 10261, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-09-03T12:30:49", + "TransactionId": 7672309, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 705, + "CustomerInfo": 56241539, + "PaymentType": "Debit Card" + }, + { + "Id": 10262, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2017-04-23T11:01:41", + "TransactionId": 31810382, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 130, + "CustomerInfo": 26758214, + "PaymentType": "Debit Card" + }, + { + "Id": 10263, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2018-10-01T07:38:30", + "TransactionId": 32286779, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 859, + "CustomerInfo": 92609854, + "PaymentType": "Cash" + }, + { + "Id": 10264, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2017-01-02T16:52:28", + "TransactionId": 61285707, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 901, + "CustomerInfo": 12351034, + "PaymentType": "Credit Card" + }, + { + "Id": 10265, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2018-08-13T16:48:52", + "TransactionId": 5097672, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 452, + "CustomerInfo": 78360349, + "PaymentType": "Debit Card" + }, + { + "Id": 10266, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-06-06T15:37:00", + "TransactionId": 75974496, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 315, + "CustomerInfo": 82151285, + "PaymentType": "Cash" + }, + { + "Id": 10267, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2017-07-09T18:35:51", + "TransactionId": 28806372, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 37, + "CustomerInfo": 1471608, + "PaymentType": "Cash" + }, + { + "Id": 10268, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2017-02-25T13:04:39", + "TransactionId": 15372590, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 722, + "CustomerInfo": 59458678, + "PaymentType": "Debit Card" + }, + { + "Id": 10269, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-08-23T17:29:02", + "TransactionId": 68499361, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 228, + "CustomerInfo": 83300461, + "PaymentType": "Credit Card" + }, + { + "Id": 10270, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2018-05-28T10:20:47", + "TransactionId": 79921245, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 981, + "CustomerInfo": 54857132, + "PaymentType": "Cash" + }, + { + "Id": 10271, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2016-09-10T12:34:08", + "TransactionId": 31611714, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 454, + "CustomerInfo": 9092189, + "PaymentType": "Debit Card" + }, + { + "Id": 10272, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-08-09T10:56:04", + "TransactionId": 29356914, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 298, + "CustomerInfo": 76614757, + "PaymentType": "Debit Card" + }, + { + "Id": 10273, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2017-02-01T19:44:24", + "TransactionId": 76576806, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 188, + "CustomerInfo": 24612060, + "PaymentType": "Debit Card" + }, + { + "Id": 10274, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-08-23T09:16:16", + "TransactionId": 70497507, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 110, + "CustomerInfo": 5121248, + "PaymentType": "Debit Card" + }, + { + "Id": 10275, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2016-05-28T07:43:41", + "TransactionId": 25308214, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 540, + "CustomerInfo": 93250226, + "PaymentType": "Credit Card" + }, + { + "Id": 10276, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-09-04T10:43:15", + "TransactionId": 98398476, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 297, + "CustomerInfo": 77376304, + "PaymentType": "Cash" + }, + { + "Id": 10277, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2016-07-14T14:47:28", + "TransactionId": 58897647, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 822, + "CustomerInfo": 37072418, + "PaymentType": "Cash" + }, + { + "Id": 10278, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-11-12T13:32:53", + "TransactionId": 78252266, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 95195563, + "PaymentType": "Cash" + }, + { + "Id": 10279, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-08-31T11:58:08", + "TransactionId": 75854415, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 87998297, + "PaymentType": "Credit Card" + }, + { + "Id": 10280, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-08-16T12:43:03", + "TransactionId": 60224272, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 926, + "CustomerInfo": 80569008, + "PaymentType": "Debit Card" + }, + { + "Id": 10281, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-12-09T14:19:24", + "TransactionId": 15944606, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 920, + "CustomerInfo": 57302294, + "PaymentType": "Cash" + }, + { + "Id": 10282, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2019-04-24T10:18:03", + "TransactionId": 81926111, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 332, + "CustomerInfo": 7513414, + "PaymentType": "Credit Card" + }, + { + "Id": 10283, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-01-25T10:02:12", + "TransactionId": 68758783, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 259, + "CustomerInfo": 52935128, + "PaymentType": "Debit Card" + }, + { + "Id": 10284, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2018-01-16T18:22:45", + "TransactionId": 83705372, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 241, + "CustomerInfo": 71564511, + "PaymentType": "Cash" + }, + { + "Id": 10285, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2016-09-10T16:05:31", + "TransactionId": 86676968, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 68460269, + "PaymentType": "Cash" + }, + { + "Id": 10286, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-09-29T09:03:01", + "TransactionId": 15898541, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 386, + "CustomerInfo": 83086020, + "PaymentType": "Debit Card" + }, + { + "Id": 10287, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2018-07-07T12:45:48", + "TransactionId": 68902669, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 823, + "CustomerInfo": 64125271, + "PaymentType": "Cash" + }, + { + "Id": 10288, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-04-25T08:42:52", + "TransactionId": 87177203, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 61568485, + "PaymentType": "Credit Card" + }, + { + "Id": 10289, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-08-25T18:08:38", + "TransactionId": 51373043, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 851, + "CustomerInfo": 88324907, + "PaymentType": "Credit Card" + }, + { + "Id": 10290, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2018-07-25T11:52:31", + "TransactionId": 44234586, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 964, + "CustomerInfo": 35318155, + "PaymentType": "Credit Card" + }, + { + "Id": 10291, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-07-03T10:21:04", + "TransactionId": 17519794, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 383, + "CustomerInfo": 54965640, + "PaymentType": "Credit Card" + }, + { + "Id": 10292, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2016-05-09T14:45:45", + "TransactionId": 22554090, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 858, + "CustomerInfo": 12997736, + "PaymentType": "Debit Card" + }, + { + "Id": 10293, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2019-03-15T15:38:18", + "TransactionId": 62290701, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 733, + "CustomerInfo": 30837323, + "PaymentType": "Debit Card" + }, + { + "Id": 10294, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-01-17T13:44:41", + "TransactionId": 32510027, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 732, + "CustomerInfo": 99424700, + "PaymentType": "Debit Card" + }, + { + "Id": 10295, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-09-27T15:19:52", + "TransactionId": 37171519, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 920, + "CustomerInfo": 70605173, + "PaymentType": "Debit Card" + }, + { + "Id": 10296, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2018-05-15T08:25:35", + "TransactionId": 28105061, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 469, + "CustomerInfo": 94198019, + "PaymentType": "Credit Card" + }, + { + "Id": 10297, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-09-11T13:44:15", + "TransactionId": 93353285, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 357, + "CustomerInfo": 55908833, + "PaymentType": "Debit Card" + }, + { + "Id": 10298, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2017-07-17T13:24:40", + "TransactionId": 37738958, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 570, + "CustomerInfo": 94195329, + "PaymentType": "Debit Card" + }, + { + "Id": 10299, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2019-01-24T13:29:08", + "TransactionId": 89849871, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 348, + "CustomerInfo": 2860811, + "PaymentType": "Debit Card" + }, + { + "Id": 10300, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2017-12-03T16:08:59", + "TransactionId": 13443966, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 107, + "CustomerInfo": 85044774, + "PaymentType": "Credit Card" + }, + { + "Id": 10301, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2018-07-09T11:14:12", + "TransactionId": 5833385, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 917, + "CustomerInfo": 29027573, + "PaymentType": "Cash" + }, + { + "Id": 10302, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2016-10-15T12:49:32", + "TransactionId": 18810252, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 322, + "CustomerInfo": 7708112, + "PaymentType": "Cash" + }, + { + "Id": 10303, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-02-27T10:53:54", + "TransactionId": 48680272, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 270, + "CustomerInfo": 44851185, + "PaymentType": "Credit Card" + }, + { + "Id": 10304, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-09-21T14:56:15", + "TransactionId": 94779734, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 747, + "CustomerInfo": 52520228, + "PaymentType": "Cash" + }, + { + "Id": 10305, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-08-31T19:14:44", + "TransactionId": 4699277, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 353, + "CustomerInfo": 52256679, + "PaymentType": "Credit Card" + }, + { + "Id": 10306, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2019-12-14T09:48:23", + "TransactionId": 80595674, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 483, + "CustomerInfo": 59099488, + "PaymentType": "Cash" + }, + { + "Id": 10307, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-08-15T12:53:51", + "TransactionId": 59495126, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 176, + "CustomerInfo": 97656219, + "PaymentType": "Debit Card" + }, + { + "Id": 10308, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2018-12-30T07:34:54", + "TransactionId": 4457936, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 413, + "CustomerInfo": 1820050, + "PaymentType": "Debit Card" + }, + { + "Id": 10309, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2016-04-24T08:46:28", + "TransactionId": 57984329, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 387, + "CustomerInfo": 75267233, + "PaymentType": "Credit Card" + }, + { + "Id": 10310, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-01-04T12:28:48", + "TransactionId": 18042526, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 223, + "CustomerInfo": 55139323, + "PaymentType": "Credit Card" + }, + { + "Id": 10311, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2018-01-20T07:56:47", + "TransactionId": 30451098, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 529, + "CustomerInfo": 86997208, + "PaymentType": "Debit Card" + }, + { + "Id": 10312, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2016-01-13T12:07:12", + "TransactionId": 39082283, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 678, + "CustomerInfo": 18532359, + "PaymentType": "Debit Card" + }, + { + "Id": 10313, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2016-09-26T12:00:09", + "TransactionId": 22684427, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 998, + "CustomerInfo": 38614134, + "PaymentType": "Debit Card" + }, + { + "Id": 10314, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2018-09-30T08:18:40", + "TransactionId": 16170946, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 208, + "CustomerInfo": 32136679, + "PaymentType": "Cash" + }, + { + "Id": 10315, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2018-12-19T18:37:52", + "TransactionId": 75745113, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 556, + "CustomerInfo": 20631727, + "PaymentType": "Debit Card" + }, + { + "Id": 10316, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-06-18T12:06:20", + "TransactionId": 91563096, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 91, + "CustomerInfo": 29278434, + "PaymentType": "Cash" + }, + { + "Id": 10317, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2017-02-16T15:30:32", + "TransactionId": 33020965, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 897, + "CustomerInfo": 27347672, + "PaymentType": "Debit Card" + }, + { + "Id": 10318, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2018-11-22T17:29:28", + "TransactionId": 7834768, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 127, + "CustomerInfo": 20607752, + "PaymentType": "Credit Card" + }, + { + "Id": 10319, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-02-08T18:58:02", + "TransactionId": 72725100, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 384, + "CustomerInfo": 32556335, + "PaymentType": "Credit Card" + }, + { + "Id": 10320, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-06-18T18:24:12", + "TransactionId": 98865258, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 2, + "CustomerInfo": 45449644, + "PaymentType": "Credit Card" + }, + { + "Id": 10321, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2019-09-13T19:02:38", + "TransactionId": 66002608, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 217, + "CustomerInfo": 64225407, + "PaymentType": "Cash" + }, + { + "Id": 10322, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-05-10T18:35:43", + "TransactionId": 56532220, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 822, + "CustomerInfo": 87582410, + "PaymentType": "Debit Card" + }, + { + "Id": 10323, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2018-12-05T19:07:32", + "TransactionId": 95953880, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 929, + "CustomerInfo": 10075238, + "PaymentType": "Cash" + }, + { + "Id": 10324, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2017-07-02T17:50:04", + "TransactionId": 89544976, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 156, + "CustomerInfo": 60126492, + "PaymentType": "Cash" + }, + { + "Id": 10325, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-11-21T09:26:30", + "TransactionId": 75079832, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 228, + "CustomerInfo": 52845744, + "PaymentType": "Credit Card" + }, + { + "Id": 10326, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2018-12-10T18:09:56", + "TransactionId": 48933311, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 401, + "CustomerInfo": 3169950, + "PaymentType": "Credit Card" + }, + { + "Id": 10327, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2017-10-13T08:36:58", + "TransactionId": 92864605, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 590, + "CustomerInfo": 36570887, + "PaymentType": "Cash" + }, + { + "Id": 10328, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2019-04-13T12:44:30", + "TransactionId": 87982596, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 185, + "CustomerInfo": 53989892, + "PaymentType": "Credit Card" + }, + { + "Id": 10329, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-02-17T16:25:06", + "TransactionId": 13040650, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 963, + "CustomerInfo": 97412913, + "PaymentType": "Debit Card" + }, + { + "Id": 10330, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-08-04T16:43:58", + "TransactionId": 8854955, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 325, + "CustomerInfo": 61159832, + "PaymentType": "Credit Card" + }, + { + "Id": 10331, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-10-03T11:40:16", + "TransactionId": 35833190, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 162, + "CustomerInfo": 67709151, + "PaymentType": "Debit Card" + }, + { + "Id": 10332, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-12-30T14:07:18", + "TransactionId": 36194049, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 851, + "CustomerInfo": 21834310, + "PaymentType": "Debit Card" + }, + { + "Id": 10333, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-05-24T07:23:57", + "TransactionId": 22998996, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 813, + "CustomerInfo": 78383397, + "PaymentType": "Cash" + }, + { + "Id": 10334, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-09-23T17:42:17", + "TransactionId": 97766279, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 586, + "CustomerInfo": 92948045, + "PaymentType": "Credit Card" + }, + { + "Id": 10335, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2017-06-08T17:44:18", + "TransactionId": 74913821, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 42437235, + "PaymentType": "Debit Card" + }, + { + "Id": 10336, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2016-01-29T07:38:38", + "TransactionId": 10088242, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 714, + "CustomerInfo": 35766568, + "PaymentType": "Cash" + }, + { + "Id": 10337, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2017-01-15T15:28:31", + "TransactionId": 46624751, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 927, + "CustomerInfo": 45762464, + "PaymentType": "Cash" + }, + { + "Id": 10338, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2018-03-24T07:10:42", + "TransactionId": 79486864, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 126, + "CustomerInfo": 7623709, + "PaymentType": "Credit Card" + }, + { + "Id": 10339, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-11-29T13:39:04", + "TransactionId": 29593092, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 2, + "CustomerInfo": 74101513, + "PaymentType": "Debit Card" + }, + { + "Id": 10340, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2017-03-08T12:04:36", + "TransactionId": 81777330, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 231, + "CustomerInfo": 7611272, + "PaymentType": "Debit Card" + }, + { + "Id": 10341, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-05-24T17:52:48", + "TransactionId": 70703152, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 907, + "CustomerInfo": 11511870, + "PaymentType": "Credit Card" + }, + { + "Id": 10342, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-03-21T13:36:55", + "TransactionId": 11026964, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 507, + "CustomerInfo": 91213479, + "PaymentType": "Cash" + }, + { + "Id": 10343, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-01-13T12:40:28", + "TransactionId": 51614491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 794, + "CustomerInfo": 39137622, + "PaymentType": "Debit Card" + }, + { + "Id": 10344, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-12-16T11:43:00", + "TransactionId": 15929624, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 692, + "CustomerInfo": 63944335, + "PaymentType": "Cash" + }, + { + "Id": 10345, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2017-12-23T15:22:54", + "TransactionId": 85118675, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 75, + "CustomerInfo": 69613789, + "PaymentType": "Debit Card" + }, + { + "Id": 10346, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2017-10-02T16:44:15", + "TransactionId": 61028697, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 836, + "CustomerInfo": 6199177, + "PaymentType": "Cash" + }, + { + "Id": 10347, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-06-06T16:23:05", + "TransactionId": 73824030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 629, + "CustomerInfo": 22894060, + "PaymentType": "Cash" + }, + { + "Id": 10348, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-10-04T12:07:12", + "TransactionId": 6340542, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 926, + "CustomerInfo": 8470938, + "PaymentType": "Debit Card" + }, + { + "Id": 10349, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2016-06-17T13:02:12", + "TransactionId": 81514457, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 745, + "CustomerInfo": 87759486, + "PaymentType": "Credit Card" + }, + { + "Id": 10350, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2018-11-24T10:25:32", + "TransactionId": 10299009, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 887, + "CustomerInfo": 26345244, + "PaymentType": "Cash" + }, + { + "Id": 10351, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-05-28T14:42:35", + "TransactionId": 66345727, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 984, + "CustomerInfo": 83314874, + "PaymentType": "Debit Card" + }, + { + "Id": 10352, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2017-10-06T18:28:39", + "TransactionId": 37232818, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 195, + "CustomerInfo": 59506785, + "PaymentType": "Debit Card" + }, + { + "Id": 10353, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-05-21T18:45:48", + "TransactionId": 92252416, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 610, + "CustomerInfo": 58033042, + "PaymentType": "Debit Card" + }, + { + "Id": 10354, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2016-05-31T07:03:22", + "TransactionId": 34164631, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 88, + "CustomerInfo": 17703135, + "PaymentType": "Debit Card" + }, + { + "Id": 10355, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2016-02-03T13:36:12", + "TransactionId": 20520758, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 311, + "CustomerInfo": 11876509, + "PaymentType": "Cash" + }, + { + "Id": 10356, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2019-03-25T07:23:57", + "TransactionId": 45039349, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 887, + "CustomerInfo": 4206216, + "PaymentType": "Cash" + }, + { + "Id": 10357, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2019-01-02T07:23:31", + "TransactionId": 25914194, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 730, + "CustomerInfo": 49470475, + "PaymentType": "Debit Card" + }, + { + "Id": 10358, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-04-29T17:48:20", + "TransactionId": 73191553, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 698, + "CustomerInfo": 5863344, + "PaymentType": "Debit Card" + }, + { + "Id": 10359, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2019-04-19T18:51:33", + "TransactionId": 53914203, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 783, + "CustomerInfo": 22892891, + "PaymentType": "Cash" + }, + { + "Id": 10360, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2016-08-08T19:01:55", + "TransactionId": 25869467, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 10, + "CustomerInfo": 69207748, + "PaymentType": "Cash" + }, + { + "Id": 10361, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-07-22T14:00:14", + "TransactionId": 20823184, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 706, + "CustomerInfo": 21194316, + "PaymentType": "Credit Card" + }, + { + "Id": 10362, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-09-05T08:38:59", + "TransactionId": 95106708, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 575, + "CustomerInfo": 43147241, + "PaymentType": "Credit Card" + }, + { + "Id": 10363, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-04-22T09:12:06", + "TransactionId": 13039313, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 897, + "CustomerInfo": 67699501, + "PaymentType": "Cash" + }, + { + "Id": 10364, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-02-17T17:28:02", + "TransactionId": 17696730, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 836, + "CustomerInfo": 73255359, + "PaymentType": "Cash" + }, + { + "Id": 10365, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2019-11-06T13:38:04", + "TransactionId": 19550384, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 361, + "CustomerInfo": 20370805, + "PaymentType": "Cash" + }, + { + "Id": 10366, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2019-01-30T10:50:10", + "TransactionId": 31240137, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 386, + "CustomerInfo": 60776605, + "PaymentType": "Cash" + }, + { + "Id": 10367, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-04-06T12:38:44", + "TransactionId": 96298168, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 579, + "CustomerInfo": 52033650, + "PaymentType": "Cash" + }, + { + "Id": 10368, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-11-06T15:12:23", + "TransactionId": 89008555, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 249, + "CustomerInfo": 40295485, + "PaymentType": "Debit Card" + }, + { + "Id": 10369, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2016-12-16T15:35:00", + "TransactionId": 31275388, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 990, + "CustomerInfo": 55213560, + "PaymentType": "Debit Card" + }, + { + "Id": 10370, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-08-15T19:49:35", + "TransactionId": 63870701, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 878, + "CustomerInfo": 78061677, + "PaymentType": "Debit Card" + }, + { + "Id": 10371, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2018-09-01T11:56:33", + "TransactionId": 20998084, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 730, + "CustomerInfo": 65372730, + "PaymentType": "Debit Card" + }, + { + "Id": 10372, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2018-06-22T08:39:07", + "TransactionId": 26840973, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 883, + "CustomerInfo": 56191448, + "PaymentType": "Credit Card" + }, + { + "Id": 10373, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-10-09T14:15:22", + "TransactionId": 93542803, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 152, + "CustomerInfo": 84370468, + "PaymentType": "Debit Card" + }, + { + "Id": 10374, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-01-12T08:55:32", + "TransactionId": 1209811, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 679, + "CustomerInfo": 42453905, + "PaymentType": "Cash" + }, + { + "Id": 10375, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2016-11-23T14:54:49", + "TransactionId": 93069112, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 266, + "CustomerInfo": 81107170, + "PaymentType": "Debit Card" + }, + { + "Id": 10376, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-05-22T09:01:35", + "TransactionId": 14569293, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 524, + "CustomerInfo": 44188709, + "PaymentType": "Cash" + }, + { + "Id": 10377, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-03-10T14:46:36", + "TransactionId": 7577057, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 343, + "CustomerInfo": 20298281, + "PaymentType": "Credit Card" + }, + { + "Id": 10378, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-10-07T13:31:00", + "TransactionId": 39148443, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 457, + "CustomerInfo": 61178423, + "PaymentType": "Cash" + }, + { + "Id": 10379, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-11-23T16:49:26", + "TransactionId": 93153773, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 24, + "CustomerInfo": 74337907, + "PaymentType": "Cash" + }, + { + "Id": 10380, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-09-14T09:19:00", + "TransactionId": 90462602, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 716, + "CustomerInfo": 57098298, + "PaymentType": "Cash" + }, + { + "Id": 10381, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-04-02T07:01:38", + "TransactionId": 40979599, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 161, + "CustomerInfo": 83545902, + "PaymentType": "Debit Card" + }, + { + "Id": 10382, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-06-24T07:03:04", + "TransactionId": 70236429, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 778, + "CustomerInfo": 886859, + "PaymentType": "Cash" + }, + { + "Id": 10383, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2018-12-06T08:31:55", + "TransactionId": 34667280, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 543, + "CustomerInfo": 52041649, + "PaymentType": "Debit Card" + }, + { + "Id": 10384, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-07-15T08:53:05", + "TransactionId": 99868355, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 472, + "CustomerInfo": 56731787, + "PaymentType": "Credit Card" + }, + { + "Id": 10385, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-02-15T08:09:36", + "TransactionId": 39476710, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 163, + "CustomerInfo": 66090040, + "PaymentType": "Credit Card" + }, + { + "Id": 10386, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2017-03-26T09:23:20", + "TransactionId": 89262525, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 168, + "CustomerInfo": 12472498, + "PaymentType": "Credit Card" + }, + { + "Id": 10387, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2016-01-05T13:10:34", + "TransactionId": 76923935, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 362, + "CustomerInfo": 22936012, + "PaymentType": "Credit Card" + }, + { + "Id": 10388, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-05-30T13:19:12", + "TransactionId": 27101638, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 959, + "CustomerInfo": 31452517, + "PaymentType": "Cash" + }, + { + "Id": 10389, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-06-20T13:28:34", + "TransactionId": 73597673, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 234, + "CustomerInfo": 19984533, + "PaymentType": "Cash" + }, + { + "Id": 10390, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2018-11-14T16:15:19", + "TransactionId": 83724780, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 643, + "CustomerInfo": 75838820, + "PaymentType": "Credit Card" + }, + { + "Id": 10391, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-04-10T07:15:10", + "TransactionId": 34897155, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 571, + "CustomerInfo": 22541338, + "PaymentType": "Credit Card" + }, + { + "Id": 10392, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2018-12-30T10:40:39", + "TransactionId": 54148678, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 298, + "CustomerInfo": 24708719, + "PaymentType": "Debit Card" + }, + { + "Id": 10393, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2018-06-06T09:06:46", + "TransactionId": 42574875, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 927, + "CustomerInfo": 29506134, + "PaymentType": "Debit Card" + }, + { + "Id": 10394, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-02-02T10:39:30", + "TransactionId": 34648133, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 534, + "CustomerInfo": 91615928, + "PaymentType": "Debit Card" + }, + { + "Id": 10395, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-12-17T08:46:28", + "TransactionId": 63108455, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 587, + "CustomerInfo": 77692625, + "PaymentType": "Credit Card" + }, + { + "Id": 10396, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2019-03-29T12:35:00", + "TransactionId": 19962079, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 864, + "CustomerInfo": 51841863, + "PaymentType": "Cash" + }, + { + "Id": 10397, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2019-08-24T07:10:08", + "TransactionId": 45305700, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 102, + "CustomerInfo": 7006729, + "PaymentType": "Cash" + }, + { + "Id": 10398, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-06-26T15:57:53", + "TransactionId": 12456830, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 923, + "CustomerInfo": 90052371, + "PaymentType": "Credit Card" + }, + { + "Id": 10399, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2016-08-17T17:45:45", + "TransactionId": 97904678, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 996, + "CustomerInfo": 72297381, + "PaymentType": "Cash" + }, + { + "Id": 10400, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-01-16T17:38:07", + "TransactionId": 49441232, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 691, + "CustomerInfo": 554649, + "PaymentType": "Debit Card" + }, + { + "Id": 10401, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2019-03-16T19:30:09", + "TransactionId": 12072970, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 192, + "CustomerInfo": 41957508, + "PaymentType": "Credit Card" + }, + { + "Id": 10402, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2016-04-13T14:20:41", + "TransactionId": 77845554, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 46856572, + "PaymentType": "Cash" + }, + { + "Id": 10403, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-11-17T09:12:58", + "TransactionId": 13963426, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 887, + "CustomerInfo": 63005229, + "PaymentType": "Debit Card" + }, + { + "Id": 10404, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2018-06-27T07:30:43", + "TransactionId": 8269709, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 728, + "CustomerInfo": 34249073, + "PaymentType": "Credit Card" + }, + { + "Id": 10405, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-11-04T09:30:23", + "TransactionId": 64676193, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 37, + "CustomerInfo": 20567825, + "PaymentType": "Credit Card" + }, + { + "Id": 10406, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-09-08T19:59:57", + "TransactionId": 37212533, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 377, + "CustomerInfo": 73653870, + "PaymentType": "Credit Card" + }, + { + "Id": 10407, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-07-30T15:47:48", + "TransactionId": 80537741, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 597, + "CustomerInfo": 84227702, + "PaymentType": "Debit Card" + }, + { + "Id": 10408, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2016-09-28T14:00:49", + "TransactionId": 86995304, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 580, + "CustomerInfo": 43427697, + "PaymentType": "Cash" + }, + { + "Id": 10409, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-01-27T12:34:51", + "TransactionId": 23127479, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 153, + "CustomerInfo": 52797771, + "PaymentType": "Debit Card" + }, + { + "Id": 10410, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2016-10-10T07:09:42", + "TransactionId": 25090206, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 587, + "CustomerInfo": 77428393, + "PaymentType": "Debit Card" + }, + { + "Id": 10411, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-09-27T07:41:48", + "TransactionId": 52389047, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 671, + "CustomerInfo": 1184586, + "PaymentType": "Credit Card" + }, + { + "Id": 10412, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-04-13T10:31:00", + "TransactionId": 80386912, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 26372720, + "PaymentType": "Cash" + }, + { + "Id": 10413, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-11-23T12:24:46", + "TransactionId": 90437424, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 943, + "CustomerInfo": 55541574, + "PaymentType": "Cash" + }, + { + "Id": 10414, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-03-18T18:17:08", + "TransactionId": 92822937, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 892, + "CustomerInfo": 49868077, + "PaymentType": "Cash" + }, + { + "Id": 10415, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2018-03-04T19:35:20", + "TransactionId": 92585915, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 695, + "CustomerInfo": 90307286, + "PaymentType": "Cash" + }, + { + "Id": 10416, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2019-12-11T09:14:59", + "TransactionId": 43100606, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 642, + "CustomerInfo": 80321542, + "PaymentType": "Debit Card" + }, + { + "Id": 10417, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2018-08-14T16:15:19", + "TransactionId": 46364495, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 3, + "CustomerInfo": 23902281, + "PaymentType": "Credit Card" + }, + { + "Id": 10418, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2018-12-16T17:17:40", + "TransactionId": 73600953, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 367, + "CustomerInfo": 64198226, + "PaymentType": "Debit Card" + }, + { + "Id": 10419, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2017-12-21T19:03:39", + "TransactionId": 71050995, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 40, + "CustomerInfo": 17980349, + "PaymentType": "Credit Card" + }, + { + "Id": 10420, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2016-02-06T18:32:24", + "TransactionId": 40775819, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 814, + "CustomerInfo": 68050860, + "PaymentType": "Cash" + }, + { + "Id": 10421, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2016-10-29T18:17:25", + "TransactionId": 51793045, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 759, + "CustomerInfo": 91703372, + "PaymentType": "Cash" + }, + { + "Id": 10422, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-07-05T16:59:14", + "TransactionId": 29078147, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 433, + "CustomerInfo": 31428213, + "PaymentType": "Credit Card" + }, + { + "Id": 10423, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-10-15T11:31:55", + "TransactionId": 69351903, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 867, + "CustomerInfo": 59890562, + "PaymentType": "Debit Card" + }, + { + "Id": 10424, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2016-11-16T19:54:46", + "TransactionId": 18512225, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 67899500, + "PaymentType": "Credit Card" + }, + { + "Id": 10425, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2019-08-14T14:20:59", + "TransactionId": 29572986, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 703, + "CustomerInfo": 51047063, + "PaymentType": "Cash" + }, + { + "Id": 10426, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-06-02T08:36:23", + "TransactionId": 25461241, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 792, + "CustomerInfo": 65536858, + "PaymentType": "Credit Card" + }, + { + "Id": 10427, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-02-23T11:03:59", + "TransactionId": 62757159, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 78, + "CustomerInfo": 77279285, + "PaymentType": "Cash" + }, + { + "Id": 10428, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2019-07-31T13:38:12", + "TransactionId": 27956330, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 529, + "CustomerInfo": 35352399, + "PaymentType": "Credit Card" + }, + { + "Id": 10429, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2018-09-19T10:30:00", + "TransactionId": 84534071, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 36, + "CustomerInfo": 38836317, + "PaymentType": "Debit Card" + }, + { + "Id": 10430, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2019-08-22T14:22:25", + "TransactionId": 19054694, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 139, + "CustomerInfo": 85187783, + "PaymentType": "Credit Card" + }, + { + "Id": 10431, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2019-03-12T12:29:40", + "TransactionId": 35870807, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 53, + "CustomerInfo": 92021837, + "PaymentType": "Debit Card" + }, + { + "Id": 10432, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-11-21T17:39:50", + "TransactionId": 3536291, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 242, + "CustomerInfo": 25737213, + "PaymentType": "Credit Card" + }, + { + "Id": 10433, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2019-04-06T18:44:21", + "TransactionId": 73323733, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 857, + "CustomerInfo": 32236273, + "PaymentType": "Credit Card" + }, + { + "Id": 10434, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-08-31T09:03:53", + "TransactionId": 97910211, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 460, + "CustomerInfo": 60399739, + "PaymentType": "Credit Card" + }, + { + "Id": 10435, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2016-04-05T10:48:35", + "TransactionId": 42014741, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 213, + "CustomerInfo": 25738590, + "PaymentType": "Cash" + }, + { + "Id": 10436, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2016-09-22T13:32:10", + "TransactionId": 54633410, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 892, + "CustomerInfo": 19689318, + "PaymentType": "Credit Card" + }, + { + "Id": 10437, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2018-03-16T14:23:25", + "TransactionId": 55093112, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 610, + "CustomerInfo": 89100960, + "PaymentType": "Cash" + }, + { + "Id": 10438, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-12-20T13:50:44", + "TransactionId": 57648216, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 753, + "CustomerInfo": 90597237, + "PaymentType": "Debit Card" + }, + { + "Id": 10439, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2016-06-20T09:56:53", + "TransactionId": 53465074, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 233, + "CustomerInfo": 63345984, + "PaymentType": "Cash" + }, + { + "Id": 10440, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2016-12-13T11:48:29", + "TransactionId": 15214897, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 660, + "CustomerInfo": 82637844, + "PaymentType": "Credit Card" + }, + { + "Id": 10441, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2019-08-24T13:26:41", + "TransactionId": 8706992, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 37, + "CustomerInfo": 29027992, + "PaymentType": "Cash" + }, + { + "Id": 10442, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-05-11T19:56:47", + "TransactionId": 29934419, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 424, + "CustomerInfo": 39809661, + "PaymentType": "Cash" + }, + { + "Id": 10443, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-01-26T10:42:49", + "TransactionId": 45259794, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 778, + "CustomerInfo": 59171640, + "PaymentType": "Cash" + }, + { + "Id": 10444, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-04-08T17:08:36", + "TransactionId": 2651025, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 405, + "CustomerInfo": 71098668, + "PaymentType": "Cash" + }, + { + "Id": 10445, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2018-12-22T16:54:46", + "TransactionId": 33949675, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 565, + "CustomerInfo": 61117694, + "PaymentType": "Cash" + }, + { + "Id": 10446, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2016-01-11T14:13:47", + "TransactionId": 12054962, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 832, + "CustomerInfo": 37341870, + "PaymentType": "Debit Card" + }, + { + "Id": 10447, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-08-24T08:35:57", + "TransactionId": 97063376, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 981, + "CustomerInfo": 50917395, + "PaymentType": "Credit Card" + }, + { + "Id": 10448, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-09-30T18:11:05", + "TransactionId": 28837039, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 783, + "CustomerInfo": 34182028, + "PaymentType": "Cash" + }, + { + "Id": 10449, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-09-12T18:29:05", + "TransactionId": 2947401, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 306, + "CustomerInfo": 87794079, + "PaymentType": "Debit Card" + }, + { + "Id": 10450, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2018-10-27T07:49:52", + "TransactionId": 45674599, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 567, + "CustomerInfo": 86371609, + "PaymentType": "Credit Card" + }, + { + "Id": 10451, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-05-01T17:51:04", + "TransactionId": 60499933, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 867, + "CustomerInfo": 89961741, + "PaymentType": "Debit Card" + }, + { + "Id": 10452, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-07-31T09:09:30", + "TransactionId": 74978613, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 941, + "CustomerInfo": 50058345, + "PaymentType": "Cash" + }, + { + "Id": 10453, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2019-05-11T10:19:12", + "TransactionId": 93115800, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 852, + "CustomerInfo": 97097818, + "PaymentType": "Cash" + }, + { + "Id": 10454, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2017-12-15T14:22:25", + "TransactionId": 42613087, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 994, + "CustomerInfo": 26849335, + "PaymentType": "Cash" + }, + { + "Id": 10455, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2019-04-18T18:58:54", + "TransactionId": 2684511, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 98, + "CustomerInfo": 71015001, + "PaymentType": "Cash" + }, + { + "Id": 10456, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-06-12T16:05:57", + "TransactionId": 20360318, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 953, + "CustomerInfo": 4727181, + "PaymentType": "Debit Card" + }, + { + "Id": 10457, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2016-12-02T15:46:31", + "TransactionId": 56841711, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 670, + "CustomerInfo": 12046275, + "PaymentType": "Cash" + }, + { + "Id": 10458, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-04-21T12:58:54", + "TransactionId": 49148199, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 316, + "CustomerInfo": 65211984, + "PaymentType": "Cash" + }, + { + "Id": 10459, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2019-10-22T10:04:13", + "TransactionId": 71363304, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 240, + "CustomerInfo": 26880011, + "PaymentType": "Credit Card" + }, + { + "Id": 10460, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2017-03-25T08:59:08", + "TransactionId": 30116626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 474, + "CustomerInfo": 84022241, + "PaymentType": "Credit Card" + }, + { + "Id": 10461, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2016-08-28T16:39:56", + "TransactionId": 22626774, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 303, + "CustomerInfo": 18627444, + "PaymentType": "Debit Card" + }, + { + "Id": 10462, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2019-09-22T10:17:54", + "TransactionId": 72976060, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 532, + "CustomerInfo": 85239483, + "PaymentType": "Credit Card" + }, + { + "Id": 10463, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-07-08T17:41:08", + "TransactionId": 42424687, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 768, + "CustomerInfo": 70272010, + "PaymentType": "Cash" + }, + { + "Id": 10464, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2018-07-02T08:34:13", + "TransactionId": 88798125, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 290, + "CustomerInfo": 67321791, + "PaymentType": "Cash" + }, + { + "Id": 10465, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2016-09-21T13:30:17", + "TransactionId": 3931750, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 182, + "CustomerInfo": 47164331, + "PaymentType": "Cash" + }, + { + "Id": 10466, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2016-07-28T11:50:12", + "TransactionId": 4731585, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 32607538, + "PaymentType": "Debit Card" + }, + { + "Id": 10467, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-08-23T10:24:49", + "TransactionId": 89257117, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 69722733, + "PaymentType": "Debit Card" + }, + { + "Id": 10468, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-03-01T16:49:26", + "TransactionId": 99780657, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 94911690, + "PaymentType": "Cash" + }, + { + "Id": 10469, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-07-23T11:35:40", + "TransactionId": 51979000, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 763, + "CustomerInfo": 6376852, + "PaymentType": "Credit Card" + }, + { + "Id": 10470, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2017-01-18T13:05:05", + "TransactionId": 86490961, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 186, + "CustomerInfo": 20455065, + "PaymentType": "Cash" + }, + { + "Id": 10471, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-05-17T08:17:31", + "TransactionId": 31998156, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 866, + "CustomerInfo": 52045229, + "PaymentType": "Debit Card" + }, + { + "Id": 10472, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2017-12-14T12:30:40", + "TransactionId": 13685871, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 886, + "CustomerInfo": 66053864, + "PaymentType": "Debit Card" + }, + { + "Id": 10473, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2017-08-18T14:48:55", + "TransactionId": 62587189, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 221, + "CustomerInfo": 15294998, + "PaymentType": "Cash" + }, + { + "Id": 10474, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2018-04-04T11:33:13", + "TransactionId": 73023080, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 295, + "CustomerInfo": 20570572, + "PaymentType": "Cash" + }, + { + "Id": 10475, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2018-04-18T16:48:52", + "TransactionId": 69007413, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 110, + "CustomerInfo": 51389482, + "PaymentType": "Debit Card" + }, + { + "Id": 10476, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-12-14T13:08:07", + "TransactionId": 14443959, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 334, + "CustomerInfo": 8589767, + "PaymentType": "Cash" + }, + { + "Id": 10477, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-08-07T19:36:29", + "TransactionId": 68394630, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 183, + "CustomerInfo": 73576102, + "PaymentType": "Debit Card" + }, + { + "Id": 10478, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2018-07-10T14:53:48", + "TransactionId": 90193227, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 933, + "CustomerInfo": 14472884, + "PaymentType": "Cash" + }, + { + "Id": 10479, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-01-02T16:20:04", + "TransactionId": 90535621, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 635, + "CustomerInfo": 78744804, + "PaymentType": "Credit Card" + }, + { + "Id": 10480, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2016-11-17T16:33:45", + "TransactionId": 27558641, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 417, + "CustomerInfo": 19370828, + "PaymentType": "Credit Card" + }, + { + "Id": 10481, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2018-07-01T19:54:29", + "TransactionId": 20081393, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 653, + "CustomerInfo": 13546347, + "PaymentType": "Cash" + }, + { + "Id": 10482, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2018-06-30T09:29:40", + "TransactionId": 45200716, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 8, + "CustomerInfo": 68410470, + "PaymentType": "Cash" + }, + { + "Id": 10483, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2019-05-25T16:50:01", + "TransactionId": 13190546, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 691, + "CustomerInfo": 39951065, + "PaymentType": "Credit Card" + }, + { + "Id": 10484, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2016-07-29T13:18:37", + "TransactionId": 15803848, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 849, + "CustomerInfo": 84737775, + "PaymentType": "Cash" + }, + { + "Id": 10485, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2018-09-29T10:15:01", + "TransactionId": 83896665, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 151, + "CustomerInfo": 83233519, + "PaymentType": "Credit Card" + }, + { + "Id": 10486, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-09-12T14:51:13", + "TransactionId": 76173927, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 316, + "CustomerInfo": 95826487, + "PaymentType": "Credit Card" + }, + { + "Id": 10487, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2018-07-13T08:21:42", + "TransactionId": 58979306, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 272, + "CustomerInfo": 50274252, + "PaymentType": "Cash" + }, + { + "Id": 10488, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-10-20T13:11:43", + "TransactionId": 91024063, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 669, + "CustomerInfo": 15722783, + "PaymentType": "Cash" + }, + { + "Id": 10489, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2019-01-19T14:56:50", + "TransactionId": 7100798, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 508, + "CustomerInfo": 60688617, + "PaymentType": "Credit Card" + }, + { + "Id": 10490, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-06-13T18:00:35", + "TransactionId": 52788695, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 299, + "CustomerInfo": 63061218, + "PaymentType": "Cash" + }, + { + "Id": 10491, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-05-06T08:35:57", + "TransactionId": 29205220, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 940, + "CustomerInfo": 22804919, + "PaymentType": "Debit Card" + }, + { + "Id": 10492, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-03-03T18:41:20", + "TransactionId": 29618414, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 885, + "CustomerInfo": 37978157, + "PaymentType": "Cash" + }, + { + "Id": 10493, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2016-01-25T11:42:52", + "TransactionId": 76029509, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 952, + "CustomerInfo": 67046381, + "PaymentType": "Debit Card" + }, + { + "Id": 10494, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2017-07-29T13:21:39", + "TransactionId": 14376856, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 742, + "CustomerInfo": 46723808, + "PaymentType": "Credit Card" + }, + { + "Id": 10495, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2016-07-17T08:24:52", + "TransactionId": 60199110, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 90, + "CustomerInfo": 60279067, + "PaymentType": "Cash" + }, + { + "Id": 10496, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2016-01-12T08:45:10", + "TransactionId": 54373302, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 167, + "CustomerInfo": 7769389, + "PaymentType": "Credit Card" + }, + { + "Id": 10497, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2016-10-31T09:15:59", + "TransactionId": 53375239, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 910, + "CustomerInfo": 37460124, + "PaymentType": "Debit Card" + }, + { + "Id": 10498, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2016-07-30T12:08:47", + "TransactionId": 19304490, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 160, + "CustomerInfo": 48141013, + "PaymentType": "Credit Card" + }, + { + "Id": 10499, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2017-06-03T14:41:08", + "TransactionId": 24370540, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 830, + "CustomerInfo": 10131981, + "PaymentType": "Credit Card" + }, + { + "Id": 10500, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2019-12-23T11:25:26", + "TransactionId": 52845292, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 310, + "CustomerInfo": 40684454, + "PaymentType": "Debit Card" + }, + { + "Id": 10501, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-07-21T13:38:30", + "TransactionId": 259986, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 168, + "CustomerInfo": 77821530, + "PaymentType": "Debit Card" + }, + { + "Id": 10502, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2016-10-01T14:11:28", + "TransactionId": 931557, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 515, + "CustomerInfo": 9793502, + "PaymentType": "Cash" + }, + { + "Id": 10503, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-07-24T07:57:13", + "TransactionId": 56013112, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 72957836, + "PaymentType": "Debit Card" + }, + { + "Id": 10504, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-09-20T11:26:18", + "TransactionId": 23681170, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 596, + "CustomerInfo": 31608154, + "PaymentType": "Cash" + }, + { + "Id": 10505, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-03-21T14:12:37", + "TransactionId": 49519419, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 443, + "CustomerInfo": 26810410, + "PaymentType": "Cash" + }, + { + "Id": 10506, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2016-10-21T16:39:30", + "TransactionId": 54073213, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 634, + "CustomerInfo": 29322636, + "PaymentType": "Debit Card" + }, + { + "Id": 10507, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2017-12-17T14:49:29", + "TransactionId": 54486582, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 763, + "CustomerInfo": 32040506, + "PaymentType": "Credit Card" + }, + { + "Id": 10508, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2016-07-05T15:54:17", + "TransactionId": 88951300, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 946, + "CustomerInfo": 52352836, + "PaymentType": "Cash" + }, + { + "Id": 10509, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2019-08-30T11:24:17", + "TransactionId": 94806671, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 925, + "CustomerInfo": 34108182, + "PaymentType": "Cash" + }, + { + "Id": 10510, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-12-02T10:12:26", + "TransactionId": 75683541, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 136, + "CustomerInfo": 72455381, + "PaymentType": "Cash" + }, + { + "Id": 10511, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-09-21T12:37:18", + "TransactionId": 36796555, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 155, + "CustomerInfo": 70189319, + "PaymentType": "Debit Card" + }, + { + "Id": 10512, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2017-08-08T12:22:28", + "TransactionId": 42102457, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 703, + "CustomerInfo": 1870059, + "PaymentType": "Cash" + }, + { + "Id": 10513, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2017-04-14T19:46:25", + "TransactionId": 13109364, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 471, + "CustomerInfo": 18985610, + "PaymentType": "Debit Card" + }, + { + "Id": 10514, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2018-10-27T13:58:39", + "TransactionId": 63234273, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 375, + "CustomerInfo": 2690196, + "PaymentType": "Credit Card" + }, + { + "Id": 10515, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2018-10-05T15:09:30", + "TransactionId": 88642560, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 617, + "CustomerInfo": 60507649, + "PaymentType": "Credit Card" + }, + { + "Id": 10516, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2019-07-22T13:19:55", + "TransactionId": 81326450, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 366, + "CustomerInfo": 94923115, + "PaymentType": "Debit Card" + }, + { + "Id": 10517, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2019-09-05T10:39:56", + "TransactionId": 91578686, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 919, + "CustomerInfo": 26383686, + "PaymentType": "Debit Card" + }, + { + "Id": 10518, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-12-30T12:50:59", + "TransactionId": 99131778, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 494, + "CustomerInfo": 11221714, + "PaymentType": "Cash" + }, + { + "Id": 10519, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2018-11-03T13:01:21", + "TransactionId": 23492793, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 141, + "CustomerInfo": 76954877, + "PaymentType": "Credit Card" + }, + { + "Id": 10520, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-12-12T10:24:06", + "TransactionId": 50888930, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 137, + "CustomerInfo": 36487013, + "PaymentType": "Credit Card" + }, + { + "Id": 10521, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2018-04-29T10:02:38", + "TransactionId": 12375330, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 507, + "CustomerInfo": 51167215, + "PaymentType": "Cash" + }, + { + "Id": 10522, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2019-03-03T10:49:26", + "TransactionId": 12668371, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 595, + "CustomerInfo": 76676828, + "PaymentType": "Cash" + }, + { + "Id": 10523, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-08-18T14:43:35", + "TransactionId": 86419343, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 682, + "CustomerInfo": 4386806, + "PaymentType": "Credit Card" + }, + { + "Id": 10524, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2016-04-23T07:39:13", + "TransactionId": 8023889, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 681, + "CustomerInfo": 18744318, + "PaymentType": "Debit Card" + }, + { + "Id": 10525, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2018-02-18T07:26:41", + "TransactionId": 51914373, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 215, + "CustomerInfo": 60706073, + "PaymentType": "Cash" + }, + { + "Id": 10526, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-06-06T14:36:06", + "TransactionId": 65619653, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 243, + "CustomerInfo": 17811581, + "PaymentType": "Debit Card" + }, + { + "Id": 10527, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2017-07-10T13:15:36", + "TransactionId": 92721600, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 235, + "CustomerInfo": 23819725, + "PaymentType": "Cash" + }, + { + "Id": 10528, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2017-05-16T19:06:32", + "TransactionId": 55933941, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 716, + "CustomerInfo": 34799398, + "PaymentType": "Cash" + }, + { + "Id": 10529, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2019-07-07T17:00:49", + "TransactionId": 64063100, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 577, + "CustomerInfo": 78971088, + "PaymentType": "Credit Card" + }, + { + "Id": 10530, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2018-05-15T18:35:08", + "TransactionId": 21417577, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 420, + "CustomerInfo": 8156076, + "PaymentType": "Debit Card" + }, + { + "Id": 10531, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-03-12T18:44:47", + "TransactionId": 35188450, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 730, + "CustomerInfo": 68412879, + "PaymentType": "Credit Card" + }, + { + "Id": 10532, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2018-05-15T09:21:36", + "TransactionId": 11317655, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 480, + "CustomerInfo": 90304125, + "PaymentType": "Debit Card" + }, + { + "Id": 10533, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-07-04T14:06:43", + "TransactionId": 53533046, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 521, + "CustomerInfo": 95340953, + "PaymentType": "Cash" + }, + { + "Id": 10534, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2019-10-18T08:00:32", + "TransactionId": 47521031, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 596, + "CustomerInfo": 6267111, + "PaymentType": "Credit Card" + }, + { + "Id": 10535, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-02-07T12:39:27", + "TransactionId": 61482892, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 92, + "CustomerInfo": 14966314, + "PaymentType": "Credit Card" + }, + { + "Id": 10536, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-01-13T08:47:54", + "TransactionId": 93231090, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 39, + "CustomerInfo": 54279859, + "PaymentType": "Cash" + }, + { + "Id": 10537, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2017-02-14T14:00:58", + "TransactionId": 12517896, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 713, + "CustomerInfo": 96882919, + "PaymentType": "Credit Card" + }, + { + "Id": 10538, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2017-03-12T11:05:51", + "TransactionId": 71259136, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 31296688, + "PaymentType": "Cash" + }, + { + "Id": 10539, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-02-12T18:29:23", + "TransactionId": 95492835, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 774, + "CustomerInfo": 89587398, + "PaymentType": "Credit Card" + }, + { + "Id": 10540, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-01-15T09:59:46", + "TransactionId": 49079259, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 505, + "CustomerInfo": 2020180, + "PaymentType": "Debit Card" + }, + { + "Id": 10541, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2019-11-17T16:39:04", + "TransactionId": 73760352, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 161, + "CustomerInfo": 75097028, + "PaymentType": "Cash" + }, + { + "Id": 10542, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-12-31T18:09:30", + "TransactionId": 96730213, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 629, + "CustomerInfo": 60627556, + "PaymentType": "Cash" + }, + { + "Id": 10543, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2017-06-03T15:28:39", + "TransactionId": 62259192, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 564, + "CustomerInfo": 60558711, + "PaymentType": "Credit Card" + }, + { + "Id": 10544, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2018-04-17T16:34:54", + "TransactionId": 7232738, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 197, + "CustomerInfo": 41752736, + "PaymentType": "Cash" + }, + { + "Id": 10545, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2018-12-16T14:09:10", + "TransactionId": 42995720, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 248, + "CustomerInfo": 95329968, + "PaymentType": "Credit Card" + }, + { + "Id": 10546, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2018-08-02T08:32:04", + "TransactionId": 97463826, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 470, + "CustomerInfo": 46158787, + "PaymentType": "Cash" + }, + { + "Id": 10547, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2018-01-05T09:46:57", + "TransactionId": 52129912, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 618, + "CustomerInfo": 86809389, + "PaymentType": "Credit Card" + }, + { + "Id": 10548, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-01-21T13:49:26", + "TransactionId": 68911287, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 749, + "CustomerInfo": 72888243, + "PaymentType": "Cash" + }, + { + "Id": 10549, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2016-02-04T14:26:53", + "TransactionId": 84362903, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 292, + "CustomerInfo": 30345996, + "PaymentType": "Credit Card" + }, + { + "Id": 10550, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2016-10-24T07:02:30", + "TransactionId": 8329271, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 86258412, + "PaymentType": "Credit Card" + }, + { + "Id": 10551, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-01-09T08:36:49", + "TransactionId": 30780682, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 975, + "CustomerInfo": 35049816, + "PaymentType": "Debit Card" + }, + { + "Id": 10552, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-07-31T18:08:38", + "TransactionId": 85431792, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 507, + "CustomerInfo": 76949456, + "PaymentType": "Debit Card" + }, + { + "Id": 10553, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-09-17T17:54:40", + "TransactionId": 6111439, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 731, + "CustomerInfo": 16955504, + "PaymentType": "Debit Card" + }, + { + "Id": 10554, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2017-12-26T07:48:00", + "TransactionId": 90060863, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 836, + "CustomerInfo": 95775241, + "PaymentType": "Debit Card" + }, + { + "Id": 10555, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-07-25T19:32:53", + "TransactionId": 60783465, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 323, + "CustomerInfo": 25666812, + "PaymentType": "Debit Card" + }, + { + "Id": 10556, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2018-07-10T09:27:30", + "TransactionId": 5520468, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 286, + "CustomerInfo": 2710229, + "PaymentType": "Debit Card" + }, + { + "Id": 10557, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2017-07-17T19:11:34", + "TransactionId": 88758833, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 530, + "CustomerInfo": 30257224, + "PaymentType": "Credit Card" + }, + { + "Id": 10558, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-10-01T11:00:58", + "TransactionId": 8736468, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 821, + "CustomerInfo": 40352341, + "PaymentType": "Cash" + }, + { + "Id": 10559, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2016-03-17T17:34:57", + "TransactionId": 3403957, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 73899062, + "PaymentType": "Cash" + }, + { + "Id": 10560, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-11-18T15:01:26", + "TransactionId": 83435831, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 139, + "CustomerInfo": 42822952, + "PaymentType": "Credit Card" + }, + { + "Id": 10561, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2019-12-15T12:08:56", + "TransactionId": 9498172, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 34849400, + "PaymentType": "Credit Card" + }, + { + "Id": 10562, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2018-01-12T16:31:00", + "TransactionId": 56040449, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 996, + "CustomerInfo": 26280905, + "PaymentType": "Debit Card" + }, + { + "Id": 10563, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2019-12-30T16:21:13", + "TransactionId": 658153, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 63, + "CustomerInfo": 18174505, + "PaymentType": "Debit Card" + }, + { + "Id": 10564, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2018-12-07T07:06:40", + "TransactionId": 9414045, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 631, + "CustomerInfo": 40479820, + "PaymentType": "Debit Card" + }, + { + "Id": 10565, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2018-07-26T08:06:17", + "TransactionId": 43077095, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 600, + "CustomerInfo": 56561320, + "PaymentType": "Cash" + }, + { + "Id": 10566, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-07-31T16:11:08", + "TransactionId": 86795769, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 808, + "CustomerInfo": 52593811, + "PaymentType": "Debit Card" + }, + { + "Id": 10567, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-10-08T09:30:14", + "TransactionId": 7813062, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 647, + "CustomerInfo": 74690703, + "PaymentType": "Debit Card" + }, + { + "Id": 10568, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-03-17T12:43:21", + "TransactionId": 28522407, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 78181527, + "PaymentType": "Cash" + }, + { + "Id": 10569, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-11-24T15:13:49", + "TransactionId": 8017494, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 740, + "CustomerInfo": 35321945, + "PaymentType": "Credit Card" + }, + { + "Id": 10570, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2017-07-11T10:08:07", + "TransactionId": 6416588, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 936, + "CustomerInfo": 26502084, + "PaymentType": "Debit Card" + }, + { + "Id": 10571, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2017-08-01T09:28:48", + "TransactionId": 50815094, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 445, + "CustomerInfo": 46574182, + "PaymentType": "Cash" + }, + { + "Id": 10572, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-09-02T17:42:43", + "TransactionId": 4876692, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 459, + "CustomerInfo": 15805036, + "PaymentType": "Credit Card" + }, + { + "Id": 10573, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-04-23T13:47:00", + "TransactionId": 30249076, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 181, + "CustomerInfo": 2052447, + "PaymentType": "Credit Card" + }, + { + "Id": 10574, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2016-12-04T14:11:02", + "TransactionId": 70212560, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 271, + "CustomerInfo": 95857486, + "PaymentType": "Debit Card" + }, + { + "Id": 10575, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2018-10-21T15:51:33", + "TransactionId": 9967486, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 585, + "CustomerInfo": 42171515, + "PaymentType": "Debit Card" + }, + { + "Id": 10576, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2018-08-21T12:54:17", + "TransactionId": 16087969, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 597, + "CustomerInfo": 52375083, + "PaymentType": "Cash" + }, + { + "Id": 10577, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2017-02-06T15:18:35", + "TransactionId": 95773952, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 833, + "CustomerInfo": 9493559, + "PaymentType": "Credit Card" + }, + { + "Id": 10578, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-03-30T16:57:48", + "TransactionId": 79019422, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 199, + "CustomerInfo": 74242811, + "PaymentType": "Cash" + }, + { + "Id": 10579, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2016-09-13T08:32:12", + "TransactionId": 79491634, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 338, + "CustomerInfo": 40799445, + "PaymentType": "Debit Card" + }, + { + "Id": 10580, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-04-26T17:39:42", + "TransactionId": 33127836, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 710, + "CustomerInfo": 20490018, + "PaymentType": "Debit Card" + }, + { + "Id": 10581, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2019-01-12T16:13:18", + "TransactionId": 6070097, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 172, + "CustomerInfo": 87817584, + "PaymentType": "Credit Card" + }, + { + "Id": 10582, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2017-11-14T16:29:08", + "TransactionId": 75092467, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 526, + "CustomerInfo": 21437489, + "PaymentType": "Debit Card" + }, + { + "Id": 10583, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-03-06T12:42:37", + "TransactionId": 47092975, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 754, + "CustomerInfo": 74195413, + "PaymentType": "Debit Card" + }, + { + "Id": 10584, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2017-10-12T15:11:23", + "TransactionId": 13900627, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 30287775, + "PaymentType": "Cash" + }, + { + "Id": 10585, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-11-27T08:33:22", + "TransactionId": 58494228, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 385, + "CustomerInfo": 15891636, + "PaymentType": "Cash" + }, + { + "Id": 10586, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2019-08-09T10:07:15", + "TransactionId": 51125104, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 95362797, + "PaymentType": "Credit Card" + }, + { + "Id": 10587, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-12-06T11:10:19", + "TransactionId": 35137879, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 355, + "CustomerInfo": 5440402, + "PaymentType": "Debit Card" + }, + { + "Id": 10588, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2019-01-26T08:34:31", + "TransactionId": 85080181, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 316, + "CustomerInfo": 91145912, + "PaymentType": "Cash" + }, + { + "Id": 10589, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-05-12T12:13:24", + "TransactionId": 16757849, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 842, + "CustomerInfo": 60905501, + "PaymentType": "Debit Card" + }, + { + "Id": 10590, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-06-07T08:18:14", + "TransactionId": 500085, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 997, + "CustomerInfo": 91929087, + "PaymentType": "Credit Card" + }, + { + "Id": 10591, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-02-03T07:51:19", + "TransactionId": 12711904, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 620, + "CustomerInfo": 69548043, + "PaymentType": "Cash" + }, + { + "Id": 10592, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2018-11-07T14:33:30", + "TransactionId": 76385615, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 477, + "CustomerInfo": 87239460, + "PaymentType": "Debit Card" + }, + { + "Id": 10593, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-10-13T10:01:55", + "TransactionId": 82251850, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 640, + "CustomerInfo": 1631691, + "PaymentType": "Debit Card" + }, + { + "Id": 10594, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2019-05-05T15:44:47", + "TransactionId": 13057217, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 220, + "CustomerInfo": 30820732, + "PaymentType": "Cash" + }, + { + "Id": 10595, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2019-03-01T07:52:19", + "TransactionId": 18368878, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 692, + "CustomerInfo": 60511454, + "PaymentType": "Credit Card" + }, + { + "Id": 10596, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-08-24T14:15:04", + "TransactionId": 39065785, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 709, + "CustomerInfo": 46892961, + "PaymentType": "Debit Card" + }, + { + "Id": 10597, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2019-04-18T11:14:04", + "TransactionId": 80473653, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 68818461, + "PaymentType": "Credit Card" + }, + { + "Id": 10598, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2019-11-15T09:00:52", + "TransactionId": 72516566, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 472, + "CustomerInfo": 61083662, + "PaymentType": "Cash" + }, + { + "Id": 10599, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2017-10-22T17:56:33", + "TransactionId": 38008754, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 600, + "CustomerInfo": 8425122, + "PaymentType": "Credit Card" + }, + { + "Id": 10600, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2018-01-25T14:51:30", + "TransactionId": 20925967, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 856, + "CustomerInfo": 39684190, + "PaymentType": "Cash" + }, + { + "Id": 10601, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2019-12-18T19:52:02", + "TransactionId": 87056398, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 880, + "CustomerInfo": 6201811, + "PaymentType": "Debit Card" + }, + { + "Id": 10602, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2017-08-05T17:48:37", + "TransactionId": 22676488, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 181, + "CustomerInfo": 14637184, + "PaymentType": "Debit Card" + }, + { + "Id": 10603, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2017-06-23T16:10:08", + "TransactionId": 64399098, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 191, + "CustomerInfo": 53566762, + "PaymentType": "Cash" + }, + { + "Id": 10604, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-10-04T12:54:35", + "TransactionId": 14294836, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 141, + "CustomerInfo": 23358492, + "PaymentType": "Credit Card" + }, + { + "Id": 10605, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-06-17T09:02:36", + "TransactionId": 11463002, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 674, + "CustomerInfo": 38383587, + "PaymentType": "Cash" + }, + { + "Id": 10606, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2018-12-30T17:28:54", + "TransactionId": 26290805, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 410, + "CustomerInfo": 5461011, + "PaymentType": "Cash" + }, + { + "Id": 10607, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-05-06T08:22:51", + "TransactionId": 5903457, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 40, + "CustomerInfo": 12379674, + "PaymentType": "Cash" + }, + { + "Id": 10608, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-09-09T09:43:55", + "TransactionId": 52800601, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 569, + "CustomerInfo": 87432254, + "PaymentType": "Debit Card" + }, + { + "Id": 10609, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2016-10-29T11:00:40", + "TransactionId": 9332670, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 762, + "CustomerInfo": 20252944, + "PaymentType": "Cash" + }, + { + "Id": 10610, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-12-15T18:05:20", + "TransactionId": 19701648, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 920, + "CustomerInfo": 84923381, + "PaymentType": "Credit Card" + }, + { + "Id": 10611, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2018-03-21T11:10:45", + "TransactionId": 34363934, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 22, + "CustomerInfo": 43811520, + "PaymentType": "Debit Card" + }, + { + "Id": 10612, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-02-16T12:22:02", + "TransactionId": 93376189, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 37377827, + "PaymentType": "Debit Card" + }, + { + "Id": 10613, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-10-27T18:03:01", + "TransactionId": 98848729, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 615, + "CustomerInfo": 67081964, + "PaymentType": "Credit Card" + }, + { + "Id": 10614, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-12-14T18:28:22", + "TransactionId": 96676916, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 8, + "CustomerInfo": 47644764, + "PaymentType": "Cash" + }, + { + "Id": 10615, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2016-11-30T15:33:33", + "TransactionId": 6836231, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 8, + "CustomerInfo": 19040191, + "PaymentType": "Cash" + }, + { + "Id": 10616, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2019-06-26T11:07:26", + "TransactionId": 49662070, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 314, + "CustomerInfo": 80203977, + "PaymentType": "Cash" + }, + { + "Id": 10617, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2018-04-21T11:02:24", + "TransactionId": 44392763, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 770, + "CustomerInfo": 24393698, + "PaymentType": "Debit Card" + }, + { + "Id": 10618, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2016-04-24T17:55:49", + "TransactionId": 23342951, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 209, + "CustomerInfo": 59030094, + "PaymentType": "Debit Card" + }, + { + "Id": 10619, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2017-10-10T11:04:25", + "TransactionId": 35079540, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 536, + "CustomerInfo": 90475458, + "PaymentType": "Credit Card" + }, + { + "Id": 10620, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2017-02-28T11:40:16", + "TransactionId": 66261235, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 606, + "CustomerInfo": 45874211, + "PaymentType": "Cash" + }, + { + "Id": 10621, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-02-12T14:51:56", + "TransactionId": 63973371, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 885, + "CustomerInfo": 40767962, + "PaymentType": "Cash" + }, + { + "Id": 10622, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2018-01-08T10:19:29", + "TransactionId": 97975125, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 477, + "CustomerInfo": 51375109, + "PaymentType": "Credit Card" + }, + { + "Id": 10623, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2017-07-19T17:43:26", + "TransactionId": 75894451, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 911, + "CustomerInfo": 46312616, + "PaymentType": "Debit Card" + }, + { + "Id": 10624, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2016-09-18T09:17:51", + "TransactionId": 86755230, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 234, + "CustomerInfo": 63242231, + "PaymentType": "Cash" + }, + { + "Id": 10625, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-07-17T09:39:45", + "TransactionId": 70990934, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 875, + "CustomerInfo": 77929411, + "PaymentType": "Debit Card" + }, + { + "Id": 10626, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2019-04-29T16:43:41", + "TransactionId": 7914134, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 680, + "CustomerInfo": 67532933, + "PaymentType": "Cash" + }, + { + "Id": 10627, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-08-22T17:58:16", + "TransactionId": 76347138, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 830, + "CustomerInfo": 80826201, + "PaymentType": "Cash" + }, + { + "Id": 10628, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-12-27T14:35:05", + "TransactionId": 19859247, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 189, + "CustomerInfo": 97540865, + "PaymentType": "Debit Card" + }, + { + "Id": 10629, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2016-12-15T18:31:32", + "TransactionId": 35350278, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 412, + "CustomerInfo": 26120015, + "PaymentType": "Credit Card" + }, + { + "Id": 10630, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2019-09-09T07:01:21", + "TransactionId": 68591846, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 44, + "CustomerInfo": 90307526, + "PaymentType": "Debit Card" + }, + { + "Id": 10631, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2018-10-11T08:23:00", + "TransactionId": 29468019, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 240, + "CustomerInfo": 34791906, + "PaymentType": "Cash" + }, + { + "Id": 10632, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2019-01-19T14:59:51", + "TransactionId": 94991803, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 759, + "CustomerInfo": 7523087, + "PaymentType": "Credit Card" + }, + { + "Id": 10633, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2017-11-01T17:23:34", + "TransactionId": 42173489, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 25, + "CustomerInfo": 45386801, + "PaymentType": "Debit Card" + }, + { + "Id": 10634, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2017-02-07T09:04:54", + "TransactionId": 81048573, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 691, + "CustomerInfo": 25756412, + "PaymentType": "Debit Card" + }, + { + "Id": 10635, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-08-30T11:36:32", + "TransactionId": 66160880, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 491, + "CustomerInfo": 72475598, + "PaymentType": "Debit Card" + }, + { + "Id": 10636, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-11-27T10:18:46", + "TransactionId": 43711341, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 510, + "CustomerInfo": 21909695, + "PaymentType": "Debit Card" + }, + { + "Id": 10637, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2019-01-07T12:18:00", + "TransactionId": 86335391, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 536, + "CustomerInfo": 79288431, + "PaymentType": "Debit Card" + }, + { + "Id": 10638, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2018-03-22T17:14:56", + "TransactionId": 12173945, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 976, + "CustomerInfo": 24741211, + "PaymentType": "Debit Card" + }, + { + "Id": 10639, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2017-06-26T07:01:03", + "TransactionId": 25884399, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 748, + "CustomerInfo": 12604129, + "PaymentType": "Cash" + }, + { + "Id": 10640, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-05-13T17:12:12", + "TransactionId": 19477999, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 749, + "CustomerInfo": 98875852, + "PaymentType": "Debit Card" + }, + { + "Id": 10641, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2016-05-18T10:06:49", + "TransactionId": 67816445, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 362, + "CustomerInfo": 12848360, + "PaymentType": "Cash" + }, + { + "Id": 10642, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2018-08-01T11:44:44", + "TransactionId": 92574982, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 89, + "CustomerInfo": 75170877, + "PaymentType": "Credit Card" + }, + { + "Id": 10643, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2017-08-16T17:07:52", + "TransactionId": 50236663, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 153, + "CustomerInfo": 14168559, + "PaymentType": "Credit Card" + }, + { + "Id": 10644, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-06-04T19:43:24", + "TransactionId": 53743275, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 88, + "CustomerInfo": 5311595, + "PaymentType": "Credit Card" + }, + { + "Id": 10645, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2019-02-27T18:18:00", + "TransactionId": 17078140, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 537, + "CustomerInfo": 28608414, + "PaymentType": "Debit Card" + }, + { + "Id": 10646, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2016-12-24T10:20:12", + "TransactionId": 4871755, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 563, + "CustomerInfo": 79475090, + "PaymentType": "Debit Card" + }, + { + "Id": 10647, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2017-10-20T13:11:08", + "TransactionId": 11161618, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 855, + "CustomerInfo": 50306915, + "PaymentType": "Debit Card" + }, + { + "Id": 10648, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-04-20T09:28:39", + "TransactionId": 73240673, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 614, + "CustomerInfo": 46474281, + "PaymentType": "Cash" + }, + { + "Id": 10649, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2018-09-10T15:25:47", + "TransactionId": 55173807, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 523, + "CustomerInfo": 97489379, + "PaymentType": "Credit Card" + }, + { + "Id": 10650, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2016-09-14T13:36:12", + "TransactionId": 73043770, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 403, + "CustomerInfo": 97782112, + "PaymentType": "Credit Card" + }, + { + "Id": 10651, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-09-08T08:49:29", + "TransactionId": 32916839, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 181, + "CustomerInfo": 87251289, + "PaymentType": "Cash" + }, + { + "Id": 10652, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2017-07-06T19:44:59", + "TransactionId": 31971007, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 987, + "CustomerInfo": 91702842, + "PaymentType": "Debit Card" + }, + { + "Id": 10653, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-01-24T19:57:56", + "TransactionId": 22714773, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 307, + "CustomerInfo": 62526277, + "PaymentType": "Credit Card" + }, + { + "Id": 10654, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-11-18T18:16:08", + "TransactionId": 3109253, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 388, + "CustomerInfo": 51994939, + "PaymentType": "Debit Card" + }, + { + "Id": 10655, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2016-09-10T11:53:57", + "TransactionId": 74164046, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 26, + "CustomerInfo": 54614137, + "PaymentType": "Debit Card" + }, + { + "Id": 10656, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2019-02-01T07:55:38", + "TransactionId": 46067601, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 462, + "CustomerInfo": 82468555, + "PaymentType": "Credit Card" + }, + { + "Id": 10657, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-08-28T07:08:33", + "TransactionId": 51002264, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 437, + "CustomerInfo": 59400742, + "PaymentType": "Debit Card" + }, + { + "Id": 10658, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-03-13T19:24:06", + "TransactionId": 93415635, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 243, + "CustomerInfo": 13395649, + "PaymentType": "Credit Card" + }, + { + "Id": 10659, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2016-04-23T15:32:59", + "TransactionId": 23737007, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 921, + "CustomerInfo": 89447482, + "PaymentType": "Debit Card" + }, + { + "Id": 10660, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-12-16T18:51:16", + "TransactionId": 12484477, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 795, + "CustomerInfo": 26688919, + "PaymentType": "Debit Card" + }, + { + "Id": 10661, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-10-08T11:47:28", + "TransactionId": 43547560, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 634, + "CustomerInfo": 16988813, + "PaymentType": "Credit Card" + }, + { + "Id": 10662, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-02-15T14:14:47", + "TransactionId": 67330441, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 548, + "CustomerInfo": 79081648, + "PaymentType": "Cash" + }, + { + "Id": 10663, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2016-07-08T13:51:01", + "TransactionId": 55563616, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 896, + "CustomerInfo": 23356030, + "PaymentType": "Credit Card" + }, + { + "Id": 10664, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2018-12-20T19:11:43", + "TransactionId": 91785783, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 461, + "CustomerInfo": 71208579, + "PaymentType": "Cash" + }, + { + "Id": 10665, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2017-12-05T14:01:49", + "TransactionId": 47659352, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 565, + "CustomerInfo": 72541640, + "PaymentType": "Debit Card" + }, + { + "Id": 10666, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2018-01-17T07:10:34", + "TransactionId": 26405505, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 669, + "CustomerInfo": 31720918, + "PaymentType": "Debit Card" + }, + { + "Id": 10667, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2017-05-08T18:45:30", + "TransactionId": 6039980, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 409, + "CustomerInfo": 14712072, + "PaymentType": "Credit Card" + }, + { + "Id": 10668, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-02-13T14:46:36", + "TransactionId": 68529719, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 31658787, + "PaymentType": "Cash" + }, + { + "Id": 10669, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2016-03-04T10:06:14", + "TransactionId": 44954940, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 634, + "CustomerInfo": 91738308, + "PaymentType": "Debit Card" + }, + { + "Id": 10670, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2016-03-15T07:22:22", + "TransactionId": 18653794, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 557, + "CustomerInfo": 89054174, + "PaymentType": "Cash" + }, + { + "Id": 10671, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2016-02-26T11:58:51", + "TransactionId": 91249813, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 765, + "CustomerInfo": 2680453, + "PaymentType": "Debit Card" + }, + { + "Id": 10672, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-09-07T15:48:06", + "TransactionId": 93894666, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 382, + "CustomerInfo": 7073156, + "PaymentType": "Debit Card" + }, + { + "Id": 10673, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2018-07-06T07:45:24", + "TransactionId": 92761171, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 76273038, + "PaymentType": "Credit Card" + }, + { + "Id": 10674, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-04-18T18:05:28", + "TransactionId": 11311073, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 308, + "CustomerInfo": 58530976, + "PaymentType": "Cash" + }, + { + "Id": 10675, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2016-12-14T08:42:00", + "TransactionId": 16048509, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 858, + "CustomerInfo": 61091466, + "PaymentType": "Cash" + }, + { + "Id": 10676, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2019-10-19T17:00:49", + "TransactionId": 19717320, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 873, + "CustomerInfo": 56817399, + "PaymentType": "Debit Card" + }, + { + "Id": 10677, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2017-03-01T14:11:11", + "TransactionId": 57004834, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 877, + "CustomerInfo": 93107209, + "PaymentType": "Cash" + }, + { + "Id": 10678, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-06-11T17:11:46", + "TransactionId": 54882289, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 151, + "CustomerInfo": 57288394, + "PaymentType": "Cash" + }, + { + "Id": 10679, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2018-10-18T13:16:02", + "TransactionId": 84435928, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 764, + "CustomerInfo": 65629719, + "PaymentType": "Credit Card" + }, + { + "Id": 10680, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-05-25T16:49:09", + "TransactionId": 64990468, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 416, + "CustomerInfo": 22089288, + "PaymentType": "Cash" + }, + { + "Id": 10681, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-12-15T19:27:33", + "TransactionId": 75150982, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 199, + "CustomerInfo": 33776061, + "PaymentType": "Debit Card" + }, + { + "Id": 10682, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2018-04-20T08:09:10", + "TransactionId": 41638501, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 597, + "CustomerInfo": 52643538, + "PaymentType": "Debit Card" + }, + { + "Id": 10683, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2019-03-28T12:38:18", + "TransactionId": 28538849, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 337, + "CustomerInfo": 22667110, + "PaymentType": "Debit Card" + }, + { + "Id": 10684, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-01-24T18:56:44", + "TransactionId": 29846995, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 423, + "CustomerInfo": 3476019, + "PaymentType": "Cash" + }, + { + "Id": 10685, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2017-08-19T15:19:35", + "TransactionId": 73713338, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 97, + "CustomerInfo": 49371736, + "PaymentType": "Cash" + }, + { + "Id": 10686, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2017-02-17T19:46:42", + "TransactionId": 92899940, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 330, + "CustomerInfo": 70639639, + "PaymentType": "Cash" + }, + { + "Id": 10687, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-04-14T11:47:46", + "TransactionId": 61502118, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 8, + "CustomerInfo": 64748408, + "PaymentType": "Debit Card" + }, + { + "Id": 10688, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-01-05T16:26:59", + "TransactionId": 71140773, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 4, + "CustomerInfo": 45011948, + "PaymentType": "Debit Card" + }, + { + "Id": 10689, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-11-11T15:57:53", + "TransactionId": 61480369, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 56083713, + "PaymentType": "Credit Card" + }, + { + "Id": 10690, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-01-26T19:12:00", + "TransactionId": 48824008, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 534, + "CustomerInfo": 88751623, + "PaymentType": "Cash" + }, + { + "Id": 10691, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2017-10-28T19:33:45", + "TransactionId": 56958148, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 394, + "CustomerInfo": 78301987, + "PaymentType": "Cash" + }, + { + "Id": 10692, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2016-04-08T17:07:26", + "TransactionId": 64014412, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 650, + "CustomerInfo": 36040445, + "PaymentType": "Cash" + }, + { + "Id": 10693, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2018-03-17T11:25:26", + "TransactionId": 17918791, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 370, + "CustomerInfo": 57361291, + "PaymentType": "Debit Card" + }, + { + "Id": 10694, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2016-08-02T18:48:14", + "TransactionId": 76797989, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 696, + "CustomerInfo": 96807886, + "PaymentType": "Debit Card" + }, + { + "Id": 10695, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2019-12-11T10:47:00", + "TransactionId": 20060756, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 81, + "CustomerInfo": 84652507, + "PaymentType": "Credit Card" + }, + { + "Id": 10696, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2016-02-01T10:32:18", + "TransactionId": 57492633, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 981, + "CustomerInfo": 32774963, + "PaymentType": "Debit Card" + }, + { + "Id": 10697, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2017-11-01T13:49:44", + "TransactionId": 42968229, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 55807437, + "PaymentType": "Cash" + }, + { + "Id": 10698, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2017-08-14T16:55:21", + "TransactionId": 29036274, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 518, + "CustomerInfo": 86286196, + "PaymentType": "Cash" + }, + { + "Id": 10699, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2019-11-09T17:57:50", + "TransactionId": 90044566, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 664, + "CustomerInfo": 15042535, + "PaymentType": "Credit Card" + }, + { + "Id": 10700, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-04-26T08:03:24", + "TransactionId": 1810789, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 389, + "CustomerInfo": 14714029, + "PaymentType": "Cash" + }, + { + "Id": 10701, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2017-05-19T12:16:34", + "TransactionId": 88918021, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 692, + "CustomerInfo": 50724536, + "PaymentType": "Credit Card" + }, + { + "Id": 10702, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2017-03-19T18:23:20", + "TransactionId": 96287088, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 28, + "CustomerInfo": 15757407, + "PaymentType": "Debit Card" + }, + { + "Id": 10703, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-01-09T13:08:07", + "TransactionId": 7811597, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 129, + "CustomerInfo": 71327105, + "PaymentType": "Debit Card" + }, + { + "Id": 10704, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2016-02-04T14:45:53", + "TransactionId": 33159902, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 458, + "CustomerInfo": 73767749, + "PaymentType": "Credit Card" + }, + { + "Id": 10705, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2016-06-21T18:19:52", + "TransactionId": 51534468, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 138, + "CustomerInfo": 87434132, + "PaymentType": "Cash" + }, + { + "Id": 10706, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-12-29T18:51:59", + "TransactionId": 70532738, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 20, + "CustomerInfo": 42489249, + "PaymentType": "Credit Card" + }, + { + "Id": 10707, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-12-11T08:08:18", + "TransactionId": 59284515, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 557, + "CustomerInfo": 52546527, + "PaymentType": "Debit Card" + }, + { + "Id": 10708, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-05-10T17:07:18", + "TransactionId": 99559629, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 922, + "CustomerInfo": 34838737, + "PaymentType": "Debit Card" + }, + { + "Id": 10709, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2016-04-12T19:24:23", + "TransactionId": 64585746, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 606, + "CustomerInfo": 27355454, + "PaymentType": "Debit Card" + }, + { + "Id": 10710, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-09-07T14:06:26", + "TransactionId": 20595104, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 374, + "CustomerInfo": 55332149, + "PaymentType": "Credit Card" + }, + { + "Id": 10711, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-03-15T18:35:43", + "TransactionId": 39277050, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 346, + "CustomerInfo": 33956427, + "PaymentType": "Debit Card" + }, + { + "Id": 10712, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-11-11T08:43:09", + "TransactionId": 94941199, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 891, + "CustomerInfo": 95445172, + "PaymentType": "Debit Card" + }, + { + "Id": 10713, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-08-21T14:26:18", + "TransactionId": 74693233, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 451, + "CustomerInfo": 22823933, + "PaymentType": "Credit Card" + }, + { + "Id": 10714, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-02-21T08:18:40", + "TransactionId": 84416849, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 626, + "CustomerInfo": 85360969, + "PaymentType": "Debit Card" + }, + { + "Id": 10715, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-11-09T10:35:37", + "TransactionId": 6318729, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 871, + "CustomerInfo": 72733697, + "PaymentType": "Cash" + }, + { + "Id": 10716, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-12-30T12:26:12", + "TransactionId": 86732601, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 915, + "CustomerInfo": 23349047, + "PaymentType": "Credit Card" + }, + { + "Id": 10717, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2017-11-01T09:17:34", + "TransactionId": 82933900, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 65, + "CustomerInfo": 32447363, + "PaymentType": "Debit Card" + }, + { + "Id": 10718, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-02-20T08:45:10", + "TransactionId": 31131305, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 237, + "CustomerInfo": 52284743, + "PaymentType": "Credit Card" + }, + { + "Id": 10719, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-11-20T12:11:48", + "TransactionId": 10159650, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 281, + "CustomerInfo": 68536821, + "PaymentType": "Credit Card" + }, + { + "Id": 10720, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2017-09-06T14:25:26", + "TransactionId": 1382627, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 762, + "CustomerInfo": 51321429, + "PaymentType": "Debit Card" + }, + { + "Id": 10721, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-04-23T09:47:31", + "TransactionId": 19713622, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 417, + "CustomerInfo": 35210739, + "PaymentType": "Cash" + }, + { + "Id": 10722, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-10-02T15:12:23", + "TransactionId": 22329797, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 391, + "CustomerInfo": 28378308, + "PaymentType": "Credit Card" + }, + { + "Id": 10723, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-01-10T07:40:05", + "TransactionId": 28710738, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 647, + "CustomerInfo": 16098318, + "PaymentType": "Credit Card" + }, + { + "Id": 10724, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-05-23T17:59:00", + "TransactionId": 2317550, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 429, + "CustomerInfo": 23220965, + "PaymentType": "Debit Card" + }, + { + "Id": 10725, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2019-05-05T10:09:33", + "TransactionId": 82769130, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 327, + "CustomerInfo": 75247325, + "PaymentType": "Debit Card" + }, + { + "Id": 10726, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-05-06T07:40:31", + "TransactionId": 50440455, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 759, + "CustomerInfo": 75090376, + "PaymentType": "Credit Card" + }, + { + "Id": 10727, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-02-16T15:09:13", + "TransactionId": 24984054, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 581, + "CustomerInfo": 23077729, + "PaymentType": "Debit Card" + }, + { + "Id": 10728, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2018-10-14T18:50:50", + "TransactionId": 26860952, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 492, + "CustomerInfo": 69275593, + "PaymentType": "Debit Card" + }, + { + "Id": 10729, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2016-10-29T11:50:38", + "TransactionId": 49086441, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 29, + "CustomerInfo": 38792066, + "PaymentType": "Debit Card" + }, + { + "Id": 10730, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-05-20T07:13:18", + "TransactionId": 21401888, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 33, + "CustomerInfo": 91448739, + "PaymentType": "Credit Card" + }, + { + "Id": 10731, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-02-22T19:51:45", + "TransactionId": 7602426, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 639, + "CustomerInfo": 95939684, + "PaymentType": "Credit Card" + }, + { + "Id": 10732, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-07-30T09:18:00", + "TransactionId": 55351344, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 29, + "CustomerInfo": 72433399, + "PaymentType": "Debit Card" + }, + { + "Id": 10733, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-02-25T12:21:19", + "TransactionId": 86860833, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 557, + "CustomerInfo": 56128298, + "PaymentType": "Cash" + }, + { + "Id": 10734, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-05-07T07:49:35", + "TransactionId": 93691701, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 371, + "CustomerInfo": 50482549, + "PaymentType": "Debit Card" + }, + { + "Id": 10735, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2019-07-28T08:10:36", + "TransactionId": 55399165, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 638, + "CustomerInfo": 28407193, + "PaymentType": "Cash" + }, + { + "Id": 10736, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2016-03-04T12:02:10", + "TransactionId": 49243624, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 650, + "CustomerInfo": 80724774, + "PaymentType": "Debit Card" + }, + { + "Id": 10737, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-10-13T11:02:41", + "TransactionId": 26582229, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 86224215, + "PaymentType": "Credit Card" + }, + { + "Id": 10738, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2018-02-11T11:30:37", + "TransactionId": 57896027, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 495, + "CustomerInfo": 57748185, + "PaymentType": "Credit Card" + }, + { + "Id": 10739, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2017-03-12T15:49:32", + "TransactionId": 93456508, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 287, + "CustomerInfo": 95406339, + "PaymentType": "Debit Card" + }, + { + "Id": 10740, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2019-08-24T12:45:13", + "TransactionId": 18404465, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 421, + "CustomerInfo": 19603945, + "PaymentType": "Credit Card" + }, + { + "Id": 10741, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2017-08-28T10:32:01", + "TransactionId": 89313292, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 627, + "CustomerInfo": 32242982, + "PaymentType": "Credit Card" + }, + { + "Id": 10742, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2016-02-25T08:22:25", + "TransactionId": 83614515, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 554, + "CustomerInfo": 92551921, + "PaymentType": "Cash" + }, + { + "Id": 10743, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-08-26T16:26:50", + "TransactionId": 35697944, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 481, + "CustomerInfo": 99238942, + "PaymentType": "Credit Card" + }, + { + "Id": 10744, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2016-12-07T16:03:48", + "TransactionId": 44711498, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 438, + "CustomerInfo": 46967573, + "PaymentType": "Credit Card" + }, + { + "Id": 10745, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-10-13T08:28:11", + "TransactionId": 25981801, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 799, + "CustomerInfo": 80760940, + "PaymentType": "Cash" + }, + { + "Id": 10746, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-11-07T18:27:30", + "TransactionId": 38806731, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 5818912, + "PaymentType": "Cash" + }, + { + "Id": 10747, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2017-03-08T08:02:50", + "TransactionId": 16964092, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 449, + "CustomerInfo": 92256192, + "PaymentType": "Credit Card" + }, + { + "Id": 10748, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-02-03T13:34:19", + "TransactionId": 34623557, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 293, + "CustomerInfo": 77076926, + "PaymentType": "Credit Card" + }, + { + "Id": 10749, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-03-25T11:51:39", + "TransactionId": 51569429, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 395, + "CustomerInfo": 66277726, + "PaymentType": "Debit Card" + }, + { + "Id": 10750, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-10-12T19:43:15", + "TransactionId": 47439739, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 455, + "CustomerInfo": 87820488, + "PaymentType": "Credit Card" + }, + { + "Id": 10751, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2018-08-07T16:07:49", + "TransactionId": 21648678, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 265, + "CustomerInfo": 19916858, + "PaymentType": "Cash" + }, + { + "Id": 10752, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-01-08T14:51:13", + "TransactionId": 15274983, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 82975551, + "PaymentType": "Credit Card" + }, + { + "Id": 10753, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-06-02T07:57:39", + "TransactionId": 47933135, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 870, + "CustomerInfo": 558870, + "PaymentType": "Credit Card" + }, + { + "Id": 10754, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2018-07-22T16:18:37", + "TransactionId": 92734981, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 36037425, + "PaymentType": "Cash" + }, + { + "Id": 10755, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2019-11-21T08:26:44", + "TransactionId": 52854088, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 615, + "CustomerInfo": 27723365, + "PaymentType": "Debit Card" + }, + { + "Id": 10756, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-01-31T07:17:02", + "TransactionId": 44893649, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 941, + "CustomerInfo": 9415176, + "PaymentType": "Cash" + }, + { + "Id": 10757, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2017-04-12T19:39:56", + "TransactionId": 78415242, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 763, + "CustomerInfo": 83232969, + "PaymentType": "Debit Card" + }, + { + "Id": 10758, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-12-28T19:21:30", + "TransactionId": 85727036, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 484, + "CustomerInfo": 21301820, + "PaymentType": "Cash" + }, + { + "Id": 10759, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2017-09-30T08:35:48", + "TransactionId": 23185899, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 780, + "CustomerInfo": 98693380, + "PaymentType": "Cash" + }, + { + "Id": 10760, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2018-01-04T13:03:48", + "TransactionId": 46351761, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 160, + "CustomerInfo": 58205584, + "PaymentType": "Debit Card" + }, + { + "Id": 10761, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2019-03-15T15:03:19", + "TransactionId": 32118298, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 31, + "CustomerInfo": 88217290, + "PaymentType": "Debit Card" + }, + { + "Id": 10762, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-07-27T19:28:42", + "TransactionId": 36881148, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 291, + "CustomerInfo": 60262935, + "PaymentType": "Debit Card" + }, + { + "Id": 10763, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2018-08-01T09:40:19", + "TransactionId": 86971981, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 140, + "CustomerInfo": 25989417, + "PaymentType": "Credit Card" + }, + { + "Id": 10764, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-06-09T09:40:45", + "TransactionId": 90829180, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 570, + "CustomerInfo": 15443581, + "PaymentType": "Cash" + }, + { + "Id": 10765, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2016-09-20T17:00:58", + "TransactionId": 41148330, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 333, + "CustomerInfo": 81736841, + "PaymentType": "Debit Card" + }, + { + "Id": 10766, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-08-24T18:26:56", + "TransactionId": 82757123, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 225, + "CustomerInfo": 54646641, + "PaymentType": "Cash" + }, + { + "Id": 10767, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2017-03-19T10:18:46", + "TransactionId": 84291148, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 683, + "CustomerInfo": 82546352, + "PaymentType": "Credit Card" + }, + { + "Id": 10768, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-11-24T16:55:38", + "TransactionId": 74317152, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 554, + "CustomerInfo": 61901135, + "PaymentType": "Credit Card" + }, + { + "Id": 10769, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2017-02-24T15:01:18", + "TransactionId": 73032504, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 498, + "CustomerInfo": 53270819, + "PaymentType": "Cash" + }, + { + "Id": 10770, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2017-10-16T07:11:25", + "TransactionId": 62168621, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 38, + "CustomerInfo": 60762106, + "PaymentType": "Debit Card" + }, + { + "Id": 10771, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2017-09-13T11:24:17", + "TransactionId": 48857729, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 141, + "CustomerInfo": 24665763, + "PaymentType": "Debit Card" + }, + { + "Id": 10772, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2018-12-23T18:43:03", + "TransactionId": 42088575, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 663, + "CustomerInfo": 62397403, + "PaymentType": "Credit Card" + }, + { + "Id": 10773, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2017-06-16T09:30:06", + "TransactionId": 14227943, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 427, + "CustomerInfo": 59921576, + "PaymentType": "Debit Card" + }, + { + "Id": 10774, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-09-09T12:46:48", + "TransactionId": 59656553, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 151, + "CustomerInfo": 1396397, + "PaymentType": "Credit Card" + }, + { + "Id": 10775, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-05-05T07:56:56", + "TransactionId": 38936208, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 68, + "CustomerInfo": 85088224, + "PaymentType": "Debit Card" + }, + { + "Id": 10776, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2019-02-03T10:41:05", + "TransactionId": 46876300, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 370, + "CustomerInfo": 41932568, + "PaymentType": "Debit Card" + }, + { + "Id": 10777, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2016-07-20T15:56:01", + "TransactionId": 47960678, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 884, + "CustomerInfo": 92232045, + "PaymentType": "Cash" + }, + { + "Id": 10778, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2016-08-26T19:48:43", + "TransactionId": 93192152, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 695, + "CustomerInfo": 6436587, + "PaymentType": "Credit Card" + }, + { + "Id": 10779, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-04-27T08:52:13", + "TransactionId": 55742005, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 972, + "CustomerInfo": 89908646, + "PaymentType": "Cash" + }, + { + "Id": 10780, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-09-03T09:22:11", + "TransactionId": 58387068, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 268, + "CustomerInfo": 86461465, + "PaymentType": "Credit Card" + }, + { + "Id": 10781, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2016-11-12T11:16:13", + "TransactionId": 1967515, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 883, + "CustomerInfo": 74095927, + "PaymentType": "Credit Card" + }, + { + "Id": 10782, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2019-06-26T16:35:20", + "TransactionId": 33911802, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 196, + "CustomerInfo": 14767182, + "PaymentType": "Cash" + }, + { + "Id": 10783, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2017-04-07T12:42:55", + "TransactionId": 91384875, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 806, + "CustomerInfo": 49691192, + "PaymentType": "Debit Card" + }, + { + "Id": 10784, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2017-05-09T17:20:24", + "TransactionId": 94558856, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 823, + "CustomerInfo": 43072618, + "PaymentType": "Credit Card" + }, + { + "Id": 10785, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2017-02-19T10:16:02", + "TransactionId": 10935852, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 258, + "CustomerInfo": 75971698, + "PaymentType": "Debit Card" + }, + { + "Id": 10786, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2019-02-25T11:10:45", + "TransactionId": 27608684, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 700, + "CustomerInfo": 10263316, + "PaymentType": "Cash" + }, + { + "Id": 10787, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-08-22T07:13:52", + "TransactionId": 39151980, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 441, + "CustomerInfo": 17615588, + "PaymentType": "Debit Card" + }, + { + "Id": 10788, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-01-27T12:02:01", + "TransactionId": 32565934, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 973, + "CustomerInfo": 71682259, + "PaymentType": "Debit Card" + }, + { + "Id": 10789, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2017-11-12T11:53:40", + "TransactionId": 99738717, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 924, + "CustomerInfo": 71257972, + "PaymentType": "Cash" + }, + { + "Id": 10790, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-01-03T11:10:54", + "TransactionId": 58904803, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 501, + "CustomerInfo": 95391449, + "PaymentType": "Debit Card" + }, + { + "Id": 10791, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2019-03-09T19:58:39", + "TransactionId": 84960824, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 880, + "CustomerInfo": 51370760, + "PaymentType": "Debit Card" + }, + { + "Id": 10792, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2017-01-26T09:22:11", + "TransactionId": 8445542, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 95, + "CustomerInfo": 39087846, + "PaymentType": "Debit Card" + }, + { + "Id": 10793, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2019-10-11T07:27:33", + "TransactionId": 20472056, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 610, + "CustomerInfo": 96142965, + "PaymentType": "Cash" + }, + { + "Id": 10794, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2016-09-17T19:44:24", + "TransactionId": 92018330, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 856, + "CustomerInfo": 15608965, + "PaymentType": "Debit Card" + }, + { + "Id": 10795, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-05-29T17:00:40", + "TransactionId": 5417793, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 157, + "CustomerInfo": 17710482, + "PaymentType": "Credit Card" + }, + { + "Id": 10796, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2017-08-01T10:45:16", + "TransactionId": 59140243, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 384, + "CustomerInfo": 49329448, + "PaymentType": "Cash" + }, + { + "Id": 10797, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2017-02-03T18:52:42", + "TransactionId": 98515011, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 861, + "CustomerInfo": 7930860, + "PaymentType": "Debit Card" + }, + { + "Id": 10798, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-05-26T07:55:29", + "TransactionId": 27591617, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 927, + "CustomerInfo": 71807235, + "PaymentType": "Debit Card" + }, + { + "Id": 10799, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-12-28T12:27:22", + "TransactionId": 73014308, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 356, + "CustomerInfo": 99303702, + "PaymentType": "Debit Card" + }, + { + "Id": 10800, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-12-16T08:38:50", + "TransactionId": 79041443, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 149, + "CustomerInfo": 45845819, + "PaymentType": "Cash" + }, + { + "Id": 10801, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2018-07-20T12:14:07", + "TransactionId": 74520469, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 653, + "CustomerInfo": 32141323, + "PaymentType": "Credit Card" + }, + { + "Id": 10802, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-07-21T10:01:38", + "TransactionId": 55214410, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 799, + "CustomerInfo": 39898252, + "PaymentType": "Credit Card" + }, + { + "Id": 10803, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2016-08-28T17:01:06", + "TransactionId": 35500064, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 150, + "CustomerInfo": 99512702, + "PaymentType": "Debit Card" + }, + { + "Id": 10804, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2017-09-19T09:45:48", + "TransactionId": 88008143, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 803, + "CustomerInfo": 86092988, + "PaymentType": "Debit Card" + }, + { + "Id": 10805, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-06-12T14:16:22", + "TransactionId": 52705032, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 990, + "CustomerInfo": 7220104, + "PaymentType": "Credit Card" + }, + { + "Id": 10806, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-01-06T15:02:36", + "TransactionId": 71730184, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 994, + "CustomerInfo": 32162756, + "PaymentType": "Credit Card" + }, + { + "Id": 10807, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-12-06T14:31:38", + "TransactionId": 75996609, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 82, + "CustomerInfo": 29704723, + "PaymentType": "Debit Card" + }, + { + "Id": 10808, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2016-02-15T11:47:20", + "TransactionId": 17357040, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 718, + "CustomerInfo": 54303176, + "PaymentType": "Credit Card" + }, + { + "Id": 10809, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-10-30T10:19:47", + "TransactionId": 96017007, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 106, + "CustomerInfo": 79362244, + "PaymentType": "Cash" + }, + { + "Id": 10810, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2018-09-04T08:03:33", + "TransactionId": 36777098, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 929, + "CustomerInfo": 20338169, + "PaymentType": "Cash" + }, + { + "Id": 10811, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2016-12-08T17:37:58", + "TransactionId": 53200084, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 218, + "CustomerInfo": 23893528, + "PaymentType": "Debit Card" + }, + { + "Id": 10812, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2019-07-26T12:13:49", + "TransactionId": 88079233, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 780, + "CustomerInfo": 13398327, + "PaymentType": "Cash" + }, + { + "Id": 10813, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2018-05-22T11:54:06", + "TransactionId": 49836583, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 53, + "CustomerInfo": 93257882, + "PaymentType": "Cash" + }, + { + "Id": 10814, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2016-01-15T09:44:04", + "TransactionId": 19837218, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 691, + "CustomerInfo": 13222540, + "PaymentType": "Credit Card" + }, + { + "Id": 10815, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-06-09T07:57:30", + "TransactionId": 70292764, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 380, + "CustomerInfo": 92594233, + "PaymentType": "Credit Card" + }, + { + "Id": 10816, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-12-27T19:37:47", + "TransactionId": 9578401, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 730, + "CustomerInfo": 27361612, + "PaymentType": "Debit Card" + }, + { + "Id": 10817, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2017-10-11T08:09:01", + "TransactionId": 84082294, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 163, + "CustomerInfo": 58339262, + "PaymentType": "Credit Card" + }, + { + "Id": 10818, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-10-09T12:18:17", + "TransactionId": 49541732, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 641, + "CustomerInfo": 48032347, + "PaymentType": "Cash" + }, + { + "Id": 10819, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-03-26T13:24:14", + "TransactionId": 11021551, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 148, + "CustomerInfo": 52552718, + "PaymentType": "Debit Card" + }, + { + "Id": 10820, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-06-17T18:01:26", + "TransactionId": 82847583, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 696, + "CustomerInfo": 98407274, + "PaymentType": "Cash" + }, + { + "Id": 10821, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2016-04-09T07:21:39", + "TransactionId": 73351446, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 952, + "CustomerInfo": 75658230, + "PaymentType": "Debit Card" + }, + { + "Id": 10822, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-04-06T19:19:29", + "TransactionId": 93966440, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 826, + "CustomerInfo": 38601139, + "PaymentType": "Cash" + }, + { + "Id": 10823, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-04-30T10:27:24", + "TransactionId": 65665870, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 959, + "CustomerInfo": 51100730, + "PaymentType": "Cash" + }, + { + "Id": 10824, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2019-08-17T19:03:56", + "TransactionId": 84131634, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 363, + "CustomerInfo": 63747655, + "PaymentType": "Credit Card" + }, + { + "Id": 10825, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2018-07-27T11:09:45", + "TransactionId": 59410607, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 656, + "CustomerInfo": 14465528, + "PaymentType": "Credit Card" + }, + { + "Id": 10826, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2016-04-22T15:07:29", + "TransactionId": 52663500, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 480, + "CustomerInfo": 87008868, + "PaymentType": "Debit Card" + }, + { + "Id": 10827, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2017-06-04T13:26:41", + "TransactionId": 49878643, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 508, + "CustomerInfo": 66350374, + "PaymentType": "Debit Card" + }, + { + "Id": 10828, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2016-02-14T17:51:48", + "TransactionId": 58163162, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 261, + "CustomerInfo": 50593223, + "PaymentType": "Credit Card" + }, + { + "Id": 10829, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2017-09-05T15:08:56", + "TransactionId": 29136342, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 459, + "CustomerInfo": 99670092, + "PaymentType": "Credit Card" + }, + { + "Id": 10830, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-09-25T07:45:24", + "TransactionId": 89898040, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 812, + "CustomerInfo": 48379719, + "PaymentType": "Credit Card" + }, + { + "Id": 10831, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2019-12-18T09:12:06", + "TransactionId": 24246136, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 611, + "CustomerInfo": 7257806, + "PaymentType": "Credit Card" + }, + { + "Id": 10832, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2016-02-15T07:06:32", + "TransactionId": 33620870, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 346, + "CustomerInfo": 28311576, + "PaymentType": "Debit Card" + }, + { + "Id": 10833, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-07-21T10:49:00", + "TransactionId": 4788375, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 547, + "CustomerInfo": 27153359, + "PaymentType": "Debit Card" + }, + { + "Id": 10834, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-06-22T18:49:58", + "TransactionId": 82923100, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 573, + "CustomerInfo": 66507757, + "PaymentType": "Debit Card" + }, + { + "Id": 10835, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2016-12-11T13:38:38", + "TransactionId": 19482679, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 62, + "CustomerInfo": 74809781, + "PaymentType": "Credit Card" + }, + { + "Id": 10836, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2017-01-20T17:29:46", + "TransactionId": 39313051, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 675, + "CustomerInfo": 23517961, + "PaymentType": "Debit Card" + }, + { + "Id": 10837, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2019-12-28T12:43:21", + "TransactionId": 35691311, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 348, + "CustomerInfo": 56015636, + "PaymentType": "Debit Card" + }, + { + "Id": 10838, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-01-25T11:01:32", + "TransactionId": 34152658, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 608, + "CustomerInfo": 90898740, + "PaymentType": "Credit Card" + }, + { + "Id": 10839, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2017-10-02T14:35:40", + "TransactionId": 60498937, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 774, + "CustomerInfo": 76492822, + "PaymentType": "Cash" + }, + { + "Id": 10840, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-06-13T07:26:07", + "TransactionId": 59166371, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 748, + "CustomerInfo": 21507646, + "PaymentType": "Credit Card" + }, + { + "Id": 10841, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2016-10-29T09:52:25", + "TransactionId": 38732588, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 643, + "CustomerInfo": 31609227, + "PaymentType": "Debit Card" + }, + { + "Id": 10842, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2016-08-17T09:36:52", + "TransactionId": 55472421, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 656, + "CustomerInfo": 24627464, + "PaymentType": "Debit Card" + }, + { + "Id": 10843, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2019-05-22T19:04:39", + "TransactionId": 90750233, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 620, + "CustomerInfo": 15058976, + "PaymentType": "Debit Card" + }, + { + "Id": 10844, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-02-19T18:55:09", + "TransactionId": 25916476, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 483, + "CustomerInfo": 10494633, + "PaymentType": "Cash" + }, + { + "Id": 10845, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2016-07-04T07:37:55", + "TransactionId": 61992452, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 179, + "CustomerInfo": 45839694, + "PaymentType": "Credit Card" + }, + { + "Id": 10846, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2017-04-29T19:07:15", + "TransactionId": 74790197, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 32, + "CustomerInfo": 96861539, + "PaymentType": "Cash" + }, + { + "Id": 10847, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2017-12-27T10:03:39", + "TransactionId": 29264778, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 968, + "CustomerInfo": 74739320, + "PaymentType": "Credit Card" + }, + { + "Id": 10848, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2018-06-17T16:13:00", + "TransactionId": 71024726, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 184, + "CustomerInfo": 17606010, + "PaymentType": "Credit Card" + }, + { + "Id": 10849, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2019-05-12T07:18:37", + "TransactionId": 10212273, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 364, + "CustomerInfo": 89915547, + "PaymentType": "Debit Card" + }, + { + "Id": 10850, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-01-04T11:15:56", + "TransactionId": 14750716, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 154, + "CustomerInfo": 36401976, + "PaymentType": "Credit Card" + }, + { + "Id": 10851, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2016-03-30T18:39:45", + "TransactionId": 51696766, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 287, + "CustomerInfo": 52193449, + "PaymentType": "Debit Card" + }, + { + "Id": 10852, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2016-12-15T10:11:51", + "TransactionId": 24155906, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 148, + "CustomerInfo": 12155465, + "PaymentType": "Credit Card" + }, + { + "Id": 10853, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2018-12-10T17:57:24", + "TransactionId": 37308154, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 363, + "CustomerInfo": 99434454, + "PaymentType": "Debit Card" + }, + { + "Id": 10854, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2019-02-13T08:27:45", + "TransactionId": 55880634, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 516, + "CustomerInfo": 13332154, + "PaymentType": "Debit Card" + }, + { + "Id": 10855, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-05-12T07:01:55", + "TransactionId": 29995334, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 776, + "CustomerInfo": 55581914, + "PaymentType": "Cash" + }, + { + "Id": 10856, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-04-24T12:13:24", + "TransactionId": 76526504, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 995, + "CustomerInfo": 27400747, + "PaymentType": "Debit Card" + }, + { + "Id": 10857, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-04-29T12:17:00", + "TransactionId": 31442778, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 303, + "CustomerInfo": 20958374, + "PaymentType": "Cash" + }, + { + "Id": 10858, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2017-09-10T11:44:27", + "TransactionId": 37840363, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 1, + "CustomerInfo": 21249033, + "PaymentType": "Debit Card" + }, + { + "Id": 10859, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2017-10-05T18:13:58", + "TransactionId": 34828556, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 357, + "CustomerInfo": 23704897, + "PaymentType": "Debit Card" + }, + { + "Id": 10860, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-01-25T14:41:25", + "TransactionId": 50105086, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 981, + "CustomerInfo": 75396298, + "PaymentType": "Debit Card" + }, + { + "Id": 10861, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-01-03T13:36:20", + "TransactionId": 63096397, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 125, + "CustomerInfo": 66542021, + "PaymentType": "Debit Card" + }, + { + "Id": 10862, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2017-11-16T16:44:15", + "TransactionId": 47850425, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 767, + "CustomerInfo": 8061683, + "PaymentType": "Credit Card" + }, + { + "Id": 10863, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-11-11T14:43:52", + "TransactionId": 27640570, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 873, + "CustomerInfo": 16099664, + "PaymentType": "Credit Card" + }, + { + "Id": 10864, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2019-02-20T12:08:38", + "TransactionId": 13402506, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 689, + "CustomerInfo": 3218399, + "PaymentType": "Credit Card" + }, + { + "Id": 10865, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2017-02-23T16:40:05", + "TransactionId": 13932647, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 522, + "CustomerInfo": 19104394, + "PaymentType": "Credit Card" + }, + { + "Id": 10866, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-03-06T14:32:47", + "TransactionId": 69937891, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 751, + "CustomerInfo": 5288959, + "PaymentType": "Credit Card" + }, + { + "Id": 10867, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-02-04T17:12:55", + "TransactionId": 98208554, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 638, + "CustomerInfo": 70694010, + "PaymentType": "Debit Card" + }, + { + "Id": 10868, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2019-03-15T12:39:01", + "TransactionId": 65933680, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 679, + "CustomerInfo": 76712258, + "PaymentType": "Cash" + }, + { + "Id": 10869, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-02-08T16:28:34", + "TransactionId": 48537853, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 160, + "CustomerInfo": 31814522, + "PaymentType": "Cash" + }, + { + "Id": 10870, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-06-19T13:05:14", + "TransactionId": 17546185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 68, + "CustomerInfo": 34853966, + "PaymentType": "Credit Card" + }, + { + "Id": 10871, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2016-04-09T07:26:24", + "TransactionId": 60738648, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 114, + "CustomerInfo": 48181407, + "PaymentType": "Debit Card" + }, + { + "Id": 10872, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2017-09-30T09:28:22", + "TransactionId": 65794103, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 880, + "CustomerInfo": 37120149, + "PaymentType": "Cash" + }, + { + "Id": 10873, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-08-14T19:28:34", + "TransactionId": 85300776, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 624, + "CustomerInfo": 20039716, + "PaymentType": "Cash" + }, + { + "Id": 10874, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2016-05-17T13:30:35", + "TransactionId": 17052402, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 263, + "CustomerInfo": 49351555, + "PaymentType": "Debit Card" + }, + { + "Id": 10875, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2018-11-09T18:17:25", + "TransactionId": 29234271, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 639, + "CustomerInfo": 18973907, + "PaymentType": "Debit Card" + }, + { + "Id": 10876, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2018-07-10T18:22:36", + "TransactionId": 55034368, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 388, + "CustomerInfo": 75210444, + "PaymentType": "Credit Card" + }, + { + "Id": 10877, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2018-05-23T13:12:09", + "TransactionId": 2430071, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 98, + "CustomerInfo": 88257999, + "PaymentType": "Credit Card" + }, + { + "Id": 10878, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2017-06-25T19:01:03", + "TransactionId": 87574990, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 11, + "CustomerInfo": 99496756, + "PaymentType": "Debit Card" + }, + { + "Id": 10879, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2016-06-14T12:59:11", + "TransactionId": 93058779, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 380, + "CustomerInfo": 19166633, + "PaymentType": "Cash" + }, + { + "Id": 10880, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-01-15T13:41:05", + "TransactionId": 50357754, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 697, + "CustomerInfo": 39250188, + "PaymentType": "Debit Card" + }, + { + "Id": 10881, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2018-06-06T18:12:58", + "TransactionId": 84562985, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 299, + "CustomerInfo": 95113999, + "PaymentType": "Debit Card" + }, + { + "Id": 10882, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-09-04T12:43:55", + "TransactionId": 62382102, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 889, + "CustomerInfo": 88104527, + "PaymentType": "Debit Card" + }, + { + "Id": 10883, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2018-02-08T18:00:43", + "TransactionId": 12297643, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 226, + "CustomerInfo": 94503909, + "PaymentType": "Debit Card" + }, + { + "Id": 10884, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-08-28T09:54:35", + "TransactionId": 67541149, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 84, + "CustomerInfo": 80161651, + "PaymentType": "Credit Card" + }, + { + "Id": 10885, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2018-07-15T15:22:45", + "TransactionId": 53157044, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 639, + "CustomerInfo": 6404397, + "PaymentType": "Cash" + }, + { + "Id": 10886, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2016-07-16T08:39:59", + "TransactionId": 44616144, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 322, + "CustomerInfo": 83451088, + "PaymentType": "Cash" + }, + { + "Id": 10887, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2017-06-09T13:25:15", + "TransactionId": 75926381, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 930, + "CustomerInfo": 94910482, + "PaymentType": "Credit Card" + }, + { + "Id": 10888, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-08-30T19:06:49", + "TransactionId": 38191989, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 66, + "CustomerInfo": 874466, + "PaymentType": "Cash" + }, + { + "Id": 10889, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2018-11-21T07:28:25", + "TransactionId": 72043500, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 339, + "CustomerInfo": 27823690, + "PaymentType": "Cash" + }, + { + "Id": 10890, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-10-30T16:05:31", + "TransactionId": 4140019, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 758, + "CustomerInfo": 14446591, + "PaymentType": "Credit Card" + }, + { + "Id": 10891, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2017-10-27T19:34:28", + "TransactionId": 11387456, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 201, + "CustomerInfo": 45556253, + "PaymentType": "Cash" + }, + { + "Id": 10892, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-04-30T16:58:57", + "TransactionId": 71335073, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 242, + "CustomerInfo": 36751358, + "PaymentType": "Debit Card" + }, + { + "Id": 10893, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2017-09-26T17:26:18", + "TransactionId": 59839768, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 220, + "CustomerInfo": 24012981, + "PaymentType": "Debit Card" + }, + { + "Id": 10894, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-06-09T19:40:22", + "TransactionId": 28510449, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 768, + "CustomerInfo": 81967181, + "PaymentType": "Debit Card" + }, + { + "Id": 10895, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2016-04-12T10:24:58", + "TransactionId": 45886824, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 967, + "CustomerInfo": 12966656, + "PaymentType": "Credit Card" + }, + { + "Id": 10896, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2016-10-26T19:20:47", + "TransactionId": 81140739, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 686, + "CustomerInfo": 94170250, + "PaymentType": "Cash" + }, + { + "Id": 10897, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2017-05-21T07:29:43", + "TransactionId": 29842972, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 96098840, + "PaymentType": "Credit Card" + }, + { + "Id": 10898, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-10-10T09:41:46", + "TransactionId": 5865079, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 807, + "CustomerInfo": 85571642, + "PaymentType": "Debit Card" + }, + { + "Id": 10899, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2019-07-13T18:39:01", + "TransactionId": 30708678, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 670, + "CustomerInfo": 97750127, + "PaymentType": "Credit Card" + }, + { + "Id": 10900, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-01-17T12:02:53", + "TransactionId": 7311517, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 323, + "CustomerInfo": 97683072, + "PaymentType": "Debit Card" + }, + { + "Id": 10901, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-11-06T10:42:58", + "TransactionId": 4891502, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 595, + "CustomerInfo": 76607409, + "PaymentType": "Debit Card" + }, + { + "Id": 10902, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2017-09-25T07:17:02", + "TransactionId": 59673079, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 730, + "CustomerInfo": 62885638, + "PaymentType": "Credit Card" + }, + { + "Id": 10903, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2018-01-19T11:33:56", + "TransactionId": 25203454, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 309, + "CustomerInfo": 39404100, + "PaymentType": "Debit Card" + }, + { + "Id": 10904, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-07-06T12:54:26", + "TransactionId": 5705858, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 49, + "CustomerInfo": 45268664, + "PaymentType": "Cash" + }, + { + "Id": 10905, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-09-20T08:29:28", + "TransactionId": 82544102, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 766, + "CustomerInfo": 18663688, + "PaymentType": "Debit Card" + }, + { + "Id": 10906, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-10-12T11:18:58", + "TransactionId": 13668534, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 149, + "CustomerInfo": 88151238, + "PaymentType": "Debit Card" + }, + { + "Id": 10907, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-06-15T17:21:07", + "TransactionId": 83829618, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 905, + "CustomerInfo": 16202828, + "PaymentType": "Cash" + }, + { + "Id": 10908, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2016-12-21T13:11:17", + "TransactionId": 61807719, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 655, + "CustomerInfo": 32291929, + "PaymentType": "Cash" + }, + { + "Id": 10909, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-01-31T14:19:58", + "TransactionId": 8688564, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 734, + "CustomerInfo": 42768106, + "PaymentType": "Debit Card" + }, + { + "Id": 10910, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2016-09-16T14:56:50", + "TransactionId": 37185937, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 472, + "CustomerInfo": 62477613, + "PaymentType": "Debit Card" + }, + { + "Id": 10911, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-05-18T18:39:53", + "TransactionId": 36826389, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 374, + "CustomerInfo": 25345155, + "PaymentType": "Credit Card" + }, + { + "Id": 10912, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-07-06T14:54:32", + "TransactionId": 3824675, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 437, + "CustomerInfo": 68931828, + "PaymentType": "Credit Card" + }, + { + "Id": 10913, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2017-12-09T17:21:16", + "TransactionId": 75471678, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 788, + "CustomerInfo": 32198563, + "PaymentType": "Cash" + }, + { + "Id": 10914, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2017-11-26T13:53:28", + "TransactionId": 14416536, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 840, + "CustomerInfo": 72305645, + "PaymentType": "Debit Card" + }, + { + "Id": 10915, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2018-07-16T17:27:10", + "TransactionId": 26560680, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 582, + "CustomerInfo": 62899689, + "PaymentType": "Credit Card" + }, + { + "Id": 10916, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2017-09-25T09:44:56", + "TransactionId": 25191520, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 634, + "CustomerInfo": 93050783, + "PaymentType": "Cash" + }, + { + "Id": 10917, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-04-16T16:20:21", + "TransactionId": 86221396, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 275, + "CustomerInfo": 64387963, + "PaymentType": "Cash" + }, + { + "Id": 10918, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-05-28T09:40:54", + "TransactionId": 20028498, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 591, + "CustomerInfo": 17919228, + "PaymentType": "Cash" + }, + { + "Id": 10919, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2016-05-19T10:36:20", + "TransactionId": 75124335, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 936, + "CustomerInfo": 94734028, + "PaymentType": "Cash" + }, + { + "Id": 10920, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-06-02T14:58:51", + "TransactionId": 93078848, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 569, + "CustomerInfo": 69581295, + "PaymentType": "Debit Card" + }, + { + "Id": 10921, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2019-12-23T12:52:34", + "TransactionId": 33050632, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 908, + "CustomerInfo": 13600549, + "PaymentType": "Cash" + }, + { + "Id": 10922, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-05-01T11:41:43", + "TransactionId": 68552351, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 395, + "CustomerInfo": 57462265, + "PaymentType": "Cash" + }, + { + "Id": 10923, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2017-07-12T12:57:36", + "TransactionId": 2466938, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 967, + "CustomerInfo": 78774767, + "PaymentType": "Cash" + }, + { + "Id": 10924, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2017-10-24T10:46:51", + "TransactionId": 66489351, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 594, + "CustomerInfo": 68585251, + "PaymentType": "Credit Card" + }, + { + "Id": 10925, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-04-07T07:41:48", + "TransactionId": 98525648, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 46, + "CustomerInfo": 47162098, + "PaymentType": "Debit Card" + }, + { + "Id": 10926, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-05-06T16:51:53", + "TransactionId": 76630636, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 893, + "CustomerInfo": 56476198, + "PaymentType": "Debit Card" + }, + { + "Id": 10927, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2016-05-09T17:57:59", + "TransactionId": 10302327, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 250, + "CustomerInfo": 65167376, + "PaymentType": "Debit Card" + }, + { + "Id": 10928, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2017-09-02T07:33:01", + "TransactionId": 56614718, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 537, + "CustomerInfo": 77266709, + "PaymentType": "Debit Card" + }, + { + "Id": 10929, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-02-11T14:05:08", + "TransactionId": 283277, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 840, + "CustomerInfo": 3276391, + "PaymentType": "Credit Card" + }, + { + "Id": 10930, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-08-05T17:56:15", + "TransactionId": 18525673, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 744, + "CustomerInfo": 52805344, + "PaymentType": "Cash" + }, + { + "Id": 10931, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2019-08-06T15:07:21", + "TransactionId": 66504433, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 856, + "CustomerInfo": 64359224, + "PaymentType": "Credit Card" + }, + { + "Id": 10932, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2017-11-29T15:21:19", + "TransactionId": 33089689, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 804, + "CustomerInfo": 12479153, + "PaymentType": "Cash" + }, + { + "Id": 10933, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2019-10-12T15:04:28", + "TransactionId": 82807041, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 76, + "CustomerInfo": 28698368, + "PaymentType": "Credit Card" + }, + { + "Id": 10934, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2016-05-15T18:27:22", + "TransactionId": 67547666, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 717, + "CustomerInfo": 8452629, + "PaymentType": "Cash" + }, + { + "Id": 10935, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-03-30T08:31:12", + "TransactionId": 37087449, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 639, + "CustomerInfo": 76879921, + "PaymentType": "Cash" + }, + { + "Id": 10936, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-03-16T17:11:46", + "TransactionId": 10953013, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 819, + "CustomerInfo": 99695295, + "PaymentType": "Credit Card" + }, + { + "Id": 10937, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-03-20T16:22:22", + "TransactionId": 33991928, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 489, + "CustomerInfo": 8189868, + "PaymentType": "Debit Card" + }, + { + "Id": 10938, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-09-22T13:23:48", + "TransactionId": 72679921, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 233, + "CustomerInfo": 83284946, + "PaymentType": "Credit Card" + }, + { + "Id": 10939, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-05-24T10:40:48", + "TransactionId": 81192690, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 908, + "CustomerInfo": 41711295, + "PaymentType": "Debit Card" + }, + { + "Id": 10940, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2019-04-04T10:15:27", + "TransactionId": 16284764, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 545, + "CustomerInfo": 27365799, + "PaymentType": "Cash" + }, + { + "Id": 10941, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2019-05-14T12:48:14", + "TransactionId": 55049992, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 694, + "CustomerInfo": 87027650, + "PaymentType": "Credit Card" + }, + { + "Id": 10942, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-08-02T19:33:19", + "TransactionId": 25443883, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 660, + "CustomerInfo": 43942991, + "PaymentType": "Cash" + }, + { + "Id": 10943, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-09-26T19:51:53", + "TransactionId": 14278628, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 685, + "CustomerInfo": 68669731, + "PaymentType": "Credit Card" + }, + { + "Id": 10944, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2018-09-15T16:45:07", + "TransactionId": 23773959, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 447, + "CustomerInfo": 42808656, + "PaymentType": "Credit Card" + }, + { + "Id": 10945, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2019-12-06T12:31:49", + "TransactionId": 90227228, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 551, + "CustomerInfo": 46707750, + "PaymentType": "Debit Card" + }, + { + "Id": 10946, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2016-03-26T14:14:21", + "TransactionId": 14658188, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 170, + "CustomerInfo": 48142998, + "PaymentType": "Cash" + }, + { + "Id": 10947, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2017-11-19T14:24:26", + "TransactionId": 94904149, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 318, + "CustomerInfo": 92270637, + "PaymentType": "Cash" + }, + { + "Id": 10948, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2017-08-07T18:00:09", + "TransactionId": 87603151, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 645, + "CustomerInfo": 82018401, + "PaymentType": "Cash" + }, + { + "Id": 10949, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2018-08-15T13:01:38", + "TransactionId": 78225199, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 316, + "CustomerInfo": 37656178, + "PaymentType": "Cash" + }, + { + "Id": 10950, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2017-07-13T09:45:30", + "TransactionId": 34247067, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 891, + "CustomerInfo": 82415829, + "PaymentType": "Cash" + }, + { + "Id": 10951, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-05-24T13:13:52", + "TransactionId": 77241563, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 541, + "CustomerInfo": 42445766, + "PaymentType": "Cash" + }, + { + "Id": 10952, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-10-05T12:00:00", + "TransactionId": 50729404, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 511, + "CustomerInfo": 69431219, + "PaymentType": "Credit Card" + }, + { + "Id": 10953, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-02-25T08:32:38", + "TransactionId": 84821548, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 125, + "CustomerInfo": 29425936, + "PaymentType": "Credit Card" + }, + { + "Id": 10954, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2019-12-29T17:12:29", + "TransactionId": 24355753, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 276, + "CustomerInfo": 55332319, + "PaymentType": "Debit Card" + }, + { + "Id": 10955, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2017-08-25T11:55:41", + "TransactionId": 80834785, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 137, + "CustomerInfo": 26421452, + "PaymentType": "Debit Card" + }, + { + "Id": 10956, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-01-26T08:18:23", + "TransactionId": 6413460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 572, + "CustomerInfo": 60611211, + "PaymentType": "Cash" + }, + { + "Id": 10957, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2016-12-04T17:13:47", + "TransactionId": 31440895, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 734, + "CustomerInfo": 72470018, + "PaymentType": "Debit Card" + }, + { + "Id": 10958, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-04-20T14:33:13", + "TransactionId": 41833534, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 857, + "CustomerInfo": 91194047, + "PaymentType": "Cash" + }, + { + "Id": 10959, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2016-05-14T09:14:59", + "TransactionId": 7582020, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 173, + "CustomerInfo": 57664304, + "PaymentType": "Credit Card" + }, + { + "Id": 10960, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2016-06-21T09:48:06", + "TransactionId": 44841862, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 827, + "CustomerInfo": 2702409, + "PaymentType": "Credit Card" + }, + { + "Id": 10961, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-03-10T11:07:18", + "TransactionId": 89424420, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 919, + "CustomerInfo": 62848911, + "PaymentType": "Cash" + }, + { + "Id": 10962, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-07-15T15:55:09", + "TransactionId": 80079776, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 62, + "CustomerInfo": 88986785, + "PaymentType": "Debit Card" + }, + { + "Id": 10963, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-06-29T09:38:18", + "TransactionId": 90810211, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 927, + "CustomerInfo": 17528248, + "PaymentType": "Debit Card" + }, + { + "Id": 10964, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2016-10-15T17:28:11", + "TransactionId": 94339520, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 674, + "CustomerInfo": 74345290, + "PaymentType": "Debit Card" + }, + { + "Id": 10965, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2017-02-23T14:57:59", + "TransactionId": 94988809, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 74, + "CustomerInfo": 47439474, + "PaymentType": "Credit Card" + }, + { + "Id": 10966, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2016-09-20T12:13:06", + "TransactionId": 35390996, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 788, + "CustomerInfo": 75942878, + "PaymentType": "Debit Card" + }, + { + "Id": 10967, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-07-08T19:33:01", + "TransactionId": 78965734, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 800, + "CustomerInfo": 58707568, + "PaymentType": "Debit Card" + }, + { + "Id": 10968, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-03-29T14:33:13", + "TransactionId": 25131677, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 86, + "CustomerInfo": 20562453, + "PaymentType": "Credit Card" + }, + { + "Id": 10969, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-08-09T18:18:17", + "TransactionId": 59414957, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 194, + "CustomerInfo": 18838495, + "PaymentType": "Cash" + }, + { + "Id": 10970, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-02-13T09:06:55", + "TransactionId": 70327593, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 828, + "CustomerInfo": 94453155, + "PaymentType": "Cash" + }, + { + "Id": 10971, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2019-10-13T08:33:04", + "TransactionId": 89939888, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 776, + "CustomerInfo": 68680962, + "PaymentType": "Credit Card" + }, + { + "Id": 10972, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-07-18T09:22:36", + "TransactionId": 16451980, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 840, + "CustomerInfo": 52649553, + "PaymentType": "Credit Card" + }, + { + "Id": 10973, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-06-18T08:57:24", + "TransactionId": 13112711, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 395, + "CustomerInfo": 70627278, + "PaymentType": "Credit Card" + }, + { + "Id": 10974, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2017-05-07T10:21:30", + "TransactionId": 65731648, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 977, + "CustomerInfo": 25104520, + "PaymentType": "Cash" + }, + { + "Id": 10975, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2016-02-13T16:29:17", + "TransactionId": 22725005, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 959, + "CustomerInfo": 75624046, + "PaymentType": "Debit Card" + }, + { + "Id": 10976, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2019-11-01T11:43:09", + "TransactionId": 87608597, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 241, + "CustomerInfo": 14226802, + "PaymentType": "Cash" + }, + { + "Id": 10977, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2016-09-26T18:18:17", + "TransactionId": 44345611, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 393, + "CustomerInfo": 10352150, + "PaymentType": "Credit Card" + }, + { + "Id": 10978, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-08-21T16:13:44", + "TransactionId": 79716884, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 175, + "CustomerInfo": 59864596, + "PaymentType": "Debit Card" + }, + { + "Id": 10979, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2016-03-02T18:25:29", + "TransactionId": 30496208, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 216, + "CustomerInfo": 44238901, + "PaymentType": "Credit Card" + }, + { + "Id": 10980, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2016-04-05T16:23:23", + "TransactionId": 78383325, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 992, + "CustomerInfo": 82934580, + "PaymentType": "Debit Card" + }, + { + "Id": 10981, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2018-09-18T16:41:48", + "TransactionId": 17419483, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 361, + "CustomerInfo": 31122639, + "PaymentType": "Credit Card" + }, + { + "Id": 10982, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-09-21T07:48:35", + "TransactionId": 70766913, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 820, + "CustomerInfo": 45210595, + "PaymentType": "Credit Card" + }, + { + "Id": 10983, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2019-02-27T18:20:27", + "TransactionId": 51067832, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 313, + "CustomerInfo": 85961923, + "PaymentType": "Cash" + }, + { + "Id": 10984, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2016-08-07T14:44:18", + "TransactionId": 54617939, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 155, + "CustomerInfo": 80745736, + "PaymentType": "Cash" + }, + { + "Id": 10985, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2016-10-12T11:05:25", + "TransactionId": 90097047, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 79, + "CustomerInfo": 30988486, + "PaymentType": "Credit Card" + }, + { + "Id": 10986, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2018-01-29T12:17:51", + "TransactionId": 6741247, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 78512822, + "PaymentType": "Debit Card" + }, + { + "Id": 10987, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-01-11T08:59:25", + "TransactionId": 26929395, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 414, + "CustomerInfo": 40249615, + "PaymentType": "Credit Card" + }, + { + "Id": 10988, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-09-18T07:52:36", + "TransactionId": 70553490, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 746, + "CustomerInfo": 14158487, + "PaymentType": "Cash" + }, + { + "Id": 10989, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2016-06-07T18:42:12", + "TransactionId": 81445850, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 507, + "CustomerInfo": 4087840, + "PaymentType": "Cash" + }, + { + "Id": 10990, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2018-08-13T18:52:08", + "TransactionId": 97799729, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 349, + "CustomerInfo": 49725258, + "PaymentType": "Cash" + }, + { + "Id": 10991, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2016-01-03T07:07:06", + "TransactionId": 20533752, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 167, + "CustomerInfo": 58937887, + "PaymentType": "Debit Card" + }, + { + "Id": 10992, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-10-16T18:18:35", + "TransactionId": 66114539, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 333, + "CustomerInfo": 15789136, + "PaymentType": "Credit Card" + }, + { + "Id": 10993, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2018-11-15T09:28:39", + "TransactionId": 55144795, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 818, + "CustomerInfo": 26409617, + "PaymentType": "Cash" + }, + { + "Id": 10994, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-06-28T16:58:22", + "TransactionId": 70490214, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 515, + "CustomerInfo": 31109274, + "PaymentType": "Debit Card" + }, + { + "Id": 10995, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2018-08-09T11:57:59", + "TransactionId": 20371792, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 345, + "CustomerInfo": 18273202, + "PaymentType": "Cash" + }, + { + "Id": 10996, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2019-10-29T10:07:49", + "TransactionId": 13348953, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 514, + "CustomerInfo": 28479103, + "PaymentType": "Cash" + }, + { + "Id": 10997, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2017-06-18T17:42:35", + "TransactionId": 91083909, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 244, + "CustomerInfo": 43050673, + "PaymentType": "Cash" + }, + { + "Id": 10998, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-08-16T10:37:55", + "TransactionId": 16985584, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 982, + "CustomerInfo": 96401409, + "PaymentType": "Credit Card" + }, + { + "Id": 10999, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-11-03T07:58:22", + "TransactionId": 95703535, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 188, + "CustomerInfo": 35864813, + "PaymentType": "Debit Card" + }, + { + "Id": 11000, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2019-04-26T14:35:05", + "TransactionId": 45624356, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 672, + "CustomerInfo": 68295126, + "PaymentType": "Credit Card" + }, + { + "Id": 11001, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2017-12-22T08:36:49", + "TransactionId": 27373147, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 311, + "CustomerInfo": 91582465, + "PaymentType": "Credit Card" + }, + { + "Id": 11002, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-10-21T18:41:46", + "TransactionId": 92219164, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 822, + "CustomerInfo": 31261225, + "PaymentType": "Credit Card" + }, + { + "Id": 11003, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2018-03-06T09:27:56", + "TransactionId": 13969006, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 210, + "CustomerInfo": 7825213, + "PaymentType": "Credit Card" + }, + { + "Id": 11004, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2016-12-24T13:16:11", + "TransactionId": 5890766, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 197, + "CustomerInfo": 43673854, + "PaymentType": "Credit Card" + }, + { + "Id": 11005, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2019-09-18T17:08:36", + "TransactionId": 86412133, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 7, + "CustomerInfo": 14561257, + "PaymentType": "Debit Card" + }, + { + "Id": 11006, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2019-05-27T09:26:04", + "TransactionId": 92450933, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 325, + "CustomerInfo": 95664118, + "PaymentType": "Cash" + }, + { + "Id": 11007, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-06-14T11:10:28", + "TransactionId": 7342758, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 154, + "CustomerInfo": 35201268, + "PaymentType": "Cash" + }, + { + "Id": 11008, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-09-02T10:35:46", + "TransactionId": 42331561, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 99, + "CustomerInfo": 76583849, + "PaymentType": "Credit Card" + }, + { + "Id": 11009, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-10-09T17:21:59", + "TransactionId": 34760558, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 13341822, + "PaymentType": "Debit Card" + }, + { + "Id": 11010, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-03-31T16:51:36", + "TransactionId": 1157958, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 491, + "CustomerInfo": 2194921, + "PaymentType": "Credit Card" + }, + { + "Id": 11011, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-02-16T13:49:18", + "TransactionId": 98371827, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 445, + "CustomerInfo": 36261382, + "PaymentType": "Credit Card" + }, + { + "Id": 11012, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2018-09-17T18:42:46", + "TransactionId": 94799153, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 499, + "CustomerInfo": 32207341, + "PaymentType": "Cash" + }, + { + "Id": 11013, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2018-07-17T10:15:45", + "TransactionId": 13761441, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 972, + "CustomerInfo": 20432453, + "PaymentType": "Cash" + }, + { + "Id": 11014, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-11-05T16:38:04", + "TransactionId": 5449273, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 966, + "CustomerInfo": 42364554, + "PaymentType": "Credit Card" + }, + { + "Id": 11015, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2017-12-14T10:14:44", + "TransactionId": 65913007, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 84, + "CustomerInfo": 84032022, + "PaymentType": "Debit Card" + }, + { + "Id": 11016, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-06-04T10:45:33", + "TransactionId": 95686359, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 911, + "CustomerInfo": 88713570, + "PaymentType": "Debit Card" + }, + { + "Id": 11017, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2018-11-03T08:39:33", + "TransactionId": 49550688, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 451, + "CustomerInfo": 36342457, + "PaymentType": "Cash" + }, + { + "Id": 11018, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2017-07-07T18:38:01", + "TransactionId": 31804048, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 654, + "CustomerInfo": 41070333, + "PaymentType": "Credit Card" + }, + { + "Id": 11019, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-10-28T11:52:31", + "TransactionId": 87227009, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 242, + "CustomerInfo": 34547106, + "PaymentType": "Debit Card" + }, + { + "Id": 11020, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-02-13T19:54:37", + "TransactionId": 30543950, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 301, + "CustomerInfo": 23528871, + "PaymentType": "Cash" + }, + { + "Id": 11021, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2018-11-13T14:20:50", + "TransactionId": 71902748, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 68, + "CustomerInfo": 96715891, + "PaymentType": "Cash" + }, + { + "Id": 11022, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-09-22T16:10:42", + "TransactionId": 20163425, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 374, + "CustomerInfo": 27429277, + "PaymentType": "Debit Card" + }, + { + "Id": 11023, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-12-28T08:58:51", + "TransactionId": 20408077, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 354, + "CustomerInfo": 59805181, + "PaymentType": "Credit Card" + }, + { + "Id": 11024, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2017-12-21T11:55:41", + "TransactionId": 40723331, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 950, + "CustomerInfo": 61004000, + "PaymentType": "Cash" + }, + { + "Id": 11025, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-12-25T19:58:13", + "TransactionId": 86043594, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 484, + "CustomerInfo": 76483088, + "PaymentType": "Cash" + }, + { + "Id": 11026, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-10-17T07:38:56", + "TransactionId": 51632692, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 762, + "CustomerInfo": 88549755, + "PaymentType": "Cash" + }, + { + "Id": 11027, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2019-04-07T07:29:43", + "TransactionId": 23799761, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 467, + "CustomerInfo": 7090826, + "PaymentType": "Debit Card" + }, + { + "Id": 11028, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2016-01-19T14:42:35", + "TransactionId": 32236924, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 841, + "CustomerInfo": 85964143, + "PaymentType": "Debit Card" + }, + { + "Id": 11029, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-05-30T13:21:13", + "TransactionId": 67822008, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 879, + "CustomerInfo": 373815, + "PaymentType": "Debit Card" + }, + { + "Id": 11030, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2019-04-09T11:32:56", + "TransactionId": 45428671, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 63456246, + "PaymentType": "Debit Card" + }, + { + "Id": 11031, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2016-03-20T10:55:21", + "TransactionId": 62617500, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 705, + "CustomerInfo": 71198218, + "PaymentType": "Debit Card" + }, + { + "Id": 11032, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-04-08T14:24:09", + "TransactionId": 71802409, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 211, + "CustomerInfo": 26255201, + "PaymentType": "Cash" + }, + { + "Id": 11033, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-11-15T18:13:41", + "TransactionId": 31466104, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 581, + "CustomerInfo": 91395372, + "PaymentType": "Credit Card" + }, + { + "Id": 11034, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2016-04-11T11:22:51", + "TransactionId": 75870881, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 596, + "CustomerInfo": 22820166, + "PaymentType": "Cash" + }, + { + "Id": 11035, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-03-29T16:57:48", + "TransactionId": 46116651, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 713, + "CustomerInfo": 8674051, + "PaymentType": "Credit Card" + }, + { + "Id": 11036, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-07-08T15:52:34", + "TransactionId": 21262464, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 737, + "CustomerInfo": 38813994, + "PaymentType": "Debit Card" + }, + { + "Id": 11037, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-08-05T11:12:55", + "TransactionId": 3288178, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 545, + "CustomerInfo": 24989177, + "PaymentType": "Credit Card" + }, + { + "Id": 11038, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-08-11T10:09:24", + "TransactionId": 15845211, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 491, + "CustomerInfo": 51152135, + "PaymentType": "Debit Card" + }, + { + "Id": 11039, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2017-04-21T16:50:27", + "TransactionId": 48797875, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 243, + "CustomerInfo": 46314426, + "PaymentType": "Debit Card" + }, + { + "Id": 11040, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2019-02-22T16:40:13", + "TransactionId": 64898807, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 92, + "CustomerInfo": 65616310, + "PaymentType": "Debit Card" + }, + { + "Id": 11041, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2016-02-24T19:52:28", + "TransactionId": 18059086, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 141, + "CustomerInfo": 54144847, + "PaymentType": "Debit Card" + }, + { + "Id": 11042, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2019-01-11T09:40:28", + "TransactionId": 84244590, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 38585816, + "PaymentType": "Cash" + }, + { + "Id": 11043, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2018-02-09T10:25:41", + "TransactionId": 62200359, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 979, + "CustomerInfo": 9890306, + "PaymentType": "Debit Card" + }, + { + "Id": 11044, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2016-05-23T18:30:06", + "TransactionId": 85925562, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 620, + "CustomerInfo": 34974417, + "PaymentType": "Debit Card" + }, + { + "Id": 11045, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-02-06T13:21:13", + "TransactionId": 42922729, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 825, + "CustomerInfo": 8477270, + "PaymentType": "Cash" + }, + { + "Id": 11046, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2017-07-27T18:45:30", + "TransactionId": 40748174, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 728, + "CustomerInfo": 6258710, + "PaymentType": "Debit Card" + }, + { + "Id": 11047, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2019-11-22T17:40:16", + "TransactionId": 40783652, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 614, + "CustomerInfo": 21087704, + "PaymentType": "Cash" + }, + { + "Id": 11048, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-10-23T15:57:27", + "TransactionId": 62980858, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 998, + "CustomerInfo": 8861132, + "PaymentType": "Debit Card" + }, + { + "Id": 11049, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2019-05-29T12:10:05", + "TransactionId": 59283937, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 834, + "CustomerInfo": 68124401, + "PaymentType": "Cash" + }, + { + "Id": 11050, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2019-09-04T12:27:22", + "TransactionId": 98816164, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 56, + "CustomerInfo": 54703508, + "PaymentType": "Cash" + }, + { + "Id": 11051, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2018-07-04T15:44:56", + "TransactionId": 82703115, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 774, + "CustomerInfo": 3572654, + "PaymentType": "Debit Card" + }, + { + "Id": 11052, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-09-28T07:54:20", + "TransactionId": 27261847, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 604, + "CustomerInfo": 74191803, + "PaymentType": "Debit Card" + }, + { + "Id": 11053, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2018-06-01T16:25:41", + "TransactionId": 97184494, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 834, + "CustomerInfo": 78654263, + "PaymentType": "Cash" + }, + { + "Id": 11054, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-02-22T14:01:15", + "TransactionId": 71713148, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 57, + "CustomerInfo": 38432773, + "PaymentType": "Debit Card" + }, + { + "Id": 11055, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2018-05-17T16:22:05", + "TransactionId": 52101900, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 271, + "CustomerInfo": 95907301, + "PaymentType": "Credit Card" + }, + { + "Id": 11056, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2019-03-14T10:00:55", + "TransactionId": 9567245, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 190, + "CustomerInfo": 84592061, + "PaymentType": "Debit Card" + }, + { + "Id": 11057, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2019-04-18T19:31:26", + "TransactionId": 90735911, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 710, + "CustomerInfo": 80349316, + "PaymentType": "Credit Card" + }, + { + "Id": 11058, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2019-09-01T13:06:14", + "TransactionId": 28631913, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 881, + "CustomerInfo": 92236103, + "PaymentType": "Credit Card" + }, + { + "Id": 11059, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2017-03-14T13:42:40", + "TransactionId": 54808849, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 103, + "CustomerInfo": 79127288, + "PaymentType": "Credit Card" + }, + { + "Id": 11060, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2017-10-13T07:21:04", + "TransactionId": 86929033, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 722, + "CustomerInfo": 44709889, + "PaymentType": "Cash" + }, + { + "Id": 11061, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-02-04T16:55:12", + "TransactionId": 76782860, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 694, + "CustomerInfo": 62636892, + "PaymentType": "Credit Card" + }, + { + "Id": 11062, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2018-08-30T11:28:54", + "TransactionId": 89529644, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 397, + "CustomerInfo": 53537359, + "PaymentType": "Debit Card" + }, + { + "Id": 11063, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2016-03-03T19:48:00", + "TransactionId": 31994818, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 62, + "CustomerInfo": 2044430, + "PaymentType": "Cash" + }, + { + "Id": 11064, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-01-09T15:51:42", + "TransactionId": 53591830, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 170, + "CustomerInfo": 22531263, + "PaymentType": "Debit Card" + }, + { + "Id": 11065, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-12-05T13:53:37", + "TransactionId": 3455567, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 526, + "CustomerInfo": 19024045, + "PaymentType": "Credit Card" + }, + { + "Id": 11066, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2017-06-06T19:07:32", + "TransactionId": 14322540, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 843, + "CustomerInfo": 11224542, + "PaymentType": "Debit Card" + }, + { + "Id": 11067, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2019-01-15T11:56:59", + "TransactionId": 27481547, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 463, + "CustomerInfo": 44462413, + "PaymentType": "Debit Card" + }, + { + "Id": 11068, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2016-05-24T17:18:49", + "TransactionId": 44929460, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 420, + "CustomerInfo": 7228164, + "PaymentType": "Debit Card" + }, + { + "Id": 11069, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-04-08T16:43:32", + "TransactionId": 30791605, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 778, + "CustomerInfo": 32620522, + "PaymentType": "Credit Card" + }, + { + "Id": 11070, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2017-02-24T18:59:11", + "TransactionId": 90400576, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 243, + "CustomerInfo": 7766940, + "PaymentType": "Credit Card" + }, + { + "Id": 11071, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2016-02-07T09:38:27", + "TransactionId": 318878, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 679, + "CustomerInfo": 98912735, + "PaymentType": "Credit Card" + }, + { + "Id": 11072, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2017-04-21T10:04:31", + "TransactionId": 36433155, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 679, + "CustomerInfo": 65761954, + "PaymentType": "Credit Card" + }, + { + "Id": 11073, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2019-05-14T09:48:14", + "TransactionId": 45179776, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 931, + "CustomerInfo": 51562818, + "PaymentType": "Cash" + }, + { + "Id": 11074, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2017-10-11T12:37:09", + "TransactionId": 4804774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 219, + "CustomerInfo": 50920234, + "PaymentType": "Cash" + }, + { + "Id": 11075, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2019-12-18T14:44:18", + "TransactionId": 48019287, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 869, + "CustomerInfo": 82355410, + "PaymentType": "Credit Card" + }, + { + "Id": 11076, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-11-22T18:49:58", + "TransactionId": 63123189, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 668, + "CustomerInfo": 39492708, + "PaymentType": "Credit Card" + }, + { + "Id": 11077, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-06-23T18:24:12", + "TransactionId": 10780977, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 16, + "CustomerInfo": 27128521, + "PaymentType": "Cash" + }, + { + "Id": 11078, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-10-14T19:49:52", + "TransactionId": 89224540, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 56, + "CustomerInfo": 2687677, + "PaymentType": "Credit Card" + }, + { + "Id": 11079, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-07-17T15:41:54", + "TransactionId": 23535722, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 291, + "CustomerInfo": 16044009, + "PaymentType": "Debit Card" + }, + { + "Id": 11080, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2019-03-10T11:25:18", + "TransactionId": 74194250, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 455, + "CustomerInfo": 97930690, + "PaymentType": "Cash" + }, + { + "Id": 11081, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2016-07-27T07:59:14", + "TransactionId": 63771679, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 305, + "CustomerInfo": 56907016, + "PaymentType": "Credit Card" + }, + { + "Id": 11082, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-02-28T10:53:46", + "TransactionId": 18726269, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 202, + "CustomerInfo": 42736554, + "PaymentType": "Credit Card" + }, + { + "Id": 11083, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2018-05-16T12:18:52", + "TransactionId": 4169577, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 299, + "CustomerInfo": 72231164, + "PaymentType": "Credit Card" + }, + { + "Id": 11084, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-02-08T13:09:59", + "TransactionId": 81024848, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 937, + "CustomerInfo": 54490460, + "PaymentType": "Cash" + }, + { + "Id": 11085, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2018-07-15T15:24:46", + "TransactionId": 8793024, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 4077242, + "PaymentType": "Debit Card" + }, + { + "Id": 11086, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2017-02-24T12:04:02", + "TransactionId": 75214511, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 694, + "CustomerInfo": 15231964, + "PaymentType": "Debit Card" + }, + { + "Id": 11087, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-07-01T17:05:00", + "TransactionId": 31697642, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 237, + "CustomerInfo": 55041996, + "PaymentType": "Cash" + }, + { + "Id": 11088, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-10-18T14:53:57", + "TransactionId": 18428821, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 37, + "CustomerInfo": 92295240, + "PaymentType": "Cash" + }, + { + "Id": 11089, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-01-19T16:47:17", + "TransactionId": 28939341, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 628, + "CustomerInfo": 70977096, + "PaymentType": "Debit Card" + }, + { + "Id": 11090, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-03-09T17:38:59", + "TransactionId": 6571138, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 457, + "CustomerInfo": 72944167, + "PaymentType": "Cash" + }, + { + "Id": 11091, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-05-23T12:05:54", + "TransactionId": 4351899, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 54342548, + "PaymentType": "Debit Card" + }, + { + "Id": 11092, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-11-12T14:26:36", + "TransactionId": 22266318, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 874, + "CustomerInfo": 39546217, + "PaymentType": "Credit Card" + }, + { + "Id": 11093, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-09-21T09:41:54", + "TransactionId": 36728769, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 288, + "CustomerInfo": 24634126, + "PaymentType": "Debit Card" + }, + { + "Id": 11094, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2018-10-05T14:46:45", + "TransactionId": 97562701, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 675, + "CustomerInfo": 19610013, + "PaymentType": "Cash" + }, + { + "Id": 11095, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2019-01-06T10:02:04", + "TransactionId": 61344224, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 461, + "CustomerInfo": 85850516, + "PaymentType": "Debit Card" + }, + { + "Id": 11096, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-08-10T08:17:14", + "TransactionId": 46452199, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 714, + "CustomerInfo": 2470519, + "PaymentType": "Cash" + }, + { + "Id": 11097, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2018-06-04T16:10:25", + "TransactionId": 34437005, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 578, + "CustomerInfo": 67656586, + "PaymentType": "Debit Card" + }, + { + "Id": 11098, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2016-01-26T15:25:47", + "TransactionId": 98264067, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 373, + "CustomerInfo": 78061404, + "PaymentType": "Cash" + }, + { + "Id": 11099, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2017-11-18T14:38:41", + "TransactionId": 67868356, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 669, + "CustomerInfo": 49492788, + "PaymentType": "Debit Card" + }, + { + "Id": 11100, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2018-08-02T11:00:32", + "TransactionId": 1064537, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 719, + "CustomerInfo": 92540424, + "PaymentType": "Credit Card" + }, + { + "Id": 11101, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2018-03-15T17:45:45", + "TransactionId": 37956919, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 146, + "CustomerInfo": 48555037, + "PaymentType": "Credit Card" + }, + { + "Id": 11102, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2017-07-31T13:53:20", + "TransactionId": 36681958, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 21998322, + "PaymentType": "Cash" + }, + { + "Id": 11103, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-10-22T19:45:50", + "TransactionId": 10663011, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 632, + "CustomerInfo": 44062391, + "PaymentType": "Credit Card" + }, + { + "Id": 11104, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2016-02-05T08:54:58", + "TransactionId": 64189188, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 536, + "CustomerInfo": 32308221, + "PaymentType": "Credit Card" + }, + { + "Id": 11105, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2017-06-29T19:09:16", + "TransactionId": 83419134, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 537, + "CustomerInfo": 55481855, + "PaymentType": "Credit Card" + }, + { + "Id": 11106, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-11-17T18:34:25", + "TransactionId": 18975323, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 197, + "CustomerInfo": 81832814, + "PaymentType": "Credit Card" + }, + { + "Id": 11107, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2016-10-04T14:48:37", + "TransactionId": 85459749, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 710, + "CustomerInfo": 16898371, + "PaymentType": "Debit Card" + }, + { + "Id": 11108, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2019-12-10T09:30:06", + "TransactionId": 32680168, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 384, + "CustomerInfo": 43665721, + "PaymentType": "Credit Card" + }, + { + "Id": 11109, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2019-04-30T09:35:43", + "TransactionId": 10957086, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 16635130, + "PaymentType": "Cash" + }, + { + "Id": 11110, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2018-12-23T08:15:30", + "TransactionId": 49339112, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 228, + "CustomerInfo": 47163504, + "PaymentType": "Credit Card" + }, + { + "Id": 11111, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-10-08T11:39:33", + "TransactionId": 57929843, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 181, + "CustomerInfo": 88665508, + "PaymentType": "Cash" + }, + { + "Id": 11112, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-02-12T17:52:31", + "TransactionId": 39989946, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 1000, + "CustomerInfo": 18610487, + "PaymentType": "Debit Card" + }, + { + "Id": 11113, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-04-24T11:56:07", + "TransactionId": 3001932, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 275, + "CustomerInfo": 6121618, + "PaymentType": "Debit Card" + }, + { + "Id": 11114, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2017-12-16T12:06:12", + "TransactionId": 86008862, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 138, + "CustomerInfo": 62679050, + "PaymentType": "Credit Card" + }, + { + "Id": 11115, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-05-09T10:41:57", + "TransactionId": 17477338, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 831, + "CustomerInfo": 87221058, + "PaymentType": "Credit Card" + }, + { + "Id": 11116, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2016-04-27T14:03:16", + "TransactionId": 47392228, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 861, + "CustomerInfo": 61362994, + "PaymentType": "Debit Card" + }, + { + "Id": 11117, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2016-09-11T08:15:48", + "TransactionId": 10262069, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 849, + "CustomerInfo": 4743377, + "PaymentType": "Credit Card" + }, + { + "Id": 11118, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2019-08-29T15:11:14", + "TransactionId": 6953791, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 323, + "CustomerInfo": 8806946, + "PaymentType": "Cash" + }, + { + "Id": 11119, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2017-09-14T18:55:52", + "TransactionId": 15803924, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 136, + "CustomerInfo": 82717004, + "PaymentType": "Credit Card" + }, + { + "Id": 11120, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-01-01T09:59:46", + "TransactionId": 25059185, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 936, + "CustomerInfo": 89131024, + "PaymentType": "Credit Card" + }, + { + "Id": 11121, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-12-24T18:03:10", + "TransactionId": 23466597, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 906, + "CustomerInfo": 38051423, + "PaymentType": "Debit Card" + }, + { + "Id": 11122, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2018-02-24T19:19:38", + "TransactionId": 18960863, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 261, + "CustomerInfo": 35449863, + "PaymentType": "Cash" + }, + { + "Id": 11123, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-01-21T09:36:43", + "TransactionId": 72866417, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 78, + "CustomerInfo": 69028853, + "PaymentType": "Credit Card" + }, + { + "Id": 11124, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-04-14T19:27:59", + "TransactionId": 50319403, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 708, + "CustomerInfo": 72502212, + "PaymentType": "Debit Card" + }, + { + "Id": 11125, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2018-01-17T14:21:16", + "TransactionId": 52819577, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 57779197, + "PaymentType": "Debit Card" + }, + { + "Id": 11126, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2016-02-11T07:49:44", + "TransactionId": 16288161, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 106, + "CustomerInfo": 81776409, + "PaymentType": "Debit Card" + }, + { + "Id": 11127, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2019-04-10T07:52:28", + "TransactionId": 80692051, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 853, + "CustomerInfo": 41619934, + "PaymentType": "Credit Card" + }, + { + "Id": 11128, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2017-03-13T07:36:37", + "TransactionId": 50771335, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 692, + "CustomerInfo": 37679949, + "PaymentType": "Cash" + }, + { + "Id": 11129, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-03-14T14:03:16", + "TransactionId": 91345635, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 941, + "CustomerInfo": 6938728, + "PaymentType": "Debit Card" + }, + { + "Id": 11130, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2018-08-01T15:01:26", + "TransactionId": 16400571, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 922, + "CustomerInfo": 30264660, + "PaymentType": "Debit Card" + }, + { + "Id": 11131, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2016-08-15T12:17:25", + "TransactionId": 59920740, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 498, + "CustomerInfo": 69999059, + "PaymentType": "Credit Card" + }, + { + "Id": 11132, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2017-01-27T16:57:13", + "TransactionId": 34643904, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 457, + "CustomerInfo": 94492481, + "PaymentType": "Debit Card" + }, + { + "Id": 11133, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-05-08T10:54:12", + "TransactionId": 57133180, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 460, + "CustomerInfo": 17320346, + "PaymentType": "Cash" + }, + { + "Id": 11134, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-04-14T09:58:54", + "TransactionId": 48446512, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 996, + "CustomerInfo": 12594109, + "PaymentType": "Credit Card" + }, + { + "Id": 11135, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2017-05-20T09:03:10", + "TransactionId": 81204652, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 636, + "CustomerInfo": 81290571, + "PaymentType": "Debit Card" + }, + { + "Id": 11136, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2016-10-08T17:30:12", + "TransactionId": 84223815, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 402, + "CustomerInfo": 25165345, + "PaymentType": "Cash" + }, + { + "Id": 11137, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-08-20T11:23:00", + "TransactionId": 93007237, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 22, + "CustomerInfo": 81950806, + "PaymentType": "Credit Card" + }, + { + "Id": 11138, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2016-03-21T12:06:29", + "TransactionId": 46335586, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 979, + "CustomerInfo": 34540126, + "PaymentType": "Debit Card" + }, + { + "Id": 11139, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-03-21T17:26:10", + "TransactionId": 68913695, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 361, + "CustomerInfo": 17548986, + "PaymentType": "Debit Card" + }, + { + "Id": 11140, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2017-12-09T17:46:19", + "TransactionId": 72240552, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 775, + "CustomerInfo": 7062400, + "PaymentType": "Credit Card" + }, + { + "Id": 11141, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2018-03-30T07:08:07", + "TransactionId": 14754071, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 838, + "CustomerInfo": 14688424, + "PaymentType": "Cash" + }, + { + "Id": 11142, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-04-02T07:04:57", + "TransactionId": 23137864, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 494, + "CustomerInfo": 27721572, + "PaymentType": "Cash" + }, + { + "Id": 11143, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-08-21T17:00:14", + "TransactionId": 70798839, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 98, + "CustomerInfo": 64715883, + "PaymentType": "Credit Card" + }, + { + "Id": 11144, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-08-12T10:14:36", + "TransactionId": 56178437, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 245, + "CustomerInfo": 6838381, + "PaymentType": "Cash" + }, + { + "Id": 11145, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-08-01T09:28:13", + "TransactionId": 35037819, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 269, + "CustomerInfo": 93065915, + "PaymentType": "Debit Card" + }, + { + "Id": 11146, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-09-04T10:15:19", + "TransactionId": 21874066, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 426, + "CustomerInfo": 3693926, + "PaymentType": "Credit Card" + }, + { + "Id": 11147, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2018-02-04T14:06:43", + "TransactionId": 33179690, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 69892165, + "PaymentType": "Credit Card" + }, + { + "Id": 11148, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2017-12-05T16:52:28", + "TransactionId": 94152734, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 658, + "CustomerInfo": 7461417, + "PaymentType": "Debit Card" + }, + { + "Id": 11149, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-04-21T07:50:10", + "TransactionId": 66776746, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 832, + "CustomerInfo": 83959970, + "PaymentType": "Credit Card" + }, + { + "Id": 11150, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2016-06-18T14:12:46", + "TransactionId": 92524400, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 574, + "CustomerInfo": 41932235, + "PaymentType": "Credit Card" + }, + { + "Id": 11151, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2017-03-11T15:42:20", + "TransactionId": 26491361, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 15, + "CustomerInfo": 5001954, + "PaymentType": "Credit Card" + }, + { + "Id": 11152, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2019-07-24T07:53:02", + "TransactionId": 16128754, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 374, + "CustomerInfo": 16488280, + "PaymentType": "Debit Card" + }, + { + "Id": 11153, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-04-30T09:06:46", + "TransactionId": 45296237, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 77, + "CustomerInfo": 50992044, + "PaymentType": "Cash" + }, + { + "Id": 11154, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-02-25T12:46:48", + "TransactionId": 55062, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 66084841, + "PaymentType": "Cash" + }, + { + "Id": 11155, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2016-12-15T12:42:46", + "TransactionId": 25445972, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 62, + "CustomerInfo": 92170804, + "PaymentType": "Cash" + }, + { + "Id": 11156, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2019-06-01T15:28:22", + "TransactionId": 32162705, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 546, + "CustomerInfo": 5603476, + "PaymentType": "Cash" + }, + { + "Id": 11157, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-06-14T13:09:33", + "TransactionId": 43318160, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 878, + "CustomerInfo": 13640253, + "PaymentType": "Cash" + }, + { + "Id": 11158, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-03-10T11:55:32", + "TransactionId": 32505647, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 876, + "CustomerInfo": 27020323, + "PaymentType": "Debit Card" + }, + { + "Id": 11159, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2018-09-28T18:34:16", + "TransactionId": 81318289, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 804, + "CustomerInfo": 50505927, + "PaymentType": "Cash" + }, + { + "Id": 11160, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-10-18T11:50:30", + "TransactionId": 84896421, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 998, + "CustomerInfo": 44912999, + "PaymentType": "Debit Card" + }, + { + "Id": 11161, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2016-08-08T07:03:13", + "TransactionId": 37708920, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 583, + "CustomerInfo": 82783295, + "PaymentType": "Credit Card" + }, + { + "Id": 11162, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-11-22T17:39:50", + "TransactionId": 28826993, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 271, + "CustomerInfo": 36834042, + "PaymentType": "Credit Card" + }, + { + "Id": 11163, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-12-17T16:14:53", + "TransactionId": 73846882, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 853, + "CustomerInfo": 77371433, + "PaymentType": "Cash" + }, + { + "Id": 11164, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2019-06-15T16:11:17", + "TransactionId": 60800888, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 51, + "CustomerInfo": 73905792, + "PaymentType": "Cash" + }, + { + "Id": 11165, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-05-30T15:29:05", + "TransactionId": 55911492, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 281, + "CustomerInfo": 98377276, + "PaymentType": "Cash" + }, + { + "Id": 11166, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-09-17T17:27:53", + "TransactionId": 59774599, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 630, + "CustomerInfo": 99345669, + "PaymentType": "Debit Card" + }, + { + "Id": 11167, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2018-04-27T07:59:48", + "TransactionId": 26752009, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 204, + "CustomerInfo": 23156525, + "PaymentType": "Cash" + }, + { + "Id": 11168, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-05-26T15:59:46", + "TransactionId": 50873071, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 556, + "CustomerInfo": 30266110, + "PaymentType": "Cash" + }, + { + "Id": 11169, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2018-10-22T16:03:13", + "TransactionId": 30349433, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 22311292, + "PaymentType": "Credit Card" + }, + { + "Id": 11170, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2018-01-22T17:43:00", + "TransactionId": 43736698, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 455, + "CustomerInfo": 34850046, + "PaymentType": "Credit Card" + }, + { + "Id": 11171, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-08-27T09:47:05", + "TransactionId": 45576974, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 737, + "CustomerInfo": 49675697, + "PaymentType": "Cash" + }, + { + "Id": 11172, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2017-05-14T18:44:21", + "TransactionId": 87750467, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 65, + "CustomerInfo": 28208522, + "PaymentType": "Credit Card" + }, + { + "Id": 11173, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2018-09-17T16:49:35", + "TransactionId": 69109865, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 203, + "CustomerInfo": 4817940, + "PaymentType": "Cash" + }, + { + "Id": 11174, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-03-08T10:18:46", + "TransactionId": 83558542, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 33, + "CustomerInfo": 47435346, + "PaymentType": "Cash" + }, + { + "Id": 11175, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-08-04T16:52:28", + "TransactionId": 47981095, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 857, + "CustomerInfo": 99737401, + "PaymentType": "Cash" + }, + { + "Id": 11176, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-05-03T18:50:15", + "TransactionId": 93380905, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 268, + "CustomerInfo": 60322518, + "PaymentType": "Credit Card" + }, + { + "Id": 11177, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-10-30T15:30:14", + "TransactionId": 36448100, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 939, + "CustomerInfo": 88499429, + "PaymentType": "Debit Card" + }, + { + "Id": 11178, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-08-01T16:51:36", + "TransactionId": 17460917, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 815, + "CustomerInfo": 69697538, + "PaymentType": "Credit Card" + }, + { + "Id": 11179, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2019-08-28T11:07:35", + "TransactionId": 96285388, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 47, + "CustomerInfo": 73554629, + "PaymentType": "Cash" + }, + { + "Id": 11180, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-05-22T16:12:17", + "TransactionId": 67331896, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 322, + "CustomerInfo": 75488257, + "PaymentType": "Cash" + }, + { + "Id": 11181, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2016-04-25T11:40:08", + "TransactionId": 63444493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 63321993, + "PaymentType": "Cash" + }, + { + "Id": 11182, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-09-11T07:46:16", + "TransactionId": 52231512, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 408, + "CustomerInfo": 63687639, + "PaymentType": "Credit Card" + }, + { + "Id": 11183, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-12-30T13:43:41", + "TransactionId": 39803905, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 463, + "CustomerInfo": 81233934, + "PaymentType": "Cash" + }, + { + "Id": 11184, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-03-13T09:51:33", + "TransactionId": 49483408, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 81, + "CustomerInfo": 50546526, + "PaymentType": "Debit Card" + }, + { + "Id": 11185, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2017-01-13T14:46:28", + "TransactionId": 59921387, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 660, + "CustomerInfo": 93634871, + "PaymentType": "Credit Card" + }, + { + "Id": 11186, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2016-03-13T10:08:15", + "TransactionId": 47278440, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 922, + "CustomerInfo": 82205165, + "PaymentType": "Credit Card" + }, + { + "Id": 11187, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-05-08T09:44:56", + "TransactionId": 13301680, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 453, + "CustomerInfo": 50326422, + "PaymentType": "Credit Card" + }, + { + "Id": 11188, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2017-02-05T10:45:50", + "TransactionId": 82121073, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 734, + "CustomerInfo": 10209558, + "PaymentType": "Debit Card" + }, + { + "Id": 11189, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2017-09-08T09:11:57", + "TransactionId": 88799048, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 920, + "CustomerInfo": 52578098, + "PaymentType": "Cash" + }, + { + "Id": 11190, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-08-05T19:36:46", + "TransactionId": 18755163, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 948, + "CustomerInfo": 31389898, + "PaymentType": "Debit Card" + }, + { + "Id": 11191, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-10-03T16:47:34", + "TransactionId": 67002879, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 609, + "CustomerInfo": 7572092, + "PaymentType": "Debit Card" + }, + { + "Id": 11192, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-08-30T13:53:46", + "TransactionId": 45669145, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 59, + "CustomerInfo": 97159843, + "PaymentType": "Debit Card" + }, + { + "Id": 11193, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-10-05T14:25:44", + "TransactionId": 74498852, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 913, + "CustomerInfo": 55168574, + "PaymentType": "Cash" + }, + { + "Id": 11194, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2017-09-16T15:12:32", + "TransactionId": 54157438, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 55471784, + "PaymentType": "Credit Card" + }, + { + "Id": 11195, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2016-04-24T15:56:27", + "TransactionId": 68177385, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 485, + "CustomerInfo": 46123075, + "PaymentType": "Cash" + }, + { + "Id": 11196, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2016-05-17T12:17:00", + "TransactionId": 87425642, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 539, + "CustomerInfo": 67495768, + "PaymentType": "Cash" + }, + { + "Id": 11197, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-05-29T16:22:22", + "TransactionId": 15605348, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 676, + "CustomerInfo": 59574828, + "PaymentType": "Debit Card" + }, + { + "Id": 11198, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-04-23T13:25:58", + "TransactionId": 85156167, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 268, + "CustomerInfo": 12874583, + "PaymentType": "Cash" + }, + { + "Id": 11199, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2018-08-17T15:42:20", + "TransactionId": 3293678, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 160, + "CustomerInfo": 42708627, + "PaymentType": "Cash" + }, + { + "Id": 11200, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2018-07-25T11:40:51", + "TransactionId": 32098032, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 170, + "CustomerInfo": 37017455, + "PaymentType": "Debit Card" + }, + { + "Id": 11201, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2017-09-11T09:11:57", + "TransactionId": 84718279, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 232, + "CustomerInfo": 61961518, + "PaymentType": "Cash" + }, + { + "Id": 11202, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2017-11-11T13:42:23", + "TransactionId": 46088604, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 236, + "CustomerInfo": 54339256, + "PaymentType": "Credit Card" + }, + { + "Id": 11203, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-09-14T07:32:10", + "TransactionId": 61304349, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 189, + "CustomerInfo": 56751507, + "PaymentType": "Debit Card" + }, + { + "Id": 11204, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2019-03-06T15:04:11", + "TransactionId": 43925949, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 3, + "CustomerInfo": 21725608, + "PaymentType": "Debit Card" + }, + { + "Id": 11205, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-10-12T14:31:55", + "TransactionId": 74350666, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 128, + "CustomerInfo": 98260399, + "PaymentType": "Cash" + }, + { + "Id": 11206, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2017-03-13T09:40:36", + "TransactionId": 82418551, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 87, + "CustomerInfo": 33548817, + "PaymentType": "Credit Card" + }, + { + "Id": 11207, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-06-04T17:22:08", + "TransactionId": 18737939, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 806, + "CustomerInfo": 66860323, + "PaymentType": "Credit Card" + }, + { + "Id": 11208, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2019-08-25T15:02:36", + "TransactionId": 41652103, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 461, + "CustomerInfo": 97027536, + "PaymentType": "Credit Card" + }, + { + "Id": 11209, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2017-02-14T19:17:46", + "TransactionId": 45874768, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 286, + "CustomerInfo": 3098382, + "PaymentType": "Debit Card" + }, + { + "Id": 11210, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2017-10-08T14:42:26", + "TransactionId": 86493521, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 218, + "CustomerInfo": 86874899, + "PaymentType": "Cash" + }, + { + "Id": 11211, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2018-12-24T19:11:00", + "TransactionId": 78801640, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 571, + "CustomerInfo": 41074317, + "PaymentType": "Cash" + }, + { + "Id": 11212, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2016-10-01T19:42:32", + "TransactionId": 42737855, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 393, + "CustomerInfo": 72259987, + "PaymentType": "Cash" + }, + { + "Id": 11213, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2018-10-18T09:21:36", + "TransactionId": 10520783, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 413, + "CustomerInfo": 63497652, + "PaymentType": "Credit Card" + }, + { + "Id": 11214, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2017-06-08T10:28:34", + "TransactionId": 2260865, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 459, + "CustomerInfo": 20034516, + "PaymentType": "Credit Card" + }, + { + "Id": 11215, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2017-04-13T08:40:34", + "TransactionId": 69155737, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 599, + "CustomerInfo": 2861303, + "PaymentType": "Credit Card" + }, + { + "Id": 11216, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-09-30T10:56:04", + "TransactionId": 28977836, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 148, + "CustomerInfo": 36980005, + "PaymentType": "Debit Card" + }, + { + "Id": 11217, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-11-14T12:26:47", + "TransactionId": 97506053, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 379, + "CustomerInfo": 58929540, + "PaymentType": "Cash" + }, + { + "Id": 11218, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2016-04-02T10:18:46", + "TransactionId": 28276495, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 297, + "CustomerInfo": 57558716, + "PaymentType": "Cash" + }, + { + "Id": 11219, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2016-01-14T16:38:38", + "TransactionId": 6237355, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 591, + "CustomerInfo": 2239152, + "PaymentType": "Debit Card" + }, + { + "Id": 11220, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-08-21T17:18:32", + "TransactionId": 10016890, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 166, + "CustomerInfo": 78112594, + "PaymentType": "Debit Card" + }, + { + "Id": 11221, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2016-01-03T17:14:38", + "TransactionId": 69084904, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 938, + "CustomerInfo": 60215677, + "PaymentType": "Debit Card" + }, + { + "Id": 11222, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2019-02-24T09:54:09", + "TransactionId": 57715630, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 227, + "CustomerInfo": 25734828, + "PaymentType": "Debit Card" + }, + { + "Id": 11223, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-12-12T16:21:39", + "TransactionId": 74118361, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 834, + "CustomerInfo": 43747545, + "PaymentType": "Credit Card" + }, + { + "Id": 11224, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2016-03-17T14:26:18", + "TransactionId": 49094888, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 284, + "CustomerInfo": 70174891, + "PaymentType": "Credit Card" + }, + { + "Id": 11225, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-12-12T11:19:15", + "TransactionId": 58111417, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 372, + "CustomerInfo": 96699592, + "PaymentType": "Cash" + }, + { + "Id": 11226, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2016-08-09T17:45:27", + "TransactionId": 78882134, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 890, + "CustomerInfo": 83965030, + "PaymentType": "Debit Card" + }, + { + "Id": 11227, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2016-09-08T07:51:10", + "TransactionId": 20413987, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 81, + "CustomerInfo": 33286653, + "PaymentType": "Cash" + }, + { + "Id": 11228, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-12-16T09:29:31", + "TransactionId": 10811520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 142, + "CustomerInfo": 2488612, + "PaymentType": "Debit Card" + }, + { + "Id": 11229, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2017-01-07T14:38:15", + "TransactionId": 46785190, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 245, + "CustomerInfo": 14702469, + "PaymentType": "Debit Card" + }, + { + "Id": 11230, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-06-20T11:03:07", + "TransactionId": 30443150, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 959, + "CustomerInfo": 50542125, + "PaymentType": "Credit Card" + }, + { + "Id": 11231, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2016-02-13T12:43:21", + "TransactionId": 19227574, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 531084, + "PaymentType": "Credit Card" + }, + { + "Id": 11232, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2017-08-23T19:23:48", + "TransactionId": 39370679, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 614, + "CustomerInfo": 16146434, + "PaymentType": "Credit Card" + }, + { + "Id": 11233, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2019-02-25T17:20:59", + "TransactionId": 14125167, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 358, + "CustomerInfo": 79116354, + "PaymentType": "Debit Card" + }, + { + "Id": 11234, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-10-17T18:22:28", + "TransactionId": 94762086, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 79, + "CustomerInfo": 62971935, + "PaymentType": "Cash" + }, + { + "Id": 11235, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2019-09-13T19:26:07", + "TransactionId": 44451657, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 163, + "CustomerInfo": 41118372, + "PaymentType": "Cash" + }, + { + "Id": 11236, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2018-09-07T15:03:10", + "TransactionId": 87692785, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 102, + "CustomerInfo": 52593862, + "PaymentType": "Debit Card" + }, + { + "Id": 11237, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-06-14T09:47:57", + "TransactionId": 16616687, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 975, + "CustomerInfo": 46068982, + "PaymentType": "Cash" + }, + { + "Id": 11238, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2017-08-15T18:32:41", + "TransactionId": 68704884, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 198, + "CustomerInfo": 61935400, + "PaymentType": "Cash" + }, + { + "Id": 11239, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2017-04-25T15:21:19", + "TransactionId": 84308825, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 378, + "CustomerInfo": 55712570, + "PaymentType": "Cash" + }, + { + "Id": 11240, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-08-21T15:05:11", + "TransactionId": 28244062, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 90054773, + "PaymentType": "Debit Card" + }, + { + "Id": 11241, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-06-09T18:12:14", + "TransactionId": 59317587, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 590, + "CustomerInfo": 29672701, + "PaymentType": "Debit Card" + }, + { + "Id": 11242, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-09-18T18:14:41", + "TransactionId": 11223987, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 612, + "CustomerInfo": 32298777, + "PaymentType": "Cash" + }, + { + "Id": 11243, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-09-12T09:32:50", + "TransactionId": 34218858, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 342, + "CustomerInfo": 62118637, + "PaymentType": "Debit Card" + }, + { + "Id": 11244, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2016-09-15T10:59:14", + "TransactionId": 64112587, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 819, + "CustomerInfo": 79252950, + "PaymentType": "Cash" + }, + { + "Id": 11245, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-12-19T13:36:29", + "TransactionId": 59418616, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 312, + "CustomerInfo": 99167586, + "PaymentType": "Credit Card" + }, + { + "Id": 11246, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-04-01T19:00:12", + "TransactionId": 59085185, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 851, + "CustomerInfo": 32433534, + "PaymentType": "Debit Card" + }, + { + "Id": 11247, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2017-03-11T07:49:52", + "TransactionId": 70659154, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 903, + "CustomerInfo": 25847031, + "PaymentType": "Cash" + }, + { + "Id": 11248, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2019-04-02T11:37:58", + "TransactionId": 13775224, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 623, + "CustomerInfo": 53098079, + "PaymentType": "Credit Card" + }, + { + "Id": 11249, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-03-17T09:30:58", + "TransactionId": 36157064, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 234, + "CustomerInfo": 74381988, + "PaymentType": "Credit Card" + }, + { + "Id": 11250, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2017-07-12T10:46:34", + "TransactionId": 99541872, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 803, + "CustomerInfo": 46003712, + "PaymentType": "Debit Card" + }, + { + "Id": 11251, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2017-11-11T08:42:52", + "TransactionId": 65323938, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 903, + "CustomerInfo": 8890497, + "PaymentType": "Debit Card" + }, + { + "Id": 11252, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-07-17T07:29:00", + "TransactionId": 58594597, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 567, + "CustomerInfo": 29636386, + "PaymentType": "Debit Card" + }, + { + "Id": 11253, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-06-02T11:42:17", + "TransactionId": 22526304, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 767, + "CustomerInfo": 46475976, + "PaymentType": "Credit Card" + }, + { + "Id": 11254, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2017-09-01T16:04:57", + "TransactionId": 51142098, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 26932367, + "PaymentType": "Credit Card" + }, + { + "Id": 11255, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2018-06-29T10:40:57", + "TransactionId": 7211713, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 599, + "CustomerInfo": 61235721, + "PaymentType": "Debit Card" + }, + { + "Id": 11256, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2018-01-18T17:31:55", + "TransactionId": 55740517, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 258, + "CustomerInfo": 2706246, + "PaymentType": "Debit Card" + }, + { + "Id": 11257, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2016-08-23T16:11:25", + "TransactionId": 52065896, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 194, + "CustomerInfo": 94277039, + "PaymentType": "Cash" + }, + { + "Id": 11258, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2017-12-12T10:54:46", + "TransactionId": 2204073, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 419, + "CustomerInfo": 43773529, + "PaymentType": "Credit Card" + }, + { + "Id": 11259, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-03-26T17:19:15", + "TransactionId": 26441684, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 856, + "CustomerInfo": 852080, + "PaymentType": "Cash" + }, + { + "Id": 11260, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2018-03-17T14:46:45", + "TransactionId": 1915459, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 536, + "CustomerInfo": 12663882, + "PaymentType": "Credit Card" + }, + { + "Id": 11261, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2019-02-03T17:19:41", + "TransactionId": 16437017, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 200, + "CustomerInfo": 12826607, + "PaymentType": "Debit Card" + }, + { + "Id": 11262, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-06-29T11:25:44", + "TransactionId": 56051224, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 942, + "CustomerInfo": 23395989, + "PaymentType": "Cash" + }, + { + "Id": 11263, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2016-04-28T10:43:41", + "TransactionId": 49406722, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 580, + "CustomerInfo": 49928846, + "PaymentType": "Debit Card" + }, + { + "Id": 11264, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2017-02-07T14:01:32", + "TransactionId": 21842088, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 474, + "CustomerInfo": 65729927, + "PaymentType": "Cash" + }, + { + "Id": 11265, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2019-02-19T15:34:42", + "TransactionId": 8894206, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 305, + "CustomerInfo": 97645711, + "PaymentType": "Cash" + }, + { + "Id": 11266, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2019-04-03T08:25:00", + "TransactionId": 72875741, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 836, + "CustomerInfo": 99975731, + "PaymentType": "Debit Card" + }, + { + "Id": 11267, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2019-09-30T15:14:41", + "TransactionId": 75048128, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 714, + "CustomerInfo": 49245141, + "PaymentType": "Cash" + }, + { + "Id": 11268, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2017-08-27T07:20:38", + "TransactionId": 22683066, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 966, + "CustomerInfo": 90638836, + "PaymentType": "Cash" + }, + { + "Id": 11269, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2019-08-12T15:32:33", + "TransactionId": 99954798, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 540, + "CustomerInfo": 24368167, + "PaymentType": "Cash" + }, + { + "Id": 11270, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-06-07T09:09:13", + "TransactionId": 45309699, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 530, + "CustomerInfo": 98771469, + "PaymentType": "Debit Card" + }, + { + "Id": 11271, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-12-22T14:24:52", + "TransactionId": 21936518, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 534, + "CustomerInfo": 25889522, + "PaymentType": "Credit Card" + }, + { + "Id": 11272, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-09-28T09:28:39", + "TransactionId": 19114043, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 249, + "CustomerInfo": 99674830, + "PaymentType": "Debit Card" + }, + { + "Id": 11273, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2019-05-21T18:15:07", + "TransactionId": 94733959, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 744, + "CustomerInfo": 79315792, + "PaymentType": "Credit Card" + }, + { + "Id": 11274, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2019-11-13T19:02:21", + "TransactionId": 25768818, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 184, + "CustomerInfo": 60462839, + "PaymentType": "Credit Card" + }, + { + "Id": 11275, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-08-29T17:43:35", + "TransactionId": 3680848, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 593, + "CustomerInfo": 92609083, + "PaymentType": "Cash" + }, + { + "Id": 11276, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-05-05T17:05:51", + "TransactionId": 26681897, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 556, + "CustomerInfo": 13733310, + "PaymentType": "Credit Card" + }, + { + "Id": 11277, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2016-09-30T11:34:48", + "TransactionId": 14917727, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 659, + "CustomerInfo": 30424382, + "PaymentType": "Debit Card" + }, + { + "Id": 11278, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-03-02T08:57:59", + "TransactionId": 62392995, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 564, + "CustomerInfo": 89332238, + "PaymentType": "Cash" + }, + { + "Id": 11279, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2017-05-29T12:53:43", + "TransactionId": 8723982, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 129, + "CustomerInfo": 90010803, + "PaymentType": "Debit Card" + }, + { + "Id": 11280, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-07-04T14:04:51", + "TransactionId": 63876371, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 513, + "CustomerInfo": 78596438, + "PaymentType": "Cash" + }, + { + "Id": 11281, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2017-05-13T15:23:11", + "TransactionId": 64781246, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 590, + "CustomerInfo": 63802364, + "PaymentType": "Debit Card" + }, + { + "Id": 11282, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2017-09-12T08:35:57", + "TransactionId": 30587496, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 829, + "CustomerInfo": 55357930, + "PaymentType": "Debit Card" + }, + { + "Id": 11283, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-04-08T12:59:46", + "TransactionId": 70584692, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 162, + "CustomerInfo": 63712587, + "PaymentType": "Cash" + }, + { + "Id": 11284, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2018-05-29T15:24:20", + "TransactionId": 60550104, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 51, + "CustomerInfo": 37875755, + "PaymentType": "Credit Card" + }, + { + "Id": 11285, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2017-11-14T11:58:16", + "TransactionId": 11507886, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 309, + "CustomerInfo": 82790318, + "PaymentType": "Cash" + }, + { + "Id": 11286, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-04-04T19:34:28", + "TransactionId": 65185628, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 454, + "CustomerInfo": 9970789, + "PaymentType": "Debit Card" + }, + { + "Id": 11287, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-10-22T08:49:55", + "TransactionId": 30244068, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 61, + "CustomerInfo": 72677589, + "PaymentType": "Credit Card" + }, + { + "Id": 11288, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-06-25T16:46:16", + "TransactionId": 36795365, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 397, + "CustomerInfo": 81382361, + "PaymentType": "Credit Card" + }, + { + "Id": 11289, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-08-17T12:33:33", + "TransactionId": 16341736, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 32, + "CustomerInfo": 5125758, + "PaymentType": "Credit Card" + }, + { + "Id": 11290, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-08-11T19:57:04", + "TransactionId": 46705726, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 313, + "CustomerInfo": 41772958, + "PaymentType": "Debit Card" + }, + { + "Id": 11291, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-09-04T18:04:11", + "TransactionId": 71185721, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 779, + "CustomerInfo": 51231815, + "PaymentType": "Debit Card" + }, + { + "Id": 11292, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-07-25T12:50:07", + "TransactionId": 92201330, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 713, + "CustomerInfo": 59263705, + "PaymentType": "Cash" + }, + { + "Id": 11293, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2016-10-29T18:37:09", + "TransactionId": 84689473, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 504, + "CustomerInfo": 29485749, + "PaymentType": "Cash" + }, + { + "Id": 11294, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2016-10-04T10:58:13", + "TransactionId": 83102245, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 144, + "CustomerInfo": 4033385, + "PaymentType": "Credit Card" + }, + { + "Id": 11295, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2018-06-20T16:59:05", + "TransactionId": 67486260, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 881, + "CustomerInfo": 20913242, + "PaymentType": "Cash" + }, + { + "Id": 11296, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2019-11-12T15:57:10", + "TransactionId": 45494338, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 230, + "CustomerInfo": 33566460, + "PaymentType": "Cash" + }, + { + "Id": 11297, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-01-18T12:04:28", + "TransactionId": 96884582, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 788, + "CustomerInfo": 62501529, + "PaymentType": "Credit Card" + }, + { + "Id": 11298, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2018-09-16T13:06:14", + "TransactionId": 25257574, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 144, + "CustomerInfo": 22107789, + "PaymentType": "Debit Card" + }, + { + "Id": 11299, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2017-01-19T08:34:48", + "TransactionId": 43659784, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 342, + "CustomerInfo": 40943309, + "PaymentType": "Cash" + }, + { + "Id": 11300, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2016-04-09T07:38:04", + "TransactionId": 90818006, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 247, + "CustomerInfo": 75467390, + "PaymentType": "Credit Card" + }, + { + "Id": 11301, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2018-09-19T09:43:47", + "TransactionId": 12326158, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 425, + "CustomerInfo": 29679289, + "PaymentType": "Cash" + }, + { + "Id": 11302, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-10-11T11:52:57", + "TransactionId": 49469075, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 167, + "CustomerInfo": 30901971, + "PaymentType": "Credit Card" + }, + { + "Id": 11303, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2019-03-12T16:56:04", + "TransactionId": 11761889, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 899, + "CustomerInfo": 18630882, + "PaymentType": "Debit Card" + }, + { + "Id": 11304, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-12-26T12:57:36", + "TransactionId": 12963012, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 81959759, + "PaymentType": "Cash" + }, + { + "Id": 11305, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-05-17T17:20:41", + "TransactionId": 91889594, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 642, + "CustomerInfo": 72763325, + "PaymentType": "Debit Card" + }, + { + "Id": 11306, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2016-09-27T17:43:09", + "TransactionId": 66346027, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 956, + "CustomerInfo": 44799715, + "PaymentType": "Debit Card" + }, + { + "Id": 11307, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2016-02-24T07:34:45", + "TransactionId": 95625195, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 963, + "CustomerInfo": 56123614, + "PaymentType": "Cash" + }, + { + "Id": 11308, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-03-15T18:55:52", + "TransactionId": 84802233, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 409, + "CustomerInfo": 69467859, + "PaymentType": "Credit Card" + }, + { + "Id": 11309, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-08-29T14:25:00", + "TransactionId": 52388039, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 745, + "CustomerInfo": 36833678, + "PaymentType": "Cash" + }, + { + "Id": 11310, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-02-23T12:10:48", + "TransactionId": 41071999, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 97, + "CustomerInfo": 18581771, + "PaymentType": "Debit Card" + }, + { + "Id": 11311, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-03-17T09:14:50", + "TransactionId": 39949942, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 842, + "CustomerInfo": 85610501, + "PaymentType": "Debit Card" + }, + { + "Id": 11312, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2019-03-13T08:28:19", + "TransactionId": 23069453, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 704, + "CustomerInfo": 92933631, + "PaymentType": "Credit Card" + }, + { + "Id": 11313, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-02-09T15:48:14", + "TransactionId": 44705007, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 264, + "CustomerInfo": 25135928, + "PaymentType": "Debit Card" + }, + { + "Id": 11314, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2016-02-05T10:20:47", + "TransactionId": 13611508, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 56103940, + "PaymentType": "Credit Card" + }, + { + "Id": 11315, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-08-20T18:59:20", + "TransactionId": 57044691, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 213, + "CustomerInfo": 55934775, + "PaymentType": "Debit Card" + }, + { + "Id": 11316, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-12-26T11:15:04", + "TransactionId": 43874620, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 926, + "CustomerInfo": 84835399, + "PaymentType": "Debit Card" + }, + { + "Id": 11317, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-07-07T15:37:44", + "TransactionId": 69959055, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 721, + "CustomerInfo": 97929529, + "PaymentType": "Credit Card" + }, + { + "Id": 11318, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2017-04-05T11:41:43", + "TransactionId": 36047348, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 263, + "CustomerInfo": 94565888, + "PaymentType": "Debit Card" + }, + { + "Id": 11319, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2019-09-27T13:47:34", + "TransactionId": 14256909, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 260, + "CustomerInfo": 5813776, + "PaymentType": "Debit Card" + }, + { + "Id": 11320, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-03-23T17:09:27", + "TransactionId": 12965436, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 905, + "CustomerInfo": 11113397, + "PaymentType": "Credit Card" + }, + { + "Id": 11321, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2017-11-01T10:47:17", + "TransactionId": 82993865, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 785, + "CustomerInfo": 61719035, + "PaymentType": "Debit Card" + }, + { + "Id": 11322, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2018-08-27T19:10:08", + "TransactionId": 71187220, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 179, + "CustomerInfo": 45084938, + "PaymentType": "Credit Card" + }, + { + "Id": 11323, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2016-02-12T15:21:45", + "TransactionId": 77821361, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 868, + "CustomerInfo": 44666591, + "PaymentType": "Debit Card" + }, + { + "Id": 11324, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-08-01T15:08:30", + "TransactionId": 15884193, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 561, + "CustomerInfo": 28637810, + "PaymentType": "Credit Card" + }, + { + "Id": 11325, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2016-09-03T12:09:48", + "TransactionId": 52397039, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 324, + "CustomerInfo": 84005575, + "PaymentType": "Credit Card" + }, + { + "Id": 11326, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2017-04-20T18:25:12", + "TransactionId": 48118911, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 345, + "CustomerInfo": 46299033, + "PaymentType": "Credit Card" + }, + { + "Id": 11327, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2017-09-21T07:42:14", + "TransactionId": 14354023, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 709, + "CustomerInfo": 46163652, + "PaymentType": "Credit Card" + }, + { + "Id": 11328, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-08-09T07:50:18", + "TransactionId": 17858703, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 47, + "CustomerInfo": 52658760, + "PaymentType": "Cash" + }, + { + "Id": 11329, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2018-08-02T12:09:22", + "TransactionId": 24796092, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 448, + "CustomerInfo": 20351483, + "PaymentType": "Debit Card" + }, + { + "Id": 11330, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2019-07-28T15:39:36", + "TransactionId": 73353815, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 782, + "CustomerInfo": 98338722, + "PaymentType": "Debit Card" + }, + { + "Id": 11331, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2017-03-09T13:31:35", + "TransactionId": 76672003, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 317, + "CustomerInfo": 60788286, + "PaymentType": "Credit Card" + }, + { + "Id": 11332, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2019-06-20T08:59:08", + "TransactionId": 11694783, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 937, + "CustomerInfo": 24244301, + "PaymentType": "Credit Card" + }, + { + "Id": 11333, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-12-14T18:14:59", + "TransactionId": 12477282, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 355, + "CustomerInfo": 24037296, + "PaymentType": "Cash" + }, + { + "Id": 11334, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2019-03-02T19:17:11", + "TransactionId": 46945740, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 194, + "CustomerInfo": 14852483, + "PaymentType": "Credit Card" + }, + { + "Id": 11335, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2018-03-26T09:24:37", + "TransactionId": 86452389, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 765, + "CustomerInfo": 33704071, + "PaymentType": "Credit Card" + }, + { + "Id": 11336, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2018-06-28T19:27:33", + "TransactionId": 23563511, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 331, + "CustomerInfo": 45355275, + "PaymentType": "Cash" + }, + { + "Id": 11337, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-11-28T15:21:01", + "TransactionId": 75348537, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 952, + "CustomerInfo": 36207751, + "PaymentType": "Debit Card" + }, + { + "Id": 11338, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2017-11-08T10:22:48", + "TransactionId": 16610795, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 239, + "CustomerInfo": 59972750, + "PaymentType": "Credit Card" + }, + { + "Id": 11339, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-09-14T08:04:51", + "TransactionId": 27038958, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 820, + "CustomerInfo": 67189704, + "PaymentType": "Cash" + }, + { + "Id": 11340, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-02-08T11:52:05", + "TransactionId": 95788086, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 168, + "CustomerInfo": 718928, + "PaymentType": "Cash" + }, + { + "Id": 11341, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2018-08-01T10:12:26", + "TransactionId": 703879, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 530, + "CustomerInfo": 51020581, + "PaymentType": "Debit Card" + }, + { + "Id": 11342, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2017-03-23T16:43:24", + "TransactionId": 55350110, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 138, + "CustomerInfo": 10720549, + "PaymentType": "Debit Card" + }, + { + "Id": 11343, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2016-09-20T13:08:41", + "TransactionId": 69419952, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 921, + "CustomerInfo": 75255020, + "PaymentType": "Credit Card" + }, + { + "Id": 11344, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2016-08-08T08:57:33", + "TransactionId": 47573441, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 128, + "CustomerInfo": 25757569, + "PaymentType": "Credit Card" + }, + { + "Id": 11345, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-10-02T10:22:48", + "TransactionId": 64902665, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 679, + "CustomerInfo": 80792711, + "PaymentType": "Credit Card" + }, + { + "Id": 11346, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2018-03-15T15:50:24", + "TransactionId": 91240828, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 998, + "CustomerInfo": 2420642, + "PaymentType": "Credit Card" + }, + { + "Id": 11347, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2017-04-15T19:24:23", + "TransactionId": 82117847, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 371, + "CustomerInfo": 5274938, + "PaymentType": "Cash" + }, + { + "Id": 11348, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-02-25T11:51:22", + "TransactionId": 4955105, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 868, + "CustomerInfo": 10516137, + "PaymentType": "Credit Card" + }, + { + "Id": 11349, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-04-09T11:34:39", + "TransactionId": 66427064, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 951, + "CustomerInfo": 46237582, + "PaymentType": "Debit Card" + }, + { + "Id": 11350, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-11-29T16:21:30", + "TransactionId": 24377894, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 186, + "CustomerInfo": 76941414, + "PaymentType": "Debit Card" + }, + { + "Id": 11351, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2016-05-23T07:38:21", + "TransactionId": 43070416, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 275, + "CustomerInfo": 43787582, + "PaymentType": "Cash" + }, + { + "Id": 11352, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-08-22T17:54:40", + "TransactionId": 1835128, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 922, + "CustomerInfo": 80239255, + "PaymentType": "Credit Card" + }, + { + "Id": 11353, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-03-16T11:52:05", + "TransactionId": 63323015, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 158, + "CustomerInfo": 40308791, + "PaymentType": "Credit Card" + }, + { + "Id": 11354, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-02-20T19:57:39", + "TransactionId": 78759329, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 578, + "CustomerInfo": 33410190, + "PaymentType": "Cash" + }, + { + "Id": 11355, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2019-03-13T16:45:16", + "TransactionId": 8730768, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 163, + "CustomerInfo": 66569229, + "PaymentType": "Debit Card" + }, + { + "Id": 11356, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-07-29T18:54:17", + "TransactionId": 14292909, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 197, + "CustomerInfo": 78392404, + "PaymentType": "Debit Card" + }, + { + "Id": 11357, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2018-01-30T14:57:33", + "TransactionId": 639670, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 297, + "CustomerInfo": 18918306, + "PaymentType": "Debit Card" + }, + { + "Id": 11358, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-04-12T12:52:51", + "TransactionId": 3686226, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 581, + "CustomerInfo": 90658883, + "PaymentType": "Debit Card" + }, + { + "Id": 11359, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2016-01-03T13:18:37", + "TransactionId": 92315392, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 285, + "CustomerInfo": 55680753, + "PaymentType": "Credit Card" + }, + { + "Id": 11360, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2018-04-19T07:38:30", + "TransactionId": 26562019, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 379, + "CustomerInfo": 65819115, + "PaymentType": "Credit Card" + }, + { + "Id": 11361, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-12-23T18:40:28", + "TransactionId": 57810840, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 50429945, + "PaymentType": "Credit Card" + }, + { + "Id": 11362, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2018-03-06T13:38:12", + "TransactionId": 28217368, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 210, + "CustomerInfo": 85047552, + "PaymentType": "Credit Card" + }, + { + "Id": 11363, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-02-02T19:21:56", + "TransactionId": 61104209, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 682, + "CustomerInfo": 29245493, + "PaymentType": "Debit Card" + }, + { + "Id": 11364, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2019-04-05T10:34:19", + "TransactionId": 50209673, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 822, + "CustomerInfo": 39812871, + "PaymentType": "Credit Card" + }, + { + "Id": 11365, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-10-20T09:07:47", + "TransactionId": 17303772, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 251, + "CustomerInfo": 11981833, + "PaymentType": "Credit Card" + }, + { + "Id": 11366, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-02-27T19:35:20", + "TransactionId": 62205484, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 229, + "CustomerInfo": 21004465, + "PaymentType": "Cash" + }, + { + "Id": 11367, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2017-05-11T16:12:00", + "TransactionId": 45203524, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 262, + "CustomerInfo": 34680493, + "PaymentType": "Cash" + }, + { + "Id": 11368, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2016-12-31T16:59:57", + "TransactionId": 19854619, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 27, + "CustomerInfo": 807347, + "PaymentType": "Cash" + }, + { + "Id": 11369, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2016-07-14T12:32:24", + "TransactionId": 13148921, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 962, + "CustomerInfo": 77427052, + "PaymentType": "Debit Card" + }, + { + "Id": 11370, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2019-03-06T19:57:30", + "TransactionId": 10614897, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 99, + "CustomerInfo": 1357928, + "PaymentType": "Credit Card" + }, + { + "Id": 11371, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-09-27T14:32:47", + "TransactionId": 57210449, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 668, + "CustomerInfo": 96281938, + "PaymentType": "Cash" + }, + { + "Id": 11372, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-04-01T07:07:49", + "TransactionId": 9770147, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 501, + "CustomerInfo": 84791803, + "PaymentType": "Debit Card" + }, + { + "Id": 11373, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-01-14T17:31:38", + "TransactionId": 93159849, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 648, + "CustomerInfo": 76138691, + "PaymentType": "Debit Card" + }, + { + "Id": 11374, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2019-08-09T18:24:03", + "TransactionId": 28636675, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 671, + "CustomerInfo": 31237477, + "PaymentType": "Credit Card" + }, + { + "Id": 11375, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2016-06-14T18:53:34", + "TransactionId": 39511315, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 222, + "CustomerInfo": 14863381, + "PaymentType": "Cash" + }, + { + "Id": 11376, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2017-12-25T10:20:04", + "TransactionId": 58037836, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 669, + "CustomerInfo": 19884352, + "PaymentType": "Debit Card" + }, + { + "Id": 11377, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-10-05T09:54:43", + "TransactionId": 46685458, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 170, + "CustomerInfo": 79964635, + "PaymentType": "Cash" + }, + { + "Id": 11378, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-05-06T12:22:45", + "TransactionId": 4344347, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 952, + "CustomerInfo": 57185174, + "PaymentType": "Credit Card" + }, + { + "Id": 11379, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2017-07-09T16:55:12", + "TransactionId": 11716325, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 977, + "CustomerInfo": 82193118, + "PaymentType": "Cash" + }, + { + "Id": 11380, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-03-17T14:50:12", + "TransactionId": 98751419, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 704, + "CustomerInfo": 48003124, + "PaymentType": "Credit Card" + }, + { + "Id": 11381, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2017-05-16T16:07:41", + "TransactionId": 84994067, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 10, + "CustomerInfo": 31940023, + "PaymentType": "Debit Card" + }, + { + "Id": 11382, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-08-28T15:47:23", + "TransactionId": 98345180, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 267, + "CustomerInfo": 44556688, + "PaymentType": "Credit Card" + }, + { + "Id": 11383, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-12-22T13:23:48", + "TransactionId": 1942245, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 77, + "CustomerInfo": 88557087, + "PaymentType": "Credit Card" + }, + { + "Id": 11384, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2018-03-15T18:08:12", + "TransactionId": 95530420, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 873, + "CustomerInfo": 3315862, + "PaymentType": "Debit Card" + }, + { + "Id": 11385, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-08-18T14:20:33", + "TransactionId": 10246981, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 153, + "CustomerInfo": 32441043, + "PaymentType": "Debit Card" + }, + { + "Id": 11386, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2017-11-02T15:21:36", + "TransactionId": 4774187, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 277, + "CustomerInfo": 3144019, + "PaymentType": "Credit Card" + }, + { + "Id": 11387, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2019-04-20T18:42:37", + "TransactionId": 88638404, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 31, + "CustomerInfo": 79203250, + "PaymentType": "Credit Card" + }, + { + "Id": 11388, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-02-10T12:10:39", + "TransactionId": 91583033, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 402, + "CustomerInfo": 10211543, + "PaymentType": "Debit Card" + }, + { + "Id": 11389, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-01-20T15:48:58", + "TransactionId": 12049714, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 836, + "CustomerInfo": 20354982, + "PaymentType": "Debit Card" + }, + { + "Id": 11390, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2017-03-17T09:25:03", + "TransactionId": 28672011, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 205, + "CustomerInfo": 46757441, + "PaymentType": "Credit Card" + }, + { + "Id": 11391, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2018-07-05T14:21:33", + "TransactionId": 43103462, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 306, + "CustomerInfo": 77698868, + "PaymentType": "Cash" + }, + { + "Id": 11392, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2016-08-14T10:01:38", + "TransactionId": 97570526, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 925, + "CustomerInfo": 33227456, + "PaymentType": "Debit Card" + }, + { + "Id": 11393, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2016-05-15T12:18:52", + "TransactionId": 67390980, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 469, + "CustomerInfo": 66590458, + "PaymentType": "Cash" + }, + { + "Id": 11394, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2017-04-08T15:16:25", + "TransactionId": 61288995, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 736, + "CustomerInfo": 80434282, + "PaymentType": "Debit Card" + }, + { + "Id": 11395, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2019-12-01T09:45:56", + "TransactionId": 55916622, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 258, + "CustomerInfo": 15374671, + "PaymentType": "Credit Card" + }, + { + "Id": 11396, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2018-04-21T13:39:13", + "TransactionId": 49370370, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 536, + "CustomerInfo": 34088054, + "PaymentType": "Credit Card" + }, + { + "Id": 11397, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2019-05-11T19:13:44", + "TransactionId": 38161686, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 578, + "CustomerInfo": 31653399, + "PaymentType": "Cash" + }, + { + "Id": 11398, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-07-08T17:05:00", + "TransactionId": 79896788, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 766, + "CustomerInfo": 77449438, + "PaymentType": "Credit Card" + }, + { + "Id": 11399, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2016-08-14T12:56:36", + "TransactionId": 74396761, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 359, + "CustomerInfo": 95506188, + "PaymentType": "Credit Card" + }, + { + "Id": 11400, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2018-02-03T13:16:11", + "TransactionId": 94595927, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 911, + "CustomerInfo": 77392897, + "PaymentType": "Debit Card" + }, + { + "Id": 11401, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2018-02-03T16:35:54", + "TransactionId": 78321885, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 19, + "CustomerInfo": 70804670, + "PaymentType": "Cash" + }, + { + "Id": 11402, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2019-05-01T18:35:17", + "TransactionId": 58929336, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 848, + "CustomerInfo": 91623491, + "PaymentType": "Credit Card" + }, + { + "Id": 11403, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2017-06-08T11:41:43", + "TransactionId": 39424707, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 367, + "CustomerInfo": 30466444, + "PaymentType": "Cash" + }, + { + "Id": 11404, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-07-31T13:59:05", + "TransactionId": 84615100, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 921, + "CustomerInfo": 79914295, + "PaymentType": "Credit Card" + }, + { + "Id": 11405, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2019-05-31T19:16:02", + "TransactionId": 16059196, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 953, + "CustomerInfo": 68655206, + "PaymentType": "Credit Card" + }, + { + "Id": 11406, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2017-03-26T10:32:36", + "TransactionId": 72864798, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 258, + "CustomerInfo": 56084509, + "PaymentType": "Credit Card" + }, + { + "Id": 11407, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-07-18T11:42:26", + "TransactionId": 61592296, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 589, + "CustomerInfo": 67006549, + "PaymentType": "Debit Card" + }, + { + "Id": 11408, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-02-05T19:06:23", + "TransactionId": 52761293, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 290, + "CustomerInfo": 95280162, + "PaymentType": "Debit Card" + }, + { + "Id": 11409, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-05-20T07:02:30", + "TransactionId": 83605143, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 90, + "CustomerInfo": 32172028, + "PaymentType": "Credit Card" + }, + { + "Id": 11410, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-06-16T11:57:16", + "TransactionId": 48481220, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 1000, + "CustomerInfo": 19942921, + "PaymentType": "Credit Card" + }, + { + "Id": 11411, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-05-07T09:44:12", + "TransactionId": 51343825, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 609, + "CustomerInfo": 58593870, + "PaymentType": "Cash" + }, + { + "Id": 11412, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-12-09T18:01:52", + "TransactionId": 80494113, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 521, + "CustomerInfo": 38816253, + "PaymentType": "Cash" + }, + { + "Id": 11413, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-09-14T15:22:36", + "TransactionId": 57954770, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 590, + "CustomerInfo": 16228045, + "PaymentType": "Credit Card" + }, + { + "Id": 11414, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2019-08-14T13:05:31", + "TransactionId": 42629678, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 175, + "CustomerInfo": 30885598, + "PaymentType": "Debit Card" + }, + { + "Id": 11415, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-08-05T17:56:59", + "TransactionId": 97513370, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 974, + "CustomerInfo": 82105701, + "PaymentType": "Cash" + }, + { + "Id": 11416, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2017-11-24T10:40:31", + "TransactionId": 18148858, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 203, + "CustomerInfo": 11067189, + "PaymentType": "Debit Card" + }, + { + "Id": 11417, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2019-05-20T19:30:52", + "TransactionId": 84543357, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 328, + "CustomerInfo": 45043501, + "PaymentType": "Credit Card" + }, + { + "Id": 11418, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2018-01-20T15:15:33", + "TransactionId": 51828331, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 372, + "CustomerInfo": 59318317, + "PaymentType": "Cash" + }, + { + "Id": 11419, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2019-09-04T12:59:20", + "TransactionId": 12570123, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 602, + "CustomerInfo": 94736068, + "PaymentType": "Debit Card" + }, + { + "Id": 11420, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-03-12T18:03:27", + "TransactionId": 1594973, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 731, + "CustomerInfo": 79067463, + "PaymentType": "Debit Card" + }, + { + "Id": 11421, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2017-06-23T09:39:19", + "TransactionId": 20937495, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 626, + "CustomerInfo": 13538733, + "PaymentType": "Debit Card" + }, + { + "Id": 11422, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-05-20T12:51:50", + "TransactionId": 69873439, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 619, + "CustomerInfo": 71899476, + "PaymentType": "Debit Card" + }, + { + "Id": 11423, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-03-07T19:02:47", + "TransactionId": 92763619, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 659, + "CustomerInfo": 54206250, + "PaymentType": "Credit Card" + }, + { + "Id": 11424, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-03-11T08:22:16", + "TransactionId": 26558219, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 463, + "CustomerInfo": 44831910, + "PaymentType": "Cash" + }, + { + "Id": 11425, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2019-08-21T18:44:12", + "TransactionId": 44925260, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 987, + "CustomerInfo": 89233422, + "PaymentType": "Debit Card" + }, + { + "Id": 11426, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-03-15T14:01:49", + "TransactionId": 59824356, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 756, + "CustomerInfo": 54693803, + "PaymentType": "Credit Card" + }, + { + "Id": 11427, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2017-02-05T07:16:54", + "TransactionId": 62853271, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 970, + "CustomerInfo": 62641954, + "PaymentType": "Debit Card" + }, + { + "Id": 11428, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2016-12-22T12:54:00", + "TransactionId": 8383110, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 998, + "CustomerInfo": 78865771, + "PaymentType": "Debit Card" + }, + { + "Id": 11429, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-10-30T12:36:00", + "TransactionId": 52397281, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 338, + "CustomerInfo": 12021461, + "PaymentType": "Cash" + }, + { + "Id": 11430, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-11-03T10:01:29", + "TransactionId": 25721344, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 323, + "CustomerInfo": 62038334, + "PaymentType": "Cash" + }, + { + "Id": 11431, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2017-07-18T11:53:23", + "TransactionId": 74081591, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 619, + "CustomerInfo": 51779223, + "PaymentType": "Credit Card" + }, + { + "Id": 11432, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-01-10T15:40:54", + "TransactionId": 39003695, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 361, + "CustomerInfo": 84066622, + "PaymentType": "Cash" + }, + { + "Id": 11433, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2016-04-06T14:49:03", + "TransactionId": 37051473, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 455, + "CustomerInfo": 22007256, + "PaymentType": "Credit Card" + }, + { + "Id": 11434, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-09-23T10:33:10", + "TransactionId": 59720902, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 598, + "CustomerInfo": 59486637, + "PaymentType": "Cash" + }, + { + "Id": 11435, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2017-05-20T17:28:28", + "TransactionId": 28819446, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 107, + "CustomerInfo": 58499041, + "PaymentType": "Cash" + }, + { + "Id": 11436, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2019-05-21T16:27:42", + "TransactionId": 37458994, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 784, + "CustomerInfo": 4749414, + "PaymentType": "Credit Card" + }, + { + "Id": 11437, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2018-10-06T08:35:57", + "TransactionId": 50284502, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 14, + "CustomerInfo": 96419454, + "PaymentType": "Credit Card" + }, + { + "Id": 11438, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-03-10T19:47:08", + "TransactionId": 82584084, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 339, + "CustomerInfo": 51188504, + "PaymentType": "Credit Card" + }, + { + "Id": 11439, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2018-11-29T11:51:30", + "TransactionId": 89716988, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 830, + "CustomerInfo": 64681451, + "PaymentType": "Cash" + }, + { + "Id": 11440, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2018-07-27T16:39:56", + "TransactionId": 80937754, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 481, + "CustomerInfo": 97327548, + "PaymentType": "Debit Card" + }, + { + "Id": 11441, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-08-15T10:20:21", + "TransactionId": 9968179, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 88268046, + "PaymentType": "Cash" + }, + { + "Id": 11442, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-12-20T13:45:42", + "TransactionId": 2183348, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 574, + "CustomerInfo": 14417325, + "PaymentType": "Debit Card" + }, + { + "Id": 11443, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-08-15T19:13:26", + "TransactionId": 72697650, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 427, + "CustomerInfo": 39120922, + "PaymentType": "Credit Card" + }, + { + "Id": 11444, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-01-14T12:10:39", + "TransactionId": 70001538, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 468, + "CustomerInfo": 66041816, + "PaymentType": "Debit Card" + }, + { + "Id": 11445, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2016-11-07T13:35:46", + "TransactionId": 16853986, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 326, + "CustomerInfo": 5645597, + "PaymentType": "Credit Card" + }, + { + "Id": 11446, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2018-11-16T12:20:18", + "TransactionId": 22398417, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 6, + "CustomerInfo": 57283435, + "PaymentType": "Cash" + }, + { + "Id": 11447, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2018-05-22T19:19:12", + "TransactionId": 43385608, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 258, + "CustomerInfo": 56969317, + "PaymentType": "Debit Card" + }, + { + "Id": 11448, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-05-31T15:16:42", + "TransactionId": 41981011, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 942, + "CustomerInfo": 58631721, + "PaymentType": "Cash" + }, + { + "Id": 11449, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-01-04T15:07:55", + "TransactionId": 44697892, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 218, + "CustomerInfo": 23234861, + "PaymentType": "Credit Card" + }, + { + "Id": 11450, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-06-15T07:06:06", + "TransactionId": 72501971, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 662, + "CustomerInfo": 39475709, + "PaymentType": "Credit Card" + }, + { + "Id": 11451, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-01-26T10:08:15", + "TransactionId": 55074223, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 270, + "CustomerInfo": 83525012, + "PaymentType": "Cash" + }, + { + "Id": 11452, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2019-04-29T15:02:27", + "TransactionId": 40608681, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 374, + "CustomerInfo": 94553488, + "PaymentType": "Debit Card" + }, + { + "Id": 11453, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-01-08T07:19:47", + "TransactionId": 29220074, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 588, + "CustomerInfo": 86251719, + "PaymentType": "Credit Card" + }, + { + "Id": 11454, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2016-11-27T18:36:17", + "TransactionId": 37876217, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 101, + "CustomerInfo": 46415071, + "PaymentType": "Cash" + }, + { + "Id": 11455, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-07-08T14:03:33", + "TransactionId": 81596255, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 490, + "CustomerInfo": 47486058, + "PaymentType": "Debit Card" + }, + { + "Id": 11456, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2018-04-23T13:05:23", + "TransactionId": 88193818, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 635, + "CustomerInfo": 80453378, + "PaymentType": "Credit Card" + }, + { + "Id": 11457, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2017-02-14T14:28:45", + "TransactionId": 84019128, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 182, + "CustomerInfo": 96996344, + "PaymentType": "Debit Card" + }, + { + "Id": 11458, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2019-07-22T09:04:54", + "TransactionId": 86601551, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 15, + "CustomerInfo": 7870720, + "PaymentType": "Cash" + }, + { + "Id": 11459, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2017-08-04T16:36:46", + "TransactionId": 75726394, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 727, + "CustomerInfo": 15757974, + "PaymentType": "Cash" + }, + { + "Id": 11460, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-11-09T13:30:00", + "TransactionId": 22863160, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 608, + "CustomerInfo": 5414227, + "PaymentType": "Debit Card" + }, + { + "Id": 11461, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-05-01T09:00:43", + "TransactionId": 46292398, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 878, + "CustomerInfo": 41413743, + "PaymentType": "Debit Card" + }, + { + "Id": 11462, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2017-06-29T17:54:23", + "TransactionId": 78364554, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 189, + "CustomerInfo": 17844709, + "PaymentType": "Debit Card" + }, + { + "Id": 11463, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2017-09-02T15:06:03", + "TransactionId": 36570296, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 700, + "CustomerInfo": 54476687, + "PaymentType": "Credit Card" + }, + { + "Id": 11464, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-12-22T13:40:48", + "TransactionId": 43876341, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 547, + "CustomerInfo": 5591703, + "PaymentType": "Debit Card" + }, + { + "Id": 11465, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2017-11-06T15:56:53", + "TransactionId": 41257111, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 597, + "CustomerInfo": 36543876, + "PaymentType": "Cash" + }, + { + "Id": 11466, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2017-12-03T13:00:20", + "TransactionId": 55901773, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 258, + "CustomerInfo": 66223871, + "PaymentType": "Debit Card" + }, + { + "Id": 11467, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-04-24T07:33:19", + "TransactionId": 23267019, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 262, + "CustomerInfo": 8949713, + "PaymentType": "Cash" + }, + { + "Id": 11468, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2019-05-10T17:44:10", + "TransactionId": 90496791, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 359, + "CustomerInfo": 91748119, + "PaymentType": "Cash" + }, + { + "Id": 11469, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2016-06-09T07:53:02", + "TransactionId": 44059874, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 773, + "CustomerInfo": 73940146, + "PaymentType": "Debit Card" + }, + { + "Id": 11470, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-11-09T17:27:10", + "TransactionId": 75851996, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 430, + "CustomerInfo": 67449837, + "PaymentType": "Credit Card" + }, + { + "Id": 11471, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-06-29T08:42:17", + "TransactionId": 52051019, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 953, + "CustomerInfo": 85278995, + "PaymentType": "Debit Card" + }, + { + "Id": 11472, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2017-03-28T14:12:55", + "TransactionId": 27274953, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 983, + "CustomerInfo": 5831027, + "PaymentType": "Debit Card" + }, + { + "Id": 11473, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2016-04-19T12:24:12", + "TransactionId": 62265681, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 184, + "CustomerInfo": 1873188, + "PaymentType": "Debit Card" + }, + { + "Id": 11474, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2019-05-14T10:12:35", + "TransactionId": 23369918, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 818, + "CustomerInfo": 70809500, + "PaymentType": "Credit Card" + }, + { + "Id": 11475, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-08-20T07:59:40", + "TransactionId": 358908, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 10, + "CustomerInfo": 34451190, + "PaymentType": "Credit Card" + }, + { + "Id": 11476, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2016-08-17T12:03:19", + "TransactionId": 49387344, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 948, + "CustomerInfo": 60129914, + "PaymentType": "Debit Card" + }, + { + "Id": 11477, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-08-28T15:05:46", + "TransactionId": 72869963, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 197, + "CustomerInfo": 50149895, + "PaymentType": "Credit Card" + }, + { + "Id": 11478, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2017-06-27T09:24:03", + "TransactionId": 26787482, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 119, + "CustomerInfo": 27636385, + "PaymentType": "Debit Card" + }, + { + "Id": 11479, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2018-07-26T19:03:04", + "TransactionId": 31918901, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 992, + "CustomerInfo": 14310954, + "PaymentType": "Cash" + }, + { + "Id": 11480, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-02-25T14:57:16", + "TransactionId": 86758178, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 199, + "CustomerInfo": 21073163, + "PaymentType": "Debit Card" + }, + { + "Id": 11481, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2016-12-30T16:29:25", + "TransactionId": 66576374, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 210, + "CustomerInfo": 81578254, + "PaymentType": "Credit Card" + }, + { + "Id": 11482, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2017-10-27T18:06:03", + "TransactionId": 32442993, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 224, + "CustomerInfo": 89046763, + "PaymentType": "Credit Card" + }, + { + "Id": 11483, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2016-12-21T13:19:55", + "TransactionId": 99983665, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 622, + "CustomerInfo": 15498021, + "PaymentType": "Cash" + }, + { + "Id": 11484, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2018-09-30T11:21:59", + "TransactionId": 32728691, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 770, + "CustomerInfo": 45345527, + "PaymentType": "Cash" + }, + { + "Id": 11485, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2016-02-27T18:17:17", + "TransactionId": 59751295, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 54, + "CustomerInfo": 48006603, + "PaymentType": "Cash" + }, + { + "Id": 11486, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2018-11-12T13:16:45", + "TransactionId": 32091672, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 32, + "CustomerInfo": 74566880, + "PaymentType": "Cash" + }, + { + "Id": 11487, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2019-08-30T16:58:39", + "TransactionId": 49092220, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 767, + "CustomerInfo": 26211431, + "PaymentType": "Cash" + }, + { + "Id": 11488, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2017-10-05T08:44:10", + "TransactionId": 54844860, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 267, + "CustomerInfo": 61445392, + "PaymentType": "Debit Card" + }, + { + "Id": 11489, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-08-08T08:00:06", + "TransactionId": 5870542, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 272, + "CustomerInfo": 14655126, + "PaymentType": "Credit Card" + }, + { + "Id": 11490, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2016-06-20T12:53:25", + "TransactionId": 38026017, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 683, + "CustomerInfo": 74879211, + "PaymentType": "Credit Card" + }, + { + "Id": 11491, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-01-14T13:28:42", + "TransactionId": 76172649, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 248, + "CustomerInfo": 90053309, + "PaymentType": "Credit Card" + }, + { + "Id": 11492, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-04-08T12:19:09", + "TransactionId": 51062860, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 31, + "CustomerInfo": 5534409, + "PaymentType": "Debit Card" + }, + { + "Id": 11493, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2018-01-22T08:13:21", + "TransactionId": 64853006, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 150, + "CustomerInfo": 6893982, + "PaymentType": "Cash" + }, + { + "Id": 11494, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2016-04-14T11:22:25", + "TransactionId": 33720439, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 621, + "CustomerInfo": 43488702, + "PaymentType": "Cash" + }, + { + "Id": 11495, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-06-06T07:01:29", + "TransactionId": 29064973, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 667, + "CustomerInfo": 72060168, + "PaymentType": "Cash" + }, + { + "Id": 11496, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2016-07-06T14:09:19", + "TransactionId": 89284781, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 933, + "CustomerInfo": 35221744, + "PaymentType": "Debit Card" + }, + { + "Id": 11497, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2018-09-14T07:06:06", + "TransactionId": 10846, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 592, + "CustomerInfo": 37920241, + "PaymentType": "Debit Card" + }, + { + "Id": 11498, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-03-03T08:27:36", + "TransactionId": 28484056, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 912, + "CustomerInfo": 91451901, + "PaymentType": "Debit Card" + }, + { + "Id": 11499, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2017-06-15T19:01:55", + "TransactionId": 9077427, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 212, + "CustomerInfo": 91508864, + "PaymentType": "Debit Card" + }, + { + "Id": 11500, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-03-04T15:01:09", + "TransactionId": 49902397, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 72929539, + "PaymentType": "Cash" + }, + { + "Id": 11501, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-06-05T09:30:32", + "TransactionId": 9039387, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 765, + "CustomerInfo": 59620691, + "PaymentType": "Cash" + }, + { + "Id": 11502, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2016-03-13T07:17:02", + "TransactionId": 23169198, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 126, + "CustomerInfo": 22519155, + "PaymentType": "Debit Card" + }, + { + "Id": 11503, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2017-09-18T13:54:12", + "TransactionId": 94651863, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 61546534, + "PaymentType": "Debit Card" + }, + { + "Id": 11504, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-12-18T14:19:24", + "TransactionId": 57276496, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 28, + "CustomerInfo": 94727201, + "PaymentType": "Cash" + }, + { + "Id": 11505, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-09-25T14:16:05", + "TransactionId": 21471719, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 808, + "CustomerInfo": 72623439, + "PaymentType": "Debit Card" + }, + { + "Id": 11506, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-11-14T15:10:05", + "TransactionId": 87263076, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 24, + "CustomerInfo": 40368327, + "PaymentType": "Credit Card" + }, + { + "Id": 11507, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-10-28T17:02:15", + "TransactionId": 77157787, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 707, + "CustomerInfo": 14853248, + "PaymentType": "Cash" + }, + { + "Id": 11508, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2018-05-25T17:26:01", + "TransactionId": 8984119, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 602, + "CustomerInfo": 11353316, + "PaymentType": "Credit Card" + }, + { + "Id": 11509, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2016-05-04T13:40:05", + "TransactionId": 52786096, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 394, + "CustomerInfo": 2523875, + "PaymentType": "Cash" + }, + { + "Id": 11510, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2017-11-28T08:28:28", + "TransactionId": 26232600, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 955, + "CustomerInfo": 35823282, + "PaymentType": "Cash" + }, + { + "Id": 11511, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2016-06-07T08:59:43", + "TransactionId": 60875230, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 320, + "CustomerInfo": 86112206, + "PaymentType": "Debit Card" + }, + { + "Id": 11512, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2017-01-18T19:27:07", + "TransactionId": 24041521, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 562, + "CustomerInfo": 53313697, + "PaymentType": "Cash" + }, + { + "Id": 11513, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2019-02-22T10:33:36", + "TransactionId": 12102905, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 736, + "CustomerInfo": 19494940, + "PaymentType": "Cash" + }, + { + "Id": 11514, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2016-03-25T16:23:05", + "TransactionId": 96325414, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 991, + "CustomerInfo": 95294529, + "PaymentType": "Credit Card" + }, + { + "Id": 11515, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2018-02-17T09:57:10", + "TransactionId": 22102957, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 517, + "CustomerInfo": 89989424, + "PaymentType": "Debit Card" + }, + { + "Id": 11516, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2016-05-21T13:06:58", + "TransactionId": 94641807, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 603, + "CustomerInfo": 5959331, + "PaymentType": "Cash" + }, + { + "Id": 11517, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-01-11T11:31:47", + "TransactionId": 50744541, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 284, + "CustomerInfo": 11609213, + "PaymentType": "Debit Card" + }, + { + "Id": 11518, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-03-23T07:25:58", + "TransactionId": 81594269, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 701, + "CustomerInfo": 35372416, + "PaymentType": "Debit Card" + }, + { + "Id": 11519, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2019-07-04T15:15:33", + "TransactionId": 40158827, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 393, + "CustomerInfo": 56705333, + "PaymentType": "Debit Card" + }, + { + "Id": 11520, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-07-13T15:56:53", + "TransactionId": 86895309, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 806, + "CustomerInfo": 64473660, + "PaymentType": "Credit Card" + }, + { + "Id": 11521, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2019-11-12T13:44:50", + "TransactionId": 22883161, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 759, + "CustomerInfo": 17213057, + "PaymentType": "Credit Card" + }, + { + "Id": 11522, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2019-08-10T11:45:53", + "TransactionId": 26098469, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 711, + "CustomerInfo": 98097263, + "PaymentType": "Credit Card" + }, + { + "Id": 11523, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-05-01T15:15:16", + "TransactionId": 3771076, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 492, + "CustomerInfo": 31352057, + "PaymentType": "Debit Card" + }, + { + "Id": 11524, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2016-02-07T18:09:39", + "TransactionId": 62203765, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 286, + "CustomerInfo": 33448621, + "PaymentType": "Debit Card" + }, + { + "Id": 11525, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2018-05-27T18:22:02", + "TransactionId": 48598997, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 845, + "CustomerInfo": 48609710, + "PaymentType": "Debit Card" + }, + { + "Id": 11526, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2019-06-13T19:50:01", + "TransactionId": 91502775, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 94, + "CustomerInfo": 84667932, + "PaymentType": "Cash" + }, + { + "Id": 11527, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2019-11-19T10:17:46", + "TransactionId": 97097724, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 195, + "CustomerInfo": 33988173, + "PaymentType": "Debit Card" + }, + { + "Id": 11528, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2018-09-18T15:10:22", + "TransactionId": 41792791, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 776, + "CustomerInfo": 59801242, + "PaymentType": "Debit Card" + }, + { + "Id": 11529, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2018-05-27T13:13:44", + "TransactionId": 62301218, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 162, + "CustomerInfo": 48530787, + "PaymentType": "Cash" + }, + { + "Id": 11530, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2018-03-08T19:59:23", + "TransactionId": 30234885, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 957, + "CustomerInfo": 77361170, + "PaymentType": "Debit Card" + }, + { + "Id": 11531, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2016-04-18T07:35:20", + "TransactionId": 93404771, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 365, + "CustomerInfo": 80474585, + "PaymentType": "Credit Card" + }, + { + "Id": 11532, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2016-12-26T09:28:57", + "TransactionId": 87278477, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 61, + "CustomerInfo": 16291569, + "PaymentType": "Credit Card" + }, + { + "Id": 11533, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2019-08-06T19:57:48", + "TransactionId": 4578103, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 127, + "CustomerInfo": 10686926, + "PaymentType": "Credit Card" + }, + { + "Id": 11534, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2017-08-29T19:54:20", + "TransactionId": 88367714, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 96421628, + "PaymentType": "Cash" + }, + { + "Id": 11535, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-09-28T13:30:52", + "TransactionId": 49552194, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 412, + "CustomerInfo": 56100389, + "PaymentType": "Cash" + }, + { + "Id": 11536, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-12-15T14:42:00", + "TransactionId": 75398628, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 286, + "CustomerInfo": 81657679, + "PaymentType": "Credit Card" + }, + { + "Id": 11537, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-10-29T18:02:36", + "TransactionId": 66388664, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 128, + "CustomerInfo": 51177639, + "PaymentType": "Debit Card" + }, + { + "Id": 11538, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-10-13T12:36:26", + "TransactionId": 77884791, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 692, + "CustomerInfo": 28655992, + "PaymentType": "Debit Card" + }, + { + "Id": 11539, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-12-15T09:22:19", + "TransactionId": 2008095, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 428, + "CustomerInfo": 8116204, + "PaymentType": "Credit Card" + }, + { + "Id": 11540, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-01-15T17:23:08", + "TransactionId": 85149888, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 664, + "CustomerInfo": 29807611, + "PaymentType": "Cash" + }, + { + "Id": 11541, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2017-02-09T07:33:27", + "TransactionId": 45636482, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 18, + "CustomerInfo": 86891291, + "PaymentType": "Cash" + }, + { + "Id": 11542, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-04-30T11:23:25", + "TransactionId": 90100974, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 636, + "CustomerInfo": 51972627, + "PaymentType": "Cash" + }, + { + "Id": 11543, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2019-07-25T11:10:28", + "TransactionId": 49974684, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 88980946, + "PaymentType": "Credit Card" + }, + { + "Id": 11544, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-06-27T19:27:42", + "TransactionId": 64100351, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 322, + "CustomerInfo": 14467112, + "PaymentType": "Credit Card" + }, + { + "Id": 11545, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2018-06-22T16:02:38", + "TransactionId": 55044344, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 22, + "CustomerInfo": 13286675, + "PaymentType": "Cash" + }, + { + "Id": 11546, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2019-02-28T19:21:30", + "TransactionId": 70533258, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 642, + "CustomerInfo": 98001317, + "PaymentType": "Cash" + }, + { + "Id": 11547, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-05-27T17:20:15", + "TransactionId": 17777611, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 615, + "CustomerInfo": 99854408, + "PaymentType": "Credit Card" + }, + { + "Id": 11548, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2016-07-17T09:02:10", + "TransactionId": 7514326, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 91, + "CustomerInfo": 36194708, + "PaymentType": "Cash" + }, + { + "Id": 11549, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2017-09-05T07:01:55", + "TransactionId": 13343051, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 465, + "CustomerInfo": 50569571, + "PaymentType": "Cash" + }, + { + "Id": 11550, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2018-07-16T19:15:36", + "TransactionId": 40430082, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 885, + "CustomerInfo": 64084913, + "PaymentType": "Credit Card" + }, + { + "Id": 11551, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-12-28T11:26:36", + "TransactionId": 99393434, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 56, + "CustomerInfo": 18762584, + "PaymentType": "Credit Card" + }, + { + "Id": 11552, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-05-23T14:11:46", + "TransactionId": 39563383, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 74, + "CustomerInfo": 19494121, + "PaymentType": "Debit Card" + }, + { + "Id": 11553, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-11-21T07:38:56", + "TransactionId": 73499320, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 951, + "CustomerInfo": 12755866, + "PaymentType": "Debit Card" + }, + { + "Id": 11554, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2017-01-06T11:07:44", + "TransactionId": 91215455, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 928, + "CustomerInfo": 70401183, + "PaymentType": "Cash" + }, + { + "Id": 11555, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-02-22T11:32:38", + "TransactionId": 74582495, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 731, + "CustomerInfo": 14336220, + "PaymentType": "Credit Card" + }, + { + "Id": 11556, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-06-10T07:17:11", + "TransactionId": 81496702, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 5489110, + "PaymentType": "Cash" + }, + { + "Id": 11557, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-09-11T08:27:53", + "TransactionId": 25446541, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 48, + "CustomerInfo": 64723526, + "PaymentType": "Cash" + }, + { + "Id": 11558, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2019-10-23T14:52:05", + "TransactionId": 16177019, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 735, + "CustomerInfo": 19231558, + "PaymentType": "Cash" + }, + { + "Id": 11559, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2017-02-16T16:20:30", + "TransactionId": 95593404, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 330, + "CustomerInfo": 9190736, + "PaymentType": "Credit Card" + }, + { + "Id": 11560, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-12-03T18:36:35", + "TransactionId": 82257475, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 930, + "CustomerInfo": 21951377, + "PaymentType": "Cash" + }, + { + "Id": 11561, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2017-08-12T07:46:16", + "TransactionId": 20506014, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 589, + "CustomerInfo": 52639797, + "PaymentType": "Credit Card" + }, + { + "Id": 11562, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2019-08-12T14:14:30", + "TransactionId": 95928467, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 86, + "CustomerInfo": 98380064, + "PaymentType": "Credit Card" + }, + { + "Id": 11563, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-11-04T10:10:25", + "TransactionId": 3703646, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 309, + "CustomerInfo": 72582394, + "PaymentType": "Credit Card" + }, + { + "Id": 11564, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2016-08-16T08:13:29", + "TransactionId": 54096119, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 614, + "CustomerInfo": 90537637, + "PaymentType": "Debit Card" + }, + { + "Id": 11565, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-02-13T13:54:55", + "TransactionId": 66082647, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 182, + "CustomerInfo": 96588433, + "PaymentType": "Cash" + }, + { + "Id": 11566, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2017-11-09T08:26:27", + "TransactionId": 67801090, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 446, + "CustomerInfo": 44141443, + "PaymentType": "Credit Card" + }, + { + "Id": 11567, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-03-23T18:39:10", + "TransactionId": 88500036, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 403, + "CustomerInfo": 46457350, + "PaymentType": "Debit Card" + }, + { + "Id": 11568, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2018-10-02T14:51:13", + "TransactionId": 36142739, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 885, + "CustomerInfo": 93416193, + "PaymentType": "Credit Card" + }, + { + "Id": 11569, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2016-04-24T19:26:15", + "TransactionId": 94533156, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 238, + "CustomerInfo": 36559705, + "PaymentType": "Cash" + }, + { + "Id": 11570, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2017-09-09T12:18:17", + "TransactionId": 32637093, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 379, + "CustomerInfo": 73934546, + "PaymentType": "Cash" + }, + { + "Id": 11571, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-02-12T10:14:18", + "TransactionId": 49000623, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 133, + "CustomerInfo": 55648866, + "PaymentType": "Cash" + }, + { + "Id": 11572, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2017-05-22T14:27:01", + "TransactionId": 38445934, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 180, + "CustomerInfo": 18751895, + "PaymentType": "Credit Card" + }, + { + "Id": 11573, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2018-07-18T17:31:03", + "TransactionId": 62383082, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 970, + "CustomerInfo": 33772682, + "PaymentType": "Cash" + }, + { + "Id": 11574, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2017-05-21T15:08:04", + "TransactionId": 54418630, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 250, + "CustomerInfo": 70451044, + "PaymentType": "Cash" + }, + { + "Id": 11575, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2016-03-23T10:14:27", + "TransactionId": 2920823, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 724, + "CustomerInfo": 74432238, + "PaymentType": "Cash" + }, + { + "Id": 11576, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-02-07T13:56:56", + "TransactionId": 70144363, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 498, + "CustomerInfo": 40959398, + "PaymentType": "Debit Card" + }, + { + "Id": 11577, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-04-01T15:07:29", + "TransactionId": 69405671, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 796, + "CustomerInfo": 60306019, + "PaymentType": "Debit Card" + }, + { + "Id": 11578, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2017-12-18T16:16:19", + "TransactionId": 69581225, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 963, + "CustomerInfo": 13777570, + "PaymentType": "Debit Card" + }, + { + "Id": 11579, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2018-07-29T11:17:48", + "TransactionId": 75420838, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 932, + "CustomerInfo": 93680265, + "PaymentType": "Debit Card" + }, + { + "Id": 11580, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-09-30T07:36:37", + "TransactionId": 42525076, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 696, + "CustomerInfo": 36231960, + "PaymentType": "Debit Card" + }, + { + "Id": 11581, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-11-12T15:04:11", + "TransactionId": 6853464, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 191, + "CustomerInfo": 42415803, + "PaymentType": "Credit Card" + }, + { + "Id": 11582, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2018-06-25T13:57:04", + "TransactionId": 63400213, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 14, + "CustomerInfo": 28297370, + "PaymentType": "Debit Card" + }, + { + "Id": 11583, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-11-13T10:59:05", + "TransactionId": 38674524, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 745, + "CustomerInfo": 82903895, + "PaymentType": "Cash" + }, + { + "Id": 11584, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2016-12-01T17:26:36", + "TransactionId": 22052798, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 734, + "CustomerInfo": 62780008, + "PaymentType": "Credit Card" + }, + { + "Id": 11585, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-09-02T16:44:07", + "TransactionId": 39483662, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 234, + "CustomerInfo": 27585029, + "PaymentType": "Credit Card" + }, + { + "Id": 11586, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2016-04-15T15:58:28", + "TransactionId": 6798118, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 58562849, + "PaymentType": "Credit Card" + }, + { + "Id": 11587, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2018-07-30T07:50:44", + "TransactionId": 45658, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 542, + "CustomerInfo": 60819839, + "PaymentType": "Cash" + }, + { + "Id": 11588, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-04-17T07:33:36", + "TransactionId": 48391242, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 48, + "CustomerInfo": 69078664, + "PaymentType": "Debit Card" + }, + { + "Id": 11589, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-03-03T16:21:13", + "TransactionId": 77555330, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 994, + "CustomerInfo": 2700577, + "PaymentType": "Credit Card" + }, + { + "Id": 11590, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2019-05-27T09:15:42", + "TransactionId": 39862944, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 753, + "CustomerInfo": 42491806, + "PaymentType": "Debit Card" + }, + { + "Id": 11591, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-07-16T19:15:10", + "TransactionId": 95119832, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 905, + "CustomerInfo": 84023640, + "PaymentType": "Cash" + }, + { + "Id": 11592, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2018-05-05T12:52:51", + "TransactionId": 85058633, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 477, + "CustomerInfo": 46759435, + "PaymentType": "Debit Card" + }, + { + "Id": 11593, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-10-17T13:04:05", + "TransactionId": 94895236, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 844, + "CustomerInfo": 97861846, + "PaymentType": "Debit Card" + }, + { + "Id": 11594, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-12-30T15:33:50", + "TransactionId": 28751227, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 567, + "CustomerInfo": 26654142, + "PaymentType": "Debit Card" + }, + { + "Id": 11595, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2016-10-05T11:53:57", + "TransactionId": 2164135, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 687, + "CustomerInfo": 36863650, + "PaymentType": "Credit Card" + }, + { + "Id": 11596, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-12-15T17:30:55", + "TransactionId": 4151117, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 278, + "CustomerInfo": 50238507, + "PaymentType": "Debit Card" + }, + { + "Id": 11597, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2016-12-13T10:33:10", + "TransactionId": 15751536, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 136, + "CustomerInfo": 20097204, + "PaymentType": "Cash" + }, + { + "Id": 11598, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-11-19T10:44:50", + "TransactionId": 82154010, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 826, + "CustomerInfo": 83022873, + "PaymentType": "Credit Card" + }, + { + "Id": 11599, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2017-08-05T11:29:28", + "TransactionId": 65876202, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 313, + "CustomerInfo": 63594820, + "PaymentType": "Credit Card" + }, + { + "Id": 11600, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2019-06-11T17:46:36", + "TransactionId": 88091503, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 27, + "CustomerInfo": 48433340, + "PaymentType": "Debit Card" + }, + { + "Id": 11601, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2016-03-19T09:30:58", + "TransactionId": 74790167, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 955, + "CustomerInfo": 20031764, + "PaymentType": "Credit Card" + }, + { + "Id": 11602, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-08-20T16:12:09", + "TransactionId": 4953775, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 362, + "CustomerInfo": 36533807, + "PaymentType": "Credit Card" + }, + { + "Id": 11603, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2017-05-08T14:35:40", + "TransactionId": 84219127, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 458, + "CustomerInfo": 37139978, + "PaymentType": "Credit Card" + }, + { + "Id": 11604, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-10-13T09:00:26", + "TransactionId": 2038625, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 337, + "CustomerInfo": 83906833, + "PaymentType": "Cash" + }, + { + "Id": 11605, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2017-05-28T19:53:37", + "TransactionId": 31529580, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 30704560, + "PaymentType": "Debit Card" + }, + { + "Id": 11606, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2018-10-11T09:58:36", + "TransactionId": 71811956, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 783, + "CustomerInfo": 69878256, + "PaymentType": "Credit Card" + }, + { + "Id": 11607, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2018-07-23T10:20:38", + "TransactionId": 46451210, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 23, + "CustomerInfo": 18984404, + "PaymentType": "Cash" + }, + { + "Id": 11608, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-05-12T18:23:11", + "TransactionId": 52317727, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 907, + "CustomerInfo": 98054165, + "PaymentType": "Credit Card" + }, + { + "Id": 11609, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-10-04T13:27:59", + "TransactionId": 26498059, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 46, + "CustomerInfo": 79905834, + "PaymentType": "Debit Card" + }, + { + "Id": 11610, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-08-15T18:38:10", + "TransactionId": 46730792, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 500, + "CustomerInfo": 73822096, + "PaymentType": "Cash" + }, + { + "Id": 11611, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2016-04-20T16:50:36", + "TransactionId": 51391321, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 799, + "CustomerInfo": 19420143, + "PaymentType": "Cash" + }, + { + "Id": 11612, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-06-22T12:20:53", + "TransactionId": 62294747, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 996, + "CustomerInfo": 45594084, + "PaymentType": "Cash" + }, + { + "Id": 11613, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2018-08-12T13:56:21", + "TransactionId": 38954538, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 468, + "CustomerInfo": 7023757, + "PaymentType": "Cash" + }, + { + "Id": 11614, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2016-07-24T18:02:27", + "TransactionId": 58377382, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 710, + "CustomerInfo": 96766620, + "PaymentType": "Debit Card" + }, + { + "Id": 11615, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-12-21T18:24:20", + "TransactionId": 32229566, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 948, + "CustomerInfo": 27338701, + "PaymentType": "Cash" + }, + { + "Id": 11616, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-05-20T09:56:53", + "TransactionId": 57405126, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 510, + "CustomerInfo": 54228651, + "PaymentType": "Debit Card" + }, + { + "Id": 11617, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2018-07-10T19:32:01", + "TransactionId": 17003091, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 509, + "CustomerInfo": 80173432, + "PaymentType": "Credit Card" + }, + { + "Id": 11618, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2019-04-15T09:01:35", + "TransactionId": 49194878, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 903, + "CustomerInfo": 10336056, + "PaymentType": "Credit Card" + }, + { + "Id": 11619, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2016-07-25T14:11:46", + "TransactionId": 90492923, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 161, + "CustomerInfo": 6698862, + "PaymentType": "Cash" + }, + { + "Id": 11620, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2016-05-20T13:58:39", + "TransactionId": 12417907, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 324, + "CustomerInfo": 2888213, + "PaymentType": "Credit Card" + }, + { + "Id": 11621, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-07-14T19:05:40", + "TransactionId": 71067272, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 309, + "CustomerInfo": 67963534, + "PaymentType": "Cash" + }, + { + "Id": 11622, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-12-10T11:34:31", + "TransactionId": 88366711, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 789, + "CustomerInfo": 732686, + "PaymentType": "Credit Card" + }, + { + "Id": 11623, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-08-17T13:35:11", + "TransactionId": 98514695, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 890, + "CustomerInfo": 18627588, + "PaymentType": "Cash" + }, + { + "Id": 11624, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-08-13T15:56:01", + "TransactionId": 31075267, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 763, + "CustomerInfo": 87655959, + "PaymentType": "Credit Card" + }, + { + "Id": 11625, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-08-05T17:13:21", + "TransactionId": 57462974, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 789, + "CustomerInfo": 79373138, + "PaymentType": "Debit Card" + }, + { + "Id": 11626, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-09-09T08:31:38", + "TransactionId": 40450706, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 749, + "CustomerInfo": 32317905, + "PaymentType": "Cash" + }, + { + "Id": 11627, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-03-06T13:19:47", + "TransactionId": 48659527, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 10549734, + "PaymentType": "Debit Card" + }, + { + "Id": 11628, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-03-16T15:13:41", + "TransactionId": 30538278, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 278, + "CustomerInfo": 19392615, + "PaymentType": "Debit Card" + }, + { + "Id": 11629, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2018-08-29T10:02:12", + "TransactionId": 88929156, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 323, + "CustomerInfo": 60978126, + "PaymentType": "Debit Card" + }, + { + "Id": 11630, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2017-09-02T14:51:48", + "TransactionId": 50921595, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 879, + "CustomerInfo": 94381191, + "PaymentType": "Debit Card" + }, + { + "Id": 11631, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-05-31T19:31:52", + "TransactionId": 67481491, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 457, + "CustomerInfo": 79491147, + "PaymentType": "Cash" + }, + { + "Id": 11632, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-12-15T13:19:21", + "TransactionId": 61705196, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 142, + "CustomerInfo": 11776460, + "PaymentType": "Cash" + }, + { + "Id": 11633, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2019-11-01T18:05:46", + "TransactionId": 40291420, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 993, + "CustomerInfo": 43516161, + "PaymentType": "Cash" + }, + { + "Id": 11634, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-02-06T10:06:06", + "TransactionId": 52072863, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 604, + "CustomerInfo": 84264084, + "PaymentType": "Cash" + }, + { + "Id": 11635, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-10-24T16:36:03", + "TransactionId": 59670791, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 97, + "CustomerInfo": 68851643, + "PaymentType": "Debit Card" + }, + { + "Id": 11636, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-02-10T14:27:27", + "TransactionId": 21846823, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 212, + "CustomerInfo": 25991401, + "PaymentType": "Cash" + }, + { + "Id": 11637, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2018-11-29T11:56:33", + "TransactionId": 23193748, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 815, + "CustomerInfo": 70814483, + "PaymentType": "Credit Card" + }, + { + "Id": 11638, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2018-03-20T08:19:24", + "TransactionId": 34372716, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 103, + "CustomerInfo": 67804941, + "PaymentType": "Debit Card" + }, + { + "Id": 11639, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-03-22T14:05:00", + "TransactionId": 46514327, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 932, + "CustomerInfo": 48835084, + "PaymentType": "Debit Card" + }, + { + "Id": 11640, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-10-19T12:24:46", + "TransactionId": 22649410, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 843, + "CustomerInfo": 58058495, + "PaymentType": "Credit Card" + }, + { + "Id": 11641, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-06-22T15:16:51", + "TransactionId": 16229180, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 49, + "CustomerInfo": 66509121, + "PaymentType": "Debit Card" + }, + { + "Id": 11642, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2017-08-03T12:30:32", + "TransactionId": 82897473, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 708, + "CustomerInfo": 27597189, + "PaymentType": "Credit Card" + }, + { + "Id": 11643, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-11-13T17:52:57", + "TransactionId": 60070220, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 304, + "CustomerInfo": 27736964, + "PaymentType": "Debit Card" + }, + { + "Id": 11644, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-11-05T09:14:50", + "TransactionId": 50587771, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 306, + "CustomerInfo": 56980849, + "PaymentType": "Credit Card" + }, + { + "Id": 11645, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-12-30T12:43:29", + "TransactionId": 79883859, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 709, + "CustomerInfo": 25780071, + "PaymentType": "Debit Card" + }, + { + "Id": 11646, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-08-05T13:13:09", + "TransactionId": 45707073, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 86, + "CustomerInfo": 61287853, + "PaymentType": "Credit Card" + }, + { + "Id": 11647, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2018-02-26T09:46:48", + "TransactionId": 59014002, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 956, + "CustomerInfo": 72252883, + "PaymentType": "Debit Card" + }, + { + "Id": 11648, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-03-09T09:00:17", + "TransactionId": 27341932, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 882, + "CustomerInfo": 40502806, + "PaymentType": "Cash" + }, + { + "Id": 11649, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-10-16T16:36:46", + "TransactionId": 62789579, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 530, + "CustomerInfo": 77218639, + "PaymentType": "Credit Card" + }, + { + "Id": 11650, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-05-24T09:42:12", + "TransactionId": 39779022, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 645, + "CustomerInfo": 49516813, + "PaymentType": "Debit Card" + }, + { + "Id": 11651, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-12-11T08:22:51", + "TransactionId": 56559651, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 95507444, + "PaymentType": "Debit Card" + }, + { + "Id": 11652, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2019-11-18T13:56:21", + "TransactionId": 83122804, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 384, + "CustomerInfo": 35866847, + "PaymentType": "Debit Card" + }, + { + "Id": 11653, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2016-05-06T10:19:47", + "TransactionId": 30278133, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 346, + "CustomerInfo": 19637310, + "PaymentType": "Debit Card" + }, + { + "Id": 11654, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-08-16T13:32:53", + "TransactionId": 47853465, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 911, + "CustomerInfo": 20600394, + "PaymentType": "Credit Card" + }, + { + "Id": 11655, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2017-02-21T10:41:40", + "TransactionId": 49739090, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 93, + "CustomerInfo": 64555955, + "PaymentType": "Debit Card" + }, + { + "Id": 11656, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-12-29T17:39:33", + "TransactionId": 15287880, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 459, + "CustomerInfo": 78660908, + "PaymentType": "Credit Card" + }, + { + "Id": 11657, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-03-14T17:51:13", + "TransactionId": 86407725, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 785, + "CustomerInfo": 5994280, + "PaymentType": "Credit Card" + }, + { + "Id": 11658, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2019-03-29T17:10:02", + "TransactionId": 62180792, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 191, + "CustomerInfo": 71431975, + "PaymentType": "Debit Card" + }, + { + "Id": 11659, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-10-07T16:07:49", + "TransactionId": 19735776, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 702, + "CustomerInfo": 70969477, + "PaymentType": "Debit Card" + }, + { + "Id": 11660, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2018-12-22T19:55:38", + "TransactionId": 26105165, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 571, + "CustomerInfo": 50928954, + "PaymentType": "Credit Card" + }, + { + "Id": 11661, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2019-03-25T14:39:50", + "TransactionId": 53465023, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 985, + "CustomerInfo": 86356494, + "PaymentType": "Cash" + }, + { + "Id": 11662, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2019-09-29T17:17:57", + "TransactionId": 53620095, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 191, + "CustomerInfo": 2603708, + "PaymentType": "Debit Card" + }, + { + "Id": 11663, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2017-09-20T18:33:16", + "TransactionId": 46374511, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 477, + "CustomerInfo": 85037548, + "PaymentType": "Debit Card" + }, + { + "Id": 11664, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-06-15T12:47:31", + "TransactionId": 2362872, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 177, + "CustomerInfo": 1606163, + "PaymentType": "Cash" + }, + { + "Id": 11665, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2016-03-04T08:38:07", + "TransactionId": 16288615, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 596, + "CustomerInfo": 23865902, + "PaymentType": "Cash" + }, + { + "Id": 11666, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2017-11-27T19:17:28", + "TransactionId": 33969529, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 55, + "CustomerInfo": 29085969, + "PaymentType": "Debit Card" + }, + { + "Id": 11667, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-07-14T10:08:50", + "TransactionId": 21412106, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 603, + "CustomerInfo": 410764, + "PaymentType": "Credit Card" + }, + { + "Id": 11668, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-12-01T16:00:12", + "TransactionId": 22013309, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 847, + "CustomerInfo": 90985935, + "PaymentType": "Cash" + }, + { + "Id": 11669, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2019-11-14T19:34:19", + "TransactionId": 67438199, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 68211327, + "PaymentType": "Debit Card" + }, + { + "Id": 11670, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2019-03-22T12:13:49", + "TransactionId": 46481705, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 226, + "CustomerInfo": 73415237, + "PaymentType": "Debit Card" + }, + { + "Id": 11671, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-09-28T15:30:06", + "TransactionId": 61941185, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 785, + "CustomerInfo": 16649807, + "PaymentType": "Cash" + }, + { + "Id": 11672, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2018-05-28T18:27:30", + "TransactionId": 41608057, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 49, + "CustomerInfo": 98883027, + "PaymentType": "Credit Card" + }, + { + "Id": 11673, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-02-24T18:05:20", + "TransactionId": 9134772, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 319, + "CustomerInfo": 45073212, + "PaymentType": "Debit Card" + }, + { + "Id": 11674, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-06-29T14:03:42", + "TransactionId": 55394457, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 237, + "CustomerInfo": 1471069, + "PaymentType": "Credit Card" + }, + { + "Id": 11675, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2016-12-28T14:08:36", + "TransactionId": 90696857, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 233, + "CustomerInfo": 71058231, + "PaymentType": "Credit Card" + }, + { + "Id": 11676, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2018-11-26T11:45:45", + "TransactionId": 9951441, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 832, + "CustomerInfo": 51538818, + "PaymentType": "Debit Card" + }, + { + "Id": 11677, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2017-09-15T14:58:16", + "TransactionId": 34388683, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 69208461, + "PaymentType": "Debit Card" + }, + { + "Id": 11678, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2017-06-11T08:46:02", + "TransactionId": 32594149, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 963, + "CustomerInfo": 19453553, + "PaymentType": "Debit Card" + }, + { + "Id": 11679, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-06-20T16:24:06", + "TransactionId": 58621595, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 257, + "CustomerInfo": 76369240, + "PaymentType": "Cash" + }, + { + "Id": 11680, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2017-09-08T11:09:27", + "TransactionId": 27291326, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 772, + "CustomerInfo": 87173839, + "PaymentType": "Cash" + }, + { + "Id": 11681, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2016-02-06T19:37:03", + "TransactionId": 7360253, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 847, + "CustomerInfo": 61545106, + "PaymentType": "Cash" + }, + { + "Id": 11682, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2018-08-10T13:05:48", + "TransactionId": 86234177, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 554, + "CustomerInfo": 79990780, + "PaymentType": "Debit Card" + }, + { + "Id": 11683, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-08-30T11:34:48", + "TransactionId": 46708340, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 968, + "CustomerInfo": 86023502, + "PaymentType": "Credit Card" + }, + { + "Id": 11684, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2017-03-15T10:48:43", + "TransactionId": 44220513, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 870, + "CustomerInfo": 56892605, + "PaymentType": "Debit Card" + }, + { + "Id": 11685, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2019-03-10T19:09:59", + "TransactionId": 86108631, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 545, + "CustomerInfo": 99505952, + "PaymentType": "Cash" + }, + { + "Id": 11686, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2017-11-23T15:41:28", + "TransactionId": 54185889, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 764, + "CustomerInfo": 5475476, + "PaymentType": "Credit Card" + }, + { + "Id": 11687, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-02-26T08:54:23", + "TransactionId": 64950022, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 642, + "CustomerInfo": 52581336, + "PaymentType": "Cash" + }, + { + "Id": 11688, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2018-05-31T09:29:40", + "TransactionId": 78149601, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 595, + "CustomerInfo": 96261127, + "PaymentType": "Credit Card" + }, + { + "Id": 11689, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-08-20T07:11:25", + "TransactionId": 79229722, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 467, + "CustomerInfo": 28178655, + "PaymentType": "Credit Card" + }, + { + "Id": 11690, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-12-17T13:23:14", + "TransactionId": 62734370, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 964, + "CustomerInfo": 17643275, + "PaymentType": "Cash" + }, + { + "Id": 11691, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2017-07-17T15:24:29", + "TransactionId": 34948777, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 116, + "CustomerInfo": 69083320, + "PaymentType": "Debit Card" + }, + { + "Id": 11692, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2016-10-28T11:20:07", + "TransactionId": 61587109, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 533, + "CustomerInfo": 40718398, + "PaymentType": "Cash" + }, + { + "Id": 11693, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-10-05T18:08:56", + "TransactionId": 48021919, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 608, + "CustomerInfo": 10460063, + "PaymentType": "Credit Card" + }, + { + "Id": 11694, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2019-12-29T16:58:39", + "TransactionId": 95801742, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 270, + "CustomerInfo": 61968743, + "PaymentType": "Debit Card" + }, + { + "Id": 11695, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2016-11-30T11:14:21", + "TransactionId": 76868615, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 18, + "CustomerInfo": 32859189, + "PaymentType": "Debit Card" + }, + { + "Id": 11696, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-09-26T10:14:27", + "TransactionId": 68956391, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 838, + "CustomerInfo": 13000489, + "PaymentType": "Debit Card" + }, + { + "Id": 11697, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2017-07-13T16:12:00", + "TransactionId": 95711246, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 920, + "CustomerInfo": 16717574, + "PaymentType": "Cash" + }, + { + "Id": 11698, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2019-11-11T15:16:25", + "TransactionId": 36293757, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 436, + "CustomerInfo": 15317404, + "PaymentType": "Credit Card" + }, + { + "Id": 11699, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2017-03-16T12:34:25", + "TransactionId": 64302366, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 193904, + "PaymentType": "Debit Card" + }, + { + "Id": 11700, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2016-05-30T08:15:48", + "TransactionId": 43709654, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 759, + "CustomerInfo": 25929879, + "PaymentType": "Cash" + }, + { + "Id": 11701, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2017-06-07T15:40:45", + "TransactionId": 75114818, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 557, + "CustomerInfo": 80107942, + "PaymentType": "Debit Card" + }, + { + "Id": 11702, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-05-12T16:12:26", + "TransactionId": 87688911, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 772, + "CustomerInfo": 99437331, + "PaymentType": "Cash" + }, + { + "Id": 11703, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2019-08-09T09:56:36", + "TransactionId": 44015349, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 492, + "CustomerInfo": 56948508, + "PaymentType": "Debit Card" + }, + { + "Id": 11704, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2016-08-15T07:26:50", + "TransactionId": 26497965, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 205, + "CustomerInfo": 17598079, + "PaymentType": "Credit Card" + }, + { + "Id": 11705, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2019-01-15T18:07:47", + "TransactionId": 4012481, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 889, + "CustomerInfo": 40727551, + "PaymentType": "Debit Card" + }, + { + "Id": 11706, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2018-10-07T10:50:10", + "TransactionId": 24185790, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 685, + "CustomerInfo": 27429318, + "PaymentType": "Cash" + }, + { + "Id": 11707, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-05-03T18:08:30", + "TransactionId": 64223990, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 372, + "CustomerInfo": 93330501, + "PaymentType": "Cash" + }, + { + "Id": 11708, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2016-10-12T12:00:17", + "TransactionId": 86512917, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 174, + "CustomerInfo": 10618033, + "PaymentType": "Debit Card" + }, + { + "Id": 11709, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-05-02T07:14:01", + "TransactionId": 90654329, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 521, + "CustomerInfo": 82545886, + "PaymentType": "Debit Card" + }, + { + "Id": 11710, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-10-05T07:46:25", + "TransactionId": 61905911, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 96387659, + "PaymentType": "Credit Card" + }, + { + "Id": 11711, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2016-01-15T16:25:58", + "TransactionId": 47719064, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 152, + "CustomerInfo": 60682225, + "PaymentType": "Credit Card" + }, + { + "Id": 11712, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-12-08T07:46:34", + "TransactionId": 29483580, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 992, + "CustomerInfo": 6589651, + "PaymentType": "Cash" + }, + { + "Id": 11713, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2019-10-15T14:05:51", + "TransactionId": 78019554, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 955, + "CustomerInfo": 9939415, + "PaymentType": "Credit Card" + }, + { + "Id": 11714, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-04-03T11:32:04", + "TransactionId": 58729957, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 864, + "CustomerInfo": 32006947, + "PaymentType": "Debit Card" + }, + { + "Id": 11715, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2016-01-23T13:28:42", + "TransactionId": 27378389, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 261, + "CustomerInfo": 66881149, + "PaymentType": "Credit Card" + }, + { + "Id": 11716, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2016-05-15T13:41:23", + "TransactionId": 4437253, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 144, + "CustomerInfo": 34906743, + "PaymentType": "Credit Card" + }, + { + "Id": 11717, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2019-04-03T15:34:25", + "TransactionId": 65115004, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 206, + "CustomerInfo": 43165602, + "PaymentType": "Debit Card" + }, + { + "Id": 11718, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-07-25T17:33:30", + "TransactionId": 29681184, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 736, + "CustomerInfo": 23008700, + "PaymentType": "Credit Card" + }, + { + "Id": 11719, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2017-09-17T18:09:30", + "TransactionId": 37180045, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 584, + "CustomerInfo": 79956227, + "PaymentType": "Credit Card" + }, + { + "Id": 11720, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2019-04-21T08:43:35", + "TransactionId": 64429778, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 262, + "CustomerInfo": 31848796, + "PaymentType": "Credit Card" + }, + { + "Id": 11721, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-05-11T10:16:19", + "TransactionId": 30566151, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 965, + "CustomerInfo": 82208465, + "PaymentType": "Credit Card" + }, + { + "Id": 11722, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-04-08T18:27:56", + "TransactionId": 45078407, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 634, + "CustomerInfo": 10210276, + "PaymentType": "Debit Card" + }, + { + "Id": 11723, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2016-04-27T09:09:48", + "TransactionId": 16469255, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 678, + "CustomerInfo": 48213513, + "PaymentType": "Debit Card" + }, + { + "Id": 11724, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-04-21T18:43:03", + "TransactionId": 68902121, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 41, + "CustomerInfo": 94145232, + "PaymentType": "Debit Card" + }, + { + "Id": 11725, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2019-05-13T19:58:05", + "TransactionId": 47597727, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 706, + "CustomerInfo": 46579344, + "PaymentType": "Credit Card" + }, + { + "Id": 11726, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2018-09-11T10:52:45", + "TransactionId": 928605, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 35251100, + "PaymentType": "Cash" + }, + { + "Id": 11727, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2019-12-01T17:27:27", + "TransactionId": 43751104, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 542, + "CustomerInfo": 13986580, + "PaymentType": "Debit Card" + }, + { + "Id": 11728, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-09-07T08:48:03", + "TransactionId": 13035188, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 461, + "CustomerInfo": 21102208, + "PaymentType": "Cash" + }, + { + "Id": 11729, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2016-10-18T16:36:55", + "TransactionId": 57382554, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 187, + "CustomerInfo": 47111726, + "PaymentType": "Cash" + }, + { + "Id": 11730, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-09-04T08:41:08", + "TransactionId": 41313966, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 456, + "CustomerInfo": 30164206, + "PaymentType": "Cash" + }, + { + "Id": 11731, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2019-10-15T07:44:24", + "TransactionId": 44223774, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 86741774, + "PaymentType": "Debit Card" + }, + { + "Id": 11732, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2016-03-05T08:34:31", + "TransactionId": 46187410, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 162, + "CustomerInfo": 66849162, + "PaymentType": "Cash" + }, + { + "Id": 11733, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2019-03-08T12:59:28", + "TransactionId": 56627564, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 324, + "CustomerInfo": 92376616, + "PaymentType": "Credit Card" + }, + { + "Id": 11734, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-07-23T11:39:50", + "TransactionId": 48715392, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 50, + "CustomerInfo": 95642999, + "PaymentType": "Cash" + }, + { + "Id": 11735, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2019-04-30T11:49:03", + "TransactionId": 60383404, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 318, + "CustomerInfo": 66148595, + "PaymentType": "Credit Card" + }, + { + "Id": 11736, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-04-16T17:04:34", + "TransactionId": 67016288, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 536, + "CustomerInfo": 53869233, + "PaymentType": "Debit Card" + }, + { + "Id": 11737, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2016-12-23T07:52:54", + "TransactionId": 9566209, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 58, + "CustomerInfo": 13119540, + "PaymentType": "Cash" + }, + { + "Id": 11738, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2017-05-16T19:37:47", + "TransactionId": 45337503, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 605, + "CustomerInfo": 34573622, + "PaymentType": "Debit Card" + }, + { + "Id": 11739, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2018-04-21T16:58:39", + "TransactionId": 27870019, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 781, + "CustomerInfo": 49858273, + "PaymentType": "Debit Card" + }, + { + "Id": 11740, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-10-21T18:40:02", + "TransactionId": 30370, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 352, + "CustomerInfo": 52068241, + "PaymentType": "Debit Card" + }, + { + "Id": 11741, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-03-02T07:32:36", + "TransactionId": 83913426, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 172, + "CustomerInfo": 8870327, + "PaymentType": "Credit Card" + }, + { + "Id": 11742, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2018-06-06T13:22:05", + "TransactionId": 61370023, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 409, + "CustomerInfo": 30539162, + "PaymentType": "Cash" + }, + { + "Id": 11743, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2016-02-07T09:01:26", + "TransactionId": 37292751, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 604, + "CustomerInfo": 88868371, + "PaymentType": "Credit Card" + }, + { + "Id": 11744, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2016-01-18T10:08:59", + "TransactionId": 14491525, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 200, + "CustomerInfo": 82255611, + "PaymentType": "Credit Card" + }, + { + "Id": 11745, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2019-04-11T13:05:57", + "TransactionId": 9310243, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 348, + "CustomerInfo": 40948368, + "PaymentType": "Debit Card" + }, + { + "Id": 11746, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2016-07-02T17:55:24", + "TransactionId": 1935040, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 104, + "CustomerInfo": 43209444, + "PaymentType": "Debit Card" + }, + { + "Id": 11747, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-08-28T16:29:25", + "TransactionId": 20640628, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 329, + "CustomerInfo": 77408681, + "PaymentType": "Credit Card" + }, + { + "Id": 11748, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2017-11-26T16:36:12", + "TransactionId": 57247918, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 849, + "CustomerInfo": 77979197, + "PaymentType": "Debit Card" + }, + { + "Id": 11749, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-10-08T14:35:23", + "TransactionId": 28756195, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 44, + "CustomerInfo": 41586138, + "PaymentType": "Debit Card" + }, + { + "Id": 11750, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2016-05-01T09:26:47", + "TransactionId": 4427757, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 959, + "CustomerInfo": 60227843, + "PaymentType": "Cash" + }, + { + "Id": 11751, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2019-07-05T18:33:50", + "TransactionId": 14022825, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 897, + "CustomerInfo": 78214637, + "PaymentType": "Debit Card" + }, + { + "Id": 11752, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2016-09-26T14:39:24", + "TransactionId": 57074944, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 146, + "CustomerInfo": 69194027, + "PaymentType": "Credit Card" + }, + { + "Id": 11753, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-08-27T14:23:25", + "TransactionId": 64946180, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 777, + "CustomerInfo": 2496806, + "PaymentType": "Cash" + }, + { + "Id": 11754, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-12-26T18:01:00", + "TransactionId": 70282507, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 346, + "CustomerInfo": 94867603, + "PaymentType": "Credit Card" + }, + { + "Id": 11755, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2016-12-30T07:30:26", + "TransactionId": 83597031, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 995, + "CustomerInfo": 34702568, + "PaymentType": "Debit Card" + }, + { + "Id": 11756, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-12-30T17:30:46", + "TransactionId": 38895542, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 837, + "CustomerInfo": 11602528, + "PaymentType": "Credit Card" + }, + { + "Id": 11757, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2017-12-20T13:08:15", + "TransactionId": 17547673, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 302, + "CustomerInfo": 82462907, + "PaymentType": "Debit Card" + }, + { + "Id": 11758, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-09-04T15:50:41", + "TransactionId": 40470512, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 385, + "CustomerInfo": 58286498, + "PaymentType": "Credit Card" + }, + { + "Id": 11759, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2018-05-13T16:35:54", + "TransactionId": 47126258, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 384, + "CustomerInfo": 53353048, + "PaymentType": "Credit Card" + }, + { + "Id": 11760, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-12-21T17:30:12", + "TransactionId": 20904933, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 283, + "CustomerInfo": 88574081, + "PaymentType": "Credit Card" + }, + { + "Id": 11761, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2019-10-01T09:34:42", + "TransactionId": 81001822, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 765, + "CustomerInfo": 83492622, + "PaymentType": "Cash" + }, + { + "Id": 11762, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2019-12-30T13:29:43", + "TransactionId": 66450211, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 573, + "CustomerInfo": 41852021, + "PaymentType": "Credit Card" + }, + { + "Id": 11763, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-07-31T14:43:18", + "TransactionId": 10391808, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 107, + "CustomerInfo": 54646783, + "PaymentType": "Debit Card" + }, + { + "Id": 11764, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-01-02T16:17:46", + "TransactionId": 2156745, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 445, + "CustomerInfo": 85802968, + "PaymentType": "Credit Card" + }, + { + "Id": 11765, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2019-05-22T17:33:39", + "TransactionId": 27569242, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 47882405, + "PaymentType": "Cash" + }, + { + "Id": 11766, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-06-25T14:30:37", + "TransactionId": 37390494, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 72, + "CustomerInfo": 68027411, + "PaymentType": "Debit Card" + }, + { + "Id": 11767, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2017-04-01T14:54:32", + "TransactionId": 71264894, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 449, + "CustomerInfo": 27988605, + "PaymentType": "Cash" + }, + { + "Id": 11768, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-02-07T09:29:40", + "TransactionId": 26705998, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 506, + "CustomerInfo": 15853203, + "PaymentType": "Cash" + }, + { + "Id": 11769, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-02-23T14:44:27", + "TransactionId": 71958392, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 352, + "CustomerInfo": 88866607, + "PaymentType": "Debit Card" + }, + { + "Id": 11770, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-11-16T15:08:21", + "TransactionId": 37153197, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 406, + "CustomerInfo": 843453, + "PaymentType": "Debit Card" + }, + { + "Id": 11771, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2019-10-26T13:29:43", + "TransactionId": 39674782, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 865, + "CustomerInfo": 22755539, + "PaymentType": "Debit Card" + }, + { + "Id": 11772, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-05-03T14:41:08", + "TransactionId": 6905299, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 975, + "CustomerInfo": 21711391, + "PaymentType": "Debit Card" + }, + { + "Id": 11773, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2019-10-04T18:09:13", + "TransactionId": 71258547, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 4, + "CustomerInfo": 51891320, + "PaymentType": "Credit Card" + }, + { + "Id": 11774, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2019-03-04T13:33:45", + "TransactionId": 31202622, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 871, + "CustomerInfo": 66354009, + "PaymentType": "Debit Card" + }, + { + "Id": 11775, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-05-12T19:30:17", + "TransactionId": 76024947, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 55, + "CustomerInfo": 53057462, + "PaymentType": "Cash" + }, + { + "Id": 11776, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2018-09-24T12:56:10", + "TransactionId": 63221221, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 385, + "CustomerInfo": 9989656, + "PaymentType": "Debit Card" + }, + { + "Id": 11777, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2019-08-10T14:25:00", + "TransactionId": 40313315, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 143, + "CustomerInfo": 82559692, + "PaymentType": "Cash" + }, + { + "Id": 11778, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-01-21T17:38:07", + "TransactionId": 55616944, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 414, + "CustomerInfo": 3527471, + "PaymentType": "Cash" + }, + { + "Id": 11779, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-02-07T19:55:38", + "TransactionId": 86503210, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 644, + "CustomerInfo": 41206062, + "PaymentType": "Debit Card" + }, + { + "Id": 11780, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2018-05-23T07:33:45", + "TransactionId": 39951709, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 585, + "CustomerInfo": 80556460, + "PaymentType": "Cash" + }, + { + "Id": 11781, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-04-27T09:43:47", + "TransactionId": 96864981, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 152, + "CustomerInfo": 73665914, + "PaymentType": "Debit Card" + }, + { + "Id": 11782, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-07-19T18:05:28", + "TransactionId": 11094138, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 969, + "CustomerInfo": 6313521, + "PaymentType": "Cash" + }, + { + "Id": 11783, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2017-09-29T07:29:00", + "TransactionId": 58767645, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 458, + "CustomerInfo": 30347877, + "PaymentType": "Debit Card" + }, + { + "Id": 11784, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2017-02-17T09:24:55", + "TransactionId": 91984766, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 211, + "CustomerInfo": 44349762, + "PaymentType": "Debit Card" + }, + { + "Id": 11785, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-12-20T08:39:50", + "TransactionId": 39480694, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 936, + "CustomerInfo": 33894067, + "PaymentType": "Debit Card" + }, + { + "Id": 11786, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-12-29T09:35:00", + "TransactionId": 51328827, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 839, + "CustomerInfo": 61860227, + "PaymentType": "Credit Card" + }, + { + "Id": 11787, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-05-23T16:59:57", + "TransactionId": 43510990, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 247, + "CustomerInfo": 50319122, + "PaymentType": "Debit Card" + }, + { + "Id": 11788, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2018-04-29T19:02:04", + "TransactionId": 56806084, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 32, + "CustomerInfo": 56152918, + "PaymentType": "Cash" + }, + { + "Id": 11789, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2017-01-16T11:28:19", + "TransactionId": 33749320, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 33, + "CustomerInfo": 87580767, + "PaymentType": "Cash" + }, + { + "Id": 11790, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2017-11-05T13:25:15", + "TransactionId": 77841582, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 171, + "CustomerInfo": 54435400, + "PaymentType": "Cash" + }, + { + "Id": 11791, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2016-06-24T12:30:14", + "TransactionId": 22886383, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 958, + "CustomerInfo": 13858437, + "PaymentType": "Credit Card" + }, + { + "Id": 11792, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-09-12T13:51:01", + "TransactionId": 50808201, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 371, + "CustomerInfo": 74304248, + "PaymentType": "Debit Card" + }, + { + "Id": 11793, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-05-18T17:45:01", + "TransactionId": 68799936, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 228, + "CustomerInfo": 33947227, + "PaymentType": "Debit Card" + }, + { + "Id": 11794, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-09-15T14:47:28", + "TransactionId": 15715253, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 257, + "CustomerInfo": 16356596, + "PaymentType": "Credit Card" + }, + { + "Id": 11795, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-06-01T15:02:27", + "TransactionId": 40533326, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 955, + "CustomerInfo": 72746928, + "PaymentType": "Cash" + }, + { + "Id": 11796, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2018-10-19T11:49:47", + "TransactionId": 31188078, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 137, + "CustomerInfo": 12285377, + "PaymentType": "Debit Card" + }, + { + "Id": 11797, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-10-05T08:15:30", + "TransactionId": 28947887, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 47, + "CustomerInfo": 10990721, + "PaymentType": "Debit Card" + }, + { + "Id": 11798, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-02-08T16:03:13", + "TransactionId": 83248365, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 58, + "CustomerInfo": 45529607, + "PaymentType": "Credit Card" + }, + { + "Id": 11799, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2016-10-26T14:37:58", + "TransactionId": 66155164, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 186, + "CustomerInfo": 54175073, + "PaymentType": "Credit Card" + }, + { + "Id": 11800, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2018-02-21T16:12:52", + "TransactionId": 28180895, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 574, + "CustomerInfo": 94140571, + "PaymentType": "Credit Card" + }, + { + "Id": 11801, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-12-04T14:36:58", + "TransactionId": 23264505, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 537, + "CustomerInfo": 39822349, + "PaymentType": "Credit Card" + }, + { + "Id": 11802, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-02-06T09:37:35", + "TransactionId": 71378439, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 292, + "CustomerInfo": 51168485, + "PaymentType": "Credit Card" + }, + { + "Id": 11803, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2016-09-23T13:00:12", + "TransactionId": 41143533, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 430, + "CustomerInfo": 97103927, + "PaymentType": "Cash" + }, + { + "Id": 11804, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2016-09-22T11:09:27", + "TransactionId": 38149053, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 692, + "CustomerInfo": 73702093, + "PaymentType": "Credit Card" + }, + { + "Id": 11805, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-07-19T10:39:56", + "TransactionId": 2924289, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 281, + "CustomerInfo": 88335676, + "PaymentType": "Debit Card" + }, + { + "Id": 11806, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-05-10T17:10:45", + "TransactionId": 51126588, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 156, + "CustomerInfo": 3643526, + "PaymentType": "Debit Card" + }, + { + "Id": 11807, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2017-01-13T17:09:45", + "TransactionId": 17365565, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 272, + "CustomerInfo": 27938195, + "PaymentType": "Debit Card" + }, + { + "Id": 11808, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2019-12-09T19:48:17", + "TransactionId": 93225915, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 550, + "CustomerInfo": 52700882, + "PaymentType": "Cash" + }, + { + "Id": 11809, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2017-01-20T10:03:13", + "TransactionId": 48022015, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 735, + "CustomerInfo": 75254423, + "PaymentType": "Cash" + }, + { + "Id": 11810, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2018-03-09T18:43:47", + "TransactionId": 39895615, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 718, + "CustomerInfo": 47541756, + "PaymentType": "Debit Card" + }, + { + "Id": 11811, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2016-06-02T16:02:12", + "TransactionId": 58585786, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 460, + "CustomerInfo": 40462430, + "PaymentType": "Credit Card" + }, + { + "Id": 11812, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2017-09-11T07:18:37", + "TransactionId": 75115697, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 486, + "CustomerInfo": 30330900, + "PaymentType": "Cash" + }, + { + "Id": 11813, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2019-12-26T12:24:29", + "TransactionId": 77722277, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 81, + "CustomerInfo": 36906877, + "PaymentType": "Cash" + }, + { + "Id": 11814, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-03-17T08:14:38", + "TransactionId": 61261910, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 900, + "CustomerInfo": 21757484, + "PaymentType": "Credit Card" + }, + { + "Id": 11815, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-09-02T16:00:20", + "TransactionId": 71733665, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 921, + "CustomerInfo": 70303193, + "PaymentType": "Debit Card" + }, + { + "Id": 11816, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-03-16T13:50:10", + "TransactionId": 40397161, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 461, + "CustomerInfo": 30400886, + "PaymentType": "Cash" + }, + { + "Id": 11817, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-01-30T09:16:16", + "TransactionId": 76302567, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 223, + "CustomerInfo": 64311484, + "PaymentType": "Credit Card" + }, + { + "Id": 11818, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-11-06T16:25:58", + "TransactionId": 834459, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 627, + "CustomerInfo": 98313399, + "PaymentType": "Credit Card" + }, + { + "Id": 11819, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2017-09-08T17:32:47", + "TransactionId": 92649312, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 581, + "CustomerInfo": 67264721, + "PaymentType": "Cash" + }, + { + "Id": 11820, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2016-09-12T10:11:08", + "TransactionId": 79483901, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 528, + "CustomerInfo": 26710342, + "PaymentType": "Credit Card" + }, + { + "Id": 11821, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-09-19T13:01:55", + "TransactionId": 8154488, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 627, + "CustomerInfo": 15196631, + "PaymentType": "Cash" + }, + { + "Id": 11822, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2019-10-10T09:29:40", + "TransactionId": 26968916, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 572, + "CustomerInfo": 46559296, + "PaymentType": "Debit Card" + }, + { + "Id": 11823, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2019-05-28T09:53:51", + "TransactionId": 75440796, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 621, + "CustomerInfo": 62199192, + "PaymentType": "Credit Card" + }, + { + "Id": 11824, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2018-07-31T12:12:32", + "TransactionId": 34282012, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 90427949, + "PaymentType": "Cash" + }, + { + "Id": 11825, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2018-08-20T16:24:40", + "TransactionId": 66573875, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 499, + "CustomerInfo": 28269260, + "PaymentType": "Debit Card" + }, + { + "Id": 11826, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2017-08-17T07:09:50", + "TransactionId": 9973645, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 436, + "CustomerInfo": 8180702, + "PaymentType": "Debit Card" + }, + { + "Id": 11827, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-12-10T18:35:25", + "TransactionId": 34723058, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 952, + "CustomerInfo": 43107221, + "PaymentType": "Cash" + }, + { + "Id": 11828, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-07-11T11:48:55", + "TransactionId": 92946954, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 110, + "CustomerInfo": 95138898, + "PaymentType": "Debit Card" + }, + { + "Id": 11829, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-05-03T18:34:16", + "TransactionId": 82592494, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 566, + "CustomerInfo": 43328359, + "PaymentType": "Debit Card" + }, + { + "Id": 11830, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2016-10-09T19:48:09", + "TransactionId": 25893985, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 806, + "CustomerInfo": 73942487, + "PaymentType": "Credit Card" + }, + { + "Id": 11831, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-06-28T18:25:21", + "TransactionId": 7629572, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 352, + "CustomerInfo": 39044579, + "PaymentType": "Credit Card" + }, + { + "Id": 11832, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-09-14T09:08:47", + "TransactionId": 86989702, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 93, + "CustomerInfo": 24643936, + "PaymentType": "Cash" + }, + { + "Id": 11833, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-07-18T14:58:08", + "TransactionId": 35547862, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 817, + "CustomerInfo": 16894800, + "PaymentType": "Debit Card" + }, + { + "Id": 11834, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2018-11-08T16:44:50", + "TransactionId": 98441060, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 476, + "CustomerInfo": 65688932, + "PaymentType": "Cash" + }, + { + "Id": 11835, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-11-30T19:41:40", + "TransactionId": 95311065, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 659, + "CustomerInfo": 94316772, + "PaymentType": "Cash" + }, + { + "Id": 11836, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2016-03-06T11:33:48", + "TransactionId": 89723449, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 488, + "CustomerInfo": 22251820, + "PaymentType": "Debit Card" + }, + { + "Id": 11837, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-09-24T09:17:00", + "TransactionId": 82871792, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 618, + "CustomerInfo": 81269772, + "PaymentType": "Cash" + }, + { + "Id": 11838, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-07-15T14:04:42", + "TransactionId": 98516643, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 845, + "CustomerInfo": 94164898, + "PaymentType": "Cash" + }, + { + "Id": 11839, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-03-07T15:09:48", + "TransactionId": 95730090, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 116, + "CustomerInfo": 55572860, + "PaymentType": "Credit Card" + }, + { + "Id": 11840, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2018-11-04T08:06:26", + "TransactionId": 82476144, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 799, + "CustomerInfo": 75356179, + "PaymentType": "Debit Card" + }, + { + "Id": 11841, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2016-07-02T14:36:14", + "TransactionId": 34308799, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 678, + "CustomerInfo": 73458517, + "PaymentType": "Debit Card" + }, + { + "Id": 11842, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2019-03-26T17:28:11", + "TransactionId": 33591124, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 109, + "CustomerInfo": 71848611, + "PaymentType": "Debit Card" + }, + { + "Id": 11843, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-04-09T16:09:59", + "TransactionId": 10851250, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 136, + "CustomerInfo": 53901470, + "PaymentType": "Cash" + }, + { + "Id": 11844, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-03-02T13:17:11", + "TransactionId": 11651919, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 541, + "CustomerInfo": 34811692, + "PaymentType": "Debit Card" + }, + { + "Id": 11845, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-11-11T13:08:33", + "TransactionId": 33823448, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 115, + "CustomerInfo": 30887944, + "PaymentType": "Credit Card" + }, + { + "Id": 11846, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2018-07-31T12:51:42", + "TransactionId": 71269295, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 28, + "CustomerInfo": 7298327, + "PaymentType": "Credit Card" + }, + { + "Id": 11847, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2017-07-21T17:29:37", + "TransactionId": 65001183, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 942, + "CustomerInfo": 66710438, + "PaymentType": "Debit Card" + }, + { + "Id": 11848, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-04-29T19:44:59", + "TransactionId": 26211565, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 451, + "CustomerInfo": 4898696, + "PaymentType": "Credit Card" + }, + { + "Id": 11849, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2017-06-30T14:28:45", + "TransactionId": 40666518, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 29926604, + "PaymentType": "Cash" + }, + { + "Id": 11850, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2017-09-22T16:41:31", + "TransactionId": 3278984, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 21, + "CustomerInfo": 16419638, + "PaymentType": "Credit Card" + }, + { + "Id": 11851, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-06-17T07:49:18", + "TransactionId": 3704353, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 781, + "CustomerInfo": 90041870, + "PaymentType": "Debit Card" + }, + { + "Id": 11852, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-01-03T12:32:24", + "TransactionId": 49823404, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 789, + "CustomerInfo": 3709649, + "PaymentType": "Debit Card" + }, + { + "Id": 11853, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-01-01T11:45:36", + "TransactionId": 9025792, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 733, + "CustomerInfo": 8966800, + "PaymentType": "Cash" + }, + { + "Id": 11854, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-11-13T09:00:09", + "TransactionId": 84227224, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 700, + "CustomerInfo": 8801995, + "PaymentType": "Cash" + }, + { + "Id": 11855, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2019-01-01T11:37:32", + "TransactionId": 96656581, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 653, + "CustomerInfo": 54367701, + "PaymentType": "Debit Card" + }, + { + "Id": 11856, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-06-07T13:03:56", + "TransactionId": 39666066, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 229, + "CustomerInfo": 61473780, + "PaymentType": "Credit Card" + }, + { + "Id": 11857, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-06-02T18:00:43", + "TransactionId": 28477603, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 787, + "CustomerInfo": 21556937, + "PaymentType": "Credit Card" + }, + { + "Id": 11858, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-05-14T16:21:48", + "TransactionId": 48972296, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 365, + "CustomerInfo": 26396971, + "PaymentType": "Cash" + }, + { + "Id": 11859, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2019-08-31T08:14:04", + "TransactionId": 62678526, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 952, + "CustomerInfo": 57948178, + "PaymentType": "Debit Card" + }, + { + "Id": 11860, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-06-12T16:02:12", + "TransactionId": 61734269, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 392, + "CustomerInfo": 39369429, + "PaymentType": "Cash" + }, + { + "Id": 11861, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2019-09-16T14:36:32", + "TransactionId": 26219649, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 879, + "CustomerInfo": 39023852, + "PaymentType": "Debit Card" + }, + { + "Id": 11862, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2017-09-13T15:54:52", + "TransactionId": 71302851, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 522, + "CustomerInfo": 63564620, + "PaymentType": "Debit Card" + }, + { + "Id": 11863, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-01-30T18:14:41", + "TransactionId": 89877012, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 448, + "CustomerInfo": 62160939, + "PaymentType": "Credit Card" + }, + { + "Id": 11864, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2018-12-26T11:58:42", + "TransactionId": 92303891, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 233, + "CustomerInfo": 60218049, + "PaymentType": "Debit Card" + }, + { + "Id": 11865, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2019-07-13T19:54:03", + "TransactionId": 89066876, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 620, + "CustomerInfo": 7504064, + "PaymentType": "Credit Card" + }, + { + "Id": 11866, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-08-21T17:25:52", + "TransactionId": 73416486, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 653, + "CustomerInfo": 72887284, + "PaymentType": "Debit Card" + }, + { + "Id": 11867, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2016-05-05T10:50:01", + "TransactionId": 89600885, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 799, + "CustomerInfo": 4455130, + "PaymentType": "Credit Card" + }, + { + "Id": 11868, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2017-07-02T12:37:35", + "TransactionId": 30990322, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 860, + "CustomerInfo": 61766572, + "PaymentType": "Credit Card" + }, + { + "Id": 11869, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2018-07-04T12:37:44", + "TransactionId": 69152627, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 891, + "CustomerInfo": 51543490, + "PaymentType": "Debit Card" + }, + { + "Id": 11870, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2018-06-25T16:43:41", + "TransactionId": 32377063, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 520, + "CustomerInfo": 80059294, + "PaymentType": "Credit Card" + }, + { + "Id": 11871, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2018-05-10T07:34:54", + "TransactionId": 88930948, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 536, + "CustomerInfo": 8558257, + "PaymentType": "Debit Card" + }, + { + "Id": 11872, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2018-11-24T08:31:12", + "TransactionId": 46918922, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 858, + "CustomerInfo": 17374067, + "PaymentType": "Cash" + }, + { + "Id": 11873, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-09-14T07:44:59", + "TransactionId": 32156705, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 336, + "CustomerInfo": 82707715, + "PaymentType": "Credit Card" + }, + { + "Id": 11874, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2018-10-31T10:40:57", + "TransactionId": 36242007, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 401, + "CustomerInfo": 29042942, + "PaymentType": "Credit Card" + }, + { + "Id": 11875, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-08-31T18:50:24", + "TransactionId": 83237489, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 479, + "CustomerInfo": 36248, + "PaymentType": "Debit Card" + }, + { + "Id": 11876, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-07-12T15:28:57", + "TransactionId": 29114814, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 92772218, + "PaymentType": "Debit Card" + }, + { + "Id": 11877, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2016-01-10T19:28:34", + "TransactionId": 68150867, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 328, + "CustomerInfo": 37540242, + "PaymentType": "Debit Card" + }, + { + "Id": 11878, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-07-22T07:47:08", + "TransactionId": 11718553, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 989, + "CustomerInfo": 73906099, + "PaymentType": "Debit Card" + }, + { + "Id": 11879, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-12-25T07:48:43", + "TransactionId": 82567167, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 472, + "CustomerInfo": 49068226, + "PaymentType": "Credit Card" + }, + { + "Id": 11880, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-02-24T09:11:31", + "TransactionId": 3713401, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 936, + "CustomerInfo": 91177194, + "PaymentType": "Cash" + }, + { + "Id": 11881, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-03-15T11:23:43", + "TransactionId": 6502395, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 402, + "CustomerInfo": 85233991, + "PaymentType": "Cash" + }, + { + "Id": 11882, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-08-01T13:24:06", + "TransactionId": 46318254, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 144, + "CustomerInfo": 15650277, + "PaymentType": "Debit Card" + }, + { + "Id": 11883, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2019-01-29T15:20:53", + "TransactionId": 59327192, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 143, + "CustomerInfo": 13620928, + "PaymentType": "Cash" + }, + { + "Id": 11884, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2017-03-25T07:33:10", + "TransactionId": 40274484, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 497, + "CustomerInfo": 79376523, + "PaymentType": "Debit Card" + }, + { + "Id": 11885, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2016-12-27T12:36:00", + "TransactionId": 28624185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 816, + "CustomerInfo": 33690049, + "PaymentType": "Cash" + }, + { + "Id": 11886, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2017-11-13T17:29:54", + "TransactionId": 54405945, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 179, + "CustomerInfo": 71360320, + "PaymentType": "Debit Card" + }, + { + "Id": 11887, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2019-04-20T18:35:25", + "TransactionId": 80570758, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 231, + "CustomerInfo": 12823751, + "PaymentType": "Credit Card" + }, + { + "Id": 11888, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2017-05-06T17:21:33", + "TransactionId": 23189250, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 30, + "CustomerInfo": 57242086, + "PaymentType": "Credit Card" + }, + { + "Id": 11889, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-08-16T15:11:48", + "TransactionId": 38496549, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 81, + "CustomerInfo": 42175888, + "PaymentType": "Debit Card" + }, + { + "Id": 11890, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2019-09-21T14:50:21", + "TransactionId": 30848367, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 781, + "CustomerInfo": 76076346, + "PaymentType": "Cash" + }, + { + "Id": 11891, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-03-25T09:30:49", + "TransactionId": 50205576, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 235, + "CustomerInfo": 22872596, + "PaymentType": "Credit Card" + }, + { + "Id": 11892, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2018-04-14T11:29:46", + "TransactionId": 50576044, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 73, + "CustomerInfo": 40852204, + "PaymentType": "Cash" + }, + { + "Id": 11893, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-02-26T10:35:11", + "TransactionId": 98309043, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 712, + "CustomerInfo": 41357250, + "PaymentType": "Cash" + }, + { + "Id": 11894, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2018-01-30T11:03:59", + "TransactionId": 91116863, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 324, + "CustomerInfo": 50644821, + "PaymentType": "Credit Card" + }, + { + "Id": 11895, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2016-01-18T08:38:07", + "TransactionId": 68107952, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 750, + "CustomerInfo": 61230572, + "PaymentType": "Cash" + }, + { + "Id": 11896, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-11-17T14:39:50", + "TransactionId": 70461716, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 327, + "CustomerInfo": 1153959, + "PaymentType": "Debit Card" + }, + { + "Id": 11897, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-08-12T07:48:00", + "TransactionId": 97922480, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 279, + "CustomerInfo": 84364708, + "PaymentType": "Debit Card" + }, + { + "Id": 11898, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2016-08-17T07:27:07", + "TransactionId": 41680929, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 84, + "CustomerInfo": 98918348, + "PaymentType": "Cash" + }, + { + "Id": 11899, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2019-06-17T11:13:03", + "TransactionId": 6389527, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 277, + "CustomerInfo": 97628687, + "PaymentType": "Cash" + }, + { + "Id": 11900, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-01-20T12:12:40", + "TransactionId": 97599175, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 44, + "CustomerInfo": 28786153, + "PaymentType": "Credit Card" + }, + { + "Id": 11901, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-11-23T17:12:20", + "TransactionId": 2321479, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 649, + "CustomerInfo": 54048356, + "PaymentType": "Credit Card" + }, + { + "Id": 11902, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-03-11T15:48:40", + "TransactionId": 78795484, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 614, + "CustomerInfo": 76660237, + "PaymentType": "Debit Card" + }, + { + "Id": 11903, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2017-02-13T17:22:16", + "TransactionId": 55926559, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 939, + "CustomerInfo": 88034849, + "PaymentType": "Cash" + }, + { + "Id": 11904, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2016-12-25T14:16:31", + "TransactionId": 36651972, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 374, + "CustomerInfo": 45496422, + "PaymentType": "Cash" + }, + { + "Id": 11905, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2016-07-12T13:54:03", + "TransactionId": 81793552, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 666, + "CustomerInfo": 30333567, + "PaymentType": "Cash" + }, + { + "Id": 11906, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2018-08-31T11:44:01", + "TransactionId": 60695443, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 369, + "CustomerInfo": 53844540, + "PaymentType": "Credit Card" + }, + { + "Id": 11907, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-08-23T11:15:30", + "TransactionId": 95440779, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 190, + "CustomerInfo": 33769717, + "PaymentType": "Credit Card" + }, + { + "Id": 11908, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2019-01-07T11:29:37", + "TransactionId": 41447166, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 298, + "CustomerInfo": 85850417, + "PaymentType": "Credit Card" + }, + { + "Id": 11909, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2016-11-02T11:15:48", + "TransactionId": 35925325, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 248, + "CustomerInfo": 26183108, + "PaymentType": "Debit Card" + }, + { + "Id": 11910, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2017-12-23T18:25:55", + "TransactionId": 84882559, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 506, + "CustomerInfo": 41129873, + "PaymentType": "Credit Card" + }, + { + "Id": 11911, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2017-06-18T09:52:34", + "TransactionId": 20011890, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 25, + "CustomerInfo": 14924377, + "PaymentType": "Debit Card" + }, + { + "Id": 11912, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-07-17T15:49:58", + "TransactionId": 26651659, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 990, + "CustomerInfo": 58947927, + "PaymentType": "Credit Card" + }, + { + "Id": 11913, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2018-05-02T13:59:40", + "TransactionId": 50767350, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 197, + "CustomerInfo": 68707574, + "PaymentType": "Credit Card" + }, + { + "Id": 11914, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2019-10-02T12:31:06", + "TransactionId": 41588450, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 756, + "CustomerInfo": 63498199, + "PaymentType": "Debit Card" + }, + { + "Id": 11915, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-01-31T17:01:58", + "TransactionId": 52853685, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 113, + "CustomerInfo": 74150965, + "PaymentType": "Credit Card" + }, + { + "Id": 11916, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-01-23T11:52:13", + "TransactionId": 13817224, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 561, + "CustomerInfo": 58761079, + "PaymentType": "Debit Card" + }, + { + "Id": 11917, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-09-20T11:29:02", + "TransactionId": 51425609, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 785, + "CustomerInfo": 18815453, + "PaymentType": "Cash" + }, + { + "Id": 11918, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2019-07-29T18:18:52", + "TransactionId": 24419834, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 750, + "CustomerInfo": 60463902, + "PaymentType": "Cash" + }, + { + "Id": 11919, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-06-03T19:26:15", + "TransactionId": 99360322, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 39802674, + "PaymentType": "Credit Card" + }, + { + "Id": 11920, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2017-07-20T13:11:00", + "TransactionId": 49007617, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 591, + "CustomerInfo": 43810882, + "PaymentType": "Debit Card" + }, + { + "Id": 11921, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2017-12-25T07:33:27", + "TransactionId": 27839946, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 593, + "CustomerInfo": 10112647, + "PaymentType": "Credit Card" + }, + { + "Id": 11922, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2019-04-15T08:25:52", + "TransactionId": 3472487, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 524, + "CustomerInfo": 97284252, + "PaymentType": "Debit Card" + }, + { + "Id": 11923, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2016-01-14T08:00:49", + "TransactionId": 93335633, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 524, + "CustomerInfo": 64557200, + "PaymentType": "Cash" + }, + { + "Id": 11924, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2018-12-22T15:38:53", + "TransactionId": 82030685, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 817, + "CustomerInfo": 31409469, + "PaymentType": "Cash" + }, + { + "Id": 11925, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2018-06-24T18:02:44", + "TransactionId": 52274696, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 293, + "CustomerInfo": 59483631, + "PaymentType": "Debit Card" + }, + { + "Id": 11926, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2018-04-28T18:04:45", + "TransactionId": 15549250, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 695, + "CustomerInfo": 41320773, + "PaymentType": "Cash" + }, + { + "Id": 11927, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2019-10-27T19:52:36", + "TransactionId": 47973968, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 645, + "CustomerInfo": 90005308, + "PaymentType": "Cash" + }, + { + "Id": 11928, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-12-30T11:03:33", + "TransactionId": 57569666, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 443, + "CustomerInfo": 99979151, + "PaymentType": "Credit Card" + }, + { + "Id": 11929, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-07-29T10:45:33", + "TransactionId": 63150096, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 240, + "CustomerInfo": 168605, + "PaymentType": "Credit Card" + }, + { + "Id": 11930, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2016-09-22T11:43:18", + "TransactionId": 79984620, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 869, + "CustomerInfo": 93133, + "PaymentType": "Debit Card" + }, + { + "Id": 11931, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2017-01-20T11:06:35", + "TransactionId": 2780450, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 681, + "CustomerInfo": 80681562, + "PaymentType": "Credit Card" + }, + { + "Id": 11932, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2018-10-26T09:55:52", + "TransactionId": 8745489, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 183, + "CustomerInfo": 12071392, + "PaymentType": "Debit Card" + }, + { + "Id": 11933, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2017-04-13T09:48:23", + "TransactionId": 54493457, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 586, + "CustomerInfo": 20655748, + "PaymentType": "Credit Card" + }, + { + "Id": 11934, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-06-17T13:09:24", + "TransactionId": 81759813, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 934, + "CustomerInfo": 73280220, + "PaymentType": "Credit Card" + }, + { + "Id": 11935, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-01-23T17:58:08", + "TransactionId": 26170134, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 545, + "CustomerInfo": 39964542, + "PaymentType": "Debit Card" + }, + { + "Id": 11936, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2018-02-28T08:18:58", + "TransactionId": 39587704, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 108, + "CustomerInfo": 17285763, + "PaymentType": "Credit Card" + }, + { + "Id": 11937, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-04-27T13:12:43", + "TransactionId": 61049126, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 184, + "CustomerInfo": 93736843, + "PaymentType": "Cash" + }, + { + "Id": 11938, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-12-20T08:40:51", + "TransactionId": 94440968, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 417, + "CustomerInfo": 94574773, + "PaymentType": "Cash" + }, + { + "Id": 11939, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2017-06-01T17:20:07", + "TransactionId": 58064556, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 384, + "CustomerInfo": 40581199, + "PaymentType": "Cash" + }, + { + "Id": 11940, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-05-09T07:30:43", + "TransactionId": 13118303, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 535, + "CustomerInfo": 41106701, + "PaymentType": "Credit Card" + }, + { + "Id": 11941, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2017-06-25T17:10:54", + "TransactionId": 30356631, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 662, + "CustomerInfo": 92364336, + "PaymentType": "Debit Card" + }, + { + "Id": 11942, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2017-10-22T12:12:58", + "TransactionId": 12475091, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 895, + "CustomerInfo": 34342451, + "PaymentType": "Credit Card" + }, + { + "Id": 11943, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2018-07-22T15:05:20", + "TransactionId": 15723460, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 267, + "CustomerInfo": 37317116, + "PaymentType": "Debit Card" + }, + { + "Id": 11944, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-12-11T17:45:19", + "TransactionId": 73955738, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 152, + "CustomerInfo": 16453510, + "PaymentType": "Debit Card" + }, + { + "Id": 11945, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2017-03-17T12:16:51", + "TransactionId": 44482574, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 757, + "CustomerInfo": 14636146, + "PaymentType": "Cash" + }, + { + "Id": 11946, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2017-02-09T10:07:58", + "TransactionId": 87655652, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 459, + "CustomerInfo": 51719543, + "PaymentType": "Debit Card" + }, + { + "Id": 11947, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-03-21T11:51:13", + "TransactionId": 57667621, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 645, + "CustomerInfo": 21762974, + "PaymentType": "Cash" + }, + { + "Id": 11948, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2019-01-29T19:14:18", + "TransactionId": 57907522, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 864, + "CustomerInfo": 42955843, + "PaymentType": "Cash" + }, + { + "Id": 11949, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-07-13T19:50:53", + "TransactionId": 63567597, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 710, + "CustomerInfo": 21930362, + "PaymentType": "Credit Card" + }, + { + "Id": 11950, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2016-01-17T11:44:18", + "TransactionId": 90764661, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 748, + "CustomerInfo": 8909568, + "PaymentType": "Cash" + }, + { + "Id": 11951, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2016-02-29T17:33:56", + "TransactionId": 33019641, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 610, + "CustomerInfo": 26184650, + "PaymentType": "Credit Card" + }, + { + "Id": 11952, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2019-12-17T16:34:19", + "TransactionId": 28934899, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 265, + "CustomerInfo": 50708756, + "PaymentType": "Debit Card" + }, + { + "Id": 11953, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-03-10T07:53:02", + "TransactionId": 95976586, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 694, + "CustomerInfo": 22764585, + "PaymentType": "Credit Card" + }, + { + "Id": 11954, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-04-28T10:09:07", + "TransactionId": 97899021, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 267, + "CustomerInfo": 89125539, + "PaymentType": "Cash" + }, + { + "Id": 11955, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2019-06-05T16:30:09", + "TransactionId": 30107681, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 439, + "CustomerInfo": 43746192, + "PaymentType": "Credit Card" + }, + { + "Id": 11956, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-11-24T15:53:25", + "TransactionId": 49591871, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 539, + "CustomerInfo": 81583970, + "PaymentType": "Debit Card" + }, + { + "Id": 11957, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2017-11-27T12:45:22", + "TransactionId": 133328, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 25, + "CustomerInfo": 42212185, + "PaymentType": "Cash" + }, + { + "Id": 11958, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2019-03-02T14:59:34", + "TransactionId": 45410692, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 392, + "CustomerInfo": 85651116, + "PaymentType": "Credit Card" + }, + { + "Id": 11959, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-03-20T13:14:18", + "TransactionId": 82523279, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 52839628, + "PaymentType": "Credit Card" + }, + { + "Id": 11960, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-01-23T10:05:31", + "TransactionId": 27872107, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 362, + "CustomerInfo": 10846919, + "PaymentType": "Credit Card" + }, + { + "Id": 11961, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2019-09-30T13:32:36", + "TransactionId": 51220568, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 158, + "CustomerInfo": 834179, + "PaymentType": "Cash" + }, + { + "Id": 11962, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2019-07-01T13:30:35", + "TransactionId": 25646113, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 824, + "CustomerInfo": 70582395, + "PaymentType": "Credit Card" + }, + { + "Id": 11963, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2017-02-26T09:44:56", + "TransactionId": 27198890, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 9, + "CustomerInfo": 2447548, + "PaymentType": "Debit Card" + }, + { + "Id": 11964, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2016-12-12T09:38:36", + "TransactionId": 39838111, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 747, + "CustomerInfo": 51783041, + "PaymentType": "Cash" + }, + { + "Id": 11965, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2018-03-02T15:35:08", + "TransactionId": 60191205, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 594, + "CustomerInfo": 64358114, + "PaymentType": "Cash" + }, + { + "Id": 11966, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2018-06-26T12:11:23", + "TransactionId": 20177142, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 500, + "CustomerInfo": 67468515, + "PaymentType": "Cash" + }, + { + "Id": 11967, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-12-07T15:17:25", + "TransactionId": 86606285, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 23, + "CustomerInfo": 10933251, + "PaymentType": "Debit Card" + }, + { + "Id": 11968, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2017-09-26T15:53:25", + "TransactionId": 18535677, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 299, + "CustomerInfo": 14062704, + "PaymentType": "Cash" + }, + { + "Id": 11969, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-01-09T10:23:31", + "TransactionId": 53860794, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 81, + "CustomerInfo": 42970005, + "PaymentType": "Credit Card" + }, + { + "Id": 11970, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2018-03-18T10:47:43", + "TransactionId": 32559202, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 95055244, + "PaymentType": "Credit Card" + }, + { + "Id": 11971, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-05-23T09:29:05", + "TransactionId": 53778606, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 34616059, + "PaymentType": "Debit Card" + }, + { + "Id": 11972, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-03-30T07:22:22", + "TransactionId": 37720935, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 974, + "CustomerInfo": 71402749, + "PaymentType": "Credit Card" + }, + { + "Id": 11973, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-08-03T15:05:37", + "TransactionId": 37751545, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 394, + "CustomerInfo": 44019318, + "PaymentType": "Credit Card" + }, + { + "Id": 11974, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-10-09T18:41:28", + "TransactionId": 65385773, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 19216020, + "PaymentType": "Credit Card" + }, + { + "Id": 11975, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2019-12-01T11:08:44", + "TransactionId": 644618, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 227, + "CustomerInfo": 14819217, + "PaymentType": "Cash" + }, + { + "Id": 11976, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2016-09-06T16:49:52", + "TransactionId": 19321352, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 704, + "CustomerInfo": 68702558, + "PaymentType": "Cash" + }, + { + "Id": 11977, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2016-04-15T13:48:35", + "TransactionId": 32498268, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 82, + "CustomerInfo": 96238898, + "PaymentType": "Credit Card" + }, + { + "Id": 11978, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2016-10-27T08:09:10", + "TransactionId": 17334428, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 783, + "CustomerInfo": 67478834, + "PaymentType": "Cash" + }, + { + "Id": 11979, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2018-05-16T09:12:06", + "TransactionId": 17324855, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 248, + "CustomerInfo": 62965150, + "PaymentType": "Debit Card" + }, + { + "Id": 11980, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-04-04T16:56:47", + "TransactionId": 9367421, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 490, + "CustomerInfo": 59783498, + "PaymentType": "Debit Card" + }, + { + "Id": 11981, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2019-11-18T18:46:31", + "TransactionId": 79822126, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 389, + "CustomerInfo": 8018550, + "PaymentType": "Credit Card" + }, + { + "Id": 11982, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-01-24T08:20:50", + "TransactionId": 16534595, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 105, + "CustomerInfo": 42735997, + "PaymentType": "Cash" + }, + { + "Id": 11983, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-03-28T14:29:02", + "TransactionId": 53524693, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 118, + "CustomerInfo": 31554316, + "PaymentType": "Cash" + }, + { + "Id": 11984, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2019-07-31T08:05:51", + "TransactionId": 52628089, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 304, + "CustomerInfo": 86082359, + "PaymentType": "Credit Card" + }, + { + "Id": 11985, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2016-12-20T14:47:11", + "TransactionId": 25140148, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 312, + "CustomerInfo": 23944186, + "PaymentType": "Credit Card" + }, + { + "Id": 11986, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-05-18T16:12:35", + "TransactionId": 60883124, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 426, + "CustomerInfo": 80800391, + "PaymentType": "Cash" + }, + { + "Id": 11987, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2016-10-12T18:09:30", + "TransactionId": 66949329, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 27, + "CustomerInfo": 44631017, + "PaymentType": "Debit Card" + }, + { + "Id": 11988, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2019-12-26T15:58:45", + "TransactionId": 9774228, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 597, + "CustomerInfo": 19294244, + "PaymentType": "Credit Card" + }, + { + "Id": 11989, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2019-01-29T07:10:16", + "TransactionId": 71698077, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 773, + "CustomerInfo": 79594782, + "PaymentType": "Cash" + }, + { + "Id": 11990, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2016-12-14T17:32:04", + "TransactionId": 60242213, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 754, + "CustomerInfo": 56747730, + "PaymentType": "Cash" + }, + { + "Id": 11991, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2018-04-02T07:53:20", + "TransactionId": 69747741, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 403, + "CustomerInfo": 98083555, + "PaymentType": "Debit Card" + }, + { + "Id": 11992, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2017-05-29T15:55:44", + "TransactionId": 79305905, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 293, + "CustomerInfo": 69397519, + "PaymentType": "Credit Card" + }, + { + "Id": 11993, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2019-05-09T08:20:41", + "TransactionId": 85038816, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 63, + "CustomerInfo": 98833412, + "PaymentType": "Cash" + }, + { + "Id": 11994, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2018-01-30T19:32:27", + "TransactionId": 45609078, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 719, + "CustomerInfo": 77263664, + "PaymentType": "Credit Card" + }, + { + "Id": 11995, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2016-10-31T16:54:55", + "TransactionId": 38948317, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 16810058, + "PaymentType": "Credit Card" + }, + { + "Id": 11996, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-04-17T14:56:50", + "TransactionId": 28780870, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 923, + "CustomerInfo": 58071566, + "PaymentType": "Debit Card" + }, + { + "Id": 11997, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-04-05T19:54:55", + "TransactionId": 52853729, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 320, + "CustomerInfo": 89583172, + "PaymentType": "Cash" + }, + { + "Id": 11998, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-12-01T18:51:59", + "TransactionId": 29772702, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 443, + "CustomerInfo": 65684558, + "PaymentType": "Credit Card" + }, + { + "Id": 11999, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-04-07T13:01:47", + "TransactionId": 91507561, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 160, + "CustomerInfo": 61236534, + "PaymentType": "Cash" + }, + { + "Id": 12000, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2018-03-25T17:50:12", + "TransactionId": 60979790, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 689, + "CustomerInfo": 47438357, + "PaymentType": "Debit Card" + }, + { + "Id": 12001, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2017-12-16T16:58:22", + "TransactionId": 14131854, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 53, + "CustomerInfo": 79402724, + "PaymentType": "Cash" + }, + { + "Id": 12002, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-07-29T11:15:48", + "TransactionId": 65015088, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 860, + "CustomerInfo": 17075156, + "PaymentType": "Cash" + }, + { + "Id": 12003, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-09-06T09:47:23", + "TransactionId": 34839159, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 993, + "CustomerInfo": 67372298, + "PaymentType": "Debit Card" + }, + { + "Id": 12004, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-05-04T08:43:00", + "TransactionId": 66729743, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 332, + "CustomerInfo": 3153422, + "PaymentType": "Credit Card" + }, + { + "Id": 12005, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2018-01-24T17:09:53", + "TransactionId": 55643491, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 254, + "CustomerInfo": 82970130, + "PaymentType": "Credit Card" + }, + { + "Id": 12006, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2016-11-11T16:52:28", + "TransactionId": 6165103, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 869, + "CustomerInfo": 57189620, + "PaymentType": "Debit Card" + }, + { + "Id": 12007, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-11-26T08:46:54", + "TransactionId": 53968242, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 91, + "CustomerInfo": 81061107, + "PaymentType": "Debit Card" + }, + { + "Id": 12008, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2018-06-02T14:22:16", + "TransactionId": 14615746, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 37, + "CustomerInfo": 70800574, + "PaymentType": "Debit Card" + }, + { + "Id": 12009, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2016-06-11T14:52:31", + "TransactionId": 66017782, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 323, + "CustomerInfo": 51999155, + "PaymentType": "Cash" + }, + { + "Id": 12010, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2019-12-11T07:40:31", + "TransactionId": 3943143, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 742, + "CustomerInfo": 39259393, + "PaymentType": "Cash" + }, + { + "Id": 12011, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2017-02-03T13:01:55", + "TransactionId": 49009049, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 516, + "CustomerInfo": 33959478, + "PaymentType": "Credit Card" + }, + { + "Id": 12012, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-01-12T16:15:10", + "TransactionId": 25662049, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 891, + "CustomerInfo": 19599573, + "PaymentType": "Debit Card" + }, + { + "Id": 12013, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2016-10-31T08:36:40", + "TransactionId": 84030902, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 774, + "CustomerInfo": 79741022, + "PaymentType": "Debit Card" + }, + { + "Id": 12014, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-04-25T18:12:32", + "TransactionId": 49616570, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 64, + "CustomerInfo": 87190065, + "PaymentType": "Cash" + }, + { + "Id": 12015, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2019-04-06T18:06:55", + "TransactionId": 58485335, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 868, + "CustomerInfo": 77324811, + "PaymentType": "Cash" + }, + { + "Id": 12016, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2018-01-02T15:03:53", + "TransactionId": 49971580, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 815, + "CustomerInfo": 57369335, + "PaymentType": "Debit Card" + }, + { + "Id": 12017, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-11-09T08:51:30", + "TransactionId": 99375027, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 480, + "CustomerInfo": 26311104, + "PaymentType": "Credit Card" + }, + { + "Id": 12018, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-10-23T12:36:00", + "TransactionId": 50538882, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 914, + "CustomerInfo": 65858951, + "PaymentType": "Cash" + }, + { + "Id": 12019, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2016-07-10T18:40:54", + "TransactionId": 24696591, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 447, + "CustomerInfo": 69305008, + "PaymentType": "Debit Card" + }, + { + "Id": 12020, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-08-29T19:29:43", + "TransactionId": 32492721, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 659, + "CustomerInfo": 21867077, + "PaymentType": "Debit Card" + }, + { + "Id": 12021, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2017-02-02T16:06:06", + "TransactionId": 77613680, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 61, + "CustomerInfo": 61531754, + "PaymentType": "Debit Card" + }, + { + "Id": 12022, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2016-05-19T19:05:48", + "TransactionId": 40304182, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 37, + "CustomerInfo": 19078482, + "PaymentType": "Cash" + }, + { + "Id": 12023, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-07-12T12:04:45", + "TransactionId": 54213870, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 870, + "CustomerInfo": 46096699, + "PaymentType": "Cash" + }, + { + "Id": 12024, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2019-06-04T19:13:44", + "TransactionId": 50470384, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 919, + "CustomerInfo": 58816252, + "PaymentType": "Credit Card" + }, + { + "Id": 12025, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2018-07-03T07:39:04", + "TransactionId": 52150087, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 578, + "CustomerInfo": 91885283, + "PaymentType": "Debit Card" + }, + { + "Id": 12026, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2016-02-08T12:59:02", + "TransactionId": 79520239, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 924, + "CustomerInfo": 53816901, + "PaymentType": "Debit Card" + }, + { + "Id": 12027, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2017-05-29T18:09:04", + "TransactionId": 22795091, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 83942821, + "PaymentType": "Debit Card" + }, + { + "Id": 12028, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-05-26T10:03:30", + "TransactionId": 66842788, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 971, + "CustomerInfo": 25178723, + "PaymentType": "Cash" + }, + { + "Id": 12029, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-05-12T15:23:11", + "TransactionId": 56313431, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 927, + "CustomerInfo": 18562305, + "PaymentType": "Debit Card" + }, + { + "Id": 12030, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2019-04-25T16:57:04", + "TransactionId": 63262602, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 729, + "CustomerInfo": 41775339, + "PaymentType": "Cash" + }, + { + "Id": 12031, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2017-08-27T07:49:35", + "TransactionId": 97657531, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 766, + "CustomerInfo": 12091059, + "PaymentType": "Cash" + }, + { + "Id": 12032, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2016-03-15T14:01:06", + "TransactionId": 41781391, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 357, + "CustomerInfo": 67654885, + "PaymentType": "Credit Card" + }, + { + "Id": 12033, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2018-02-15T18:35:43", + "TransactionId": 91479448, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 580, + "CustomerInfo": 8761318, + "PaymentType": "Debit Card" + }, + { + "Id": 12034, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2018-09-22T13:13:44", + "TransactionId": 38144379, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 538, + "CustomerInfo": 69182606, + "PaymentType": "Debit Card" + }, + { + "Id": 12035, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2018-09-23T12:14:50", + "TransactionId": 9095779, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 857, + "CustomerInfo": 9776812, + "PaymentType": "Cash" + }, + { + "Id": 12036, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-08-03T11:40:16", + "TransactionId": 8254747, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 764, + "CustomerInfo": 91477366, + "PaymentType": "Cash" + }, + { + "Id": 12037, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2017-12-22T10:52:19", + "TransactionId": 89059334, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 858, + "CustomerInfo": 38627665, + "PaymentType": "Credit Card" + }, + { + "Id": 12038, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-05-02T16:49:00", + "TransactionId": 4140447, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 502, + "CustomerInfo": 73417898, + "PaymentType": "Cash" + }, + { + "Id": 12039, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2017-02-18T11:24:52", + "TransactionId": 32725957, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 306, + "CustomerInfo": 84881895, + "PaymentType": "Cash" + }, + { + "Id": 12040, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2016-09-06T19:43:15", + "TransactionId": 52629761, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 851, + "CustomerInfo": 17175297, + "PaymentType": "Debit Card" + }, + { + "Id": 12041, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-01-23T16:44:07", + "TransactionId": 7696459, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 534, + "CustomerInfo": 23698531, + "PaymentType": "Credit Card" + }, + { + "Id": 12042, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2018-08-07T17:37:49", + "TransactionId": 53866050, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 691, + "CustomerInfo": 27359170, + "PaymentType": "Debit Card" + }, + { + "Id": 12043, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-05-05T14:42:43", + "TransactionId": 62307802, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 620, + "CustomerInfo": 39552303, + "PaymentType": "Cash" + }, + { + "Id": 12044, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-05-11T16:43:06", + "TransactionId": 1234584, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 238, + "CustomerInfo": 30200126, + "PaymentType": "Debit Card" + }, + { + "Id": 12045, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2019-05-31T19:19:55", + "TransactionId": 89169000, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 573, + "CustomerInfo": 98315491, + "PaymentType": "Cash" + }, + { + "Id": 12046, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2017-05-07T08:08:53", + "TransactionId": 67044451, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 21839348, + "PaymentType": "Debit Card" + }, + { + "Id": 12047, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-10-02T09:18:09", + "TransactionId": 67661257, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 810, + "CustomerInfo": 43285713, + "PaymentType": "Debit Card" + }, + { + "Id": 12048, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-03-27T19:52:11", + "TransactionId": 72431967, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 538, + "CustomerInfo": 54193313, + "PaymentType": "Credit Card" + }, + { + "Id": 12049, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2017-01-27T18:07:38", + "TransactionId": 69888983, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 786, + "CustomerInfo": 61549724, + "PaymentType": "Credit Card" + }, + { + "Id": 12050, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2017-11-16T15:50:07", + "TransactionId": 83696849, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 312, + "CustomerInfo": 55037639, + "PaymentType": "Debit Card" + }, + { + "Id": 12051, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2018-09-20T15:23:28", + "TransactionId": 85658092, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 482, + "CustomerInfo": 16809745, + "PaymentType": "Credit Card" + }, + { + "Id": 12052, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-04-25T07:17:54", + "TransactionId": 70372662, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 469, + "CustomerInfo": 43832775, + "PaymentType": "Cash" + }, + { + "Id": 12053, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-09-15T07:11:43", + "TransactionId": 81675456, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 739, + "CustomerInfo": 81566105, + "PaymentType": "Debit Card" + }, + { + "Id": 12054, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2017-06-01T15:07:38", + "TransactionId": 8754469, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 208, + "CustomerInfo": 89289805, + "PaymentType": "Debit Card" + }, + { + "Id": 12055, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2019-04-27T11:08:27", + "TransactionId": 7256383, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 658, + "CustomerInfo": 13282133, + "PaymentType": "Cash" + }, + { + "Id": 12056, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2016-05-25T12:33:24", + "TransactionId": 42978264, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 54, + "CustomerInfo": 53504933, + "PaymentType": "Credit Card" + }, + { + "Id": 12057, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2016-10-17T15:58:02", + "TransactionId": 6351526, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 722, + "CustomerInfo": 30166348, + "PaymentType": "Credit Card" + }, + { + "Id": 12058, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2017-12-23T12:58:45", + "TransactionId": 32977002, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 459, + "CustomerInfo": 5813631, + "PaymentType": "Cash" + }, + { + "Id": 12059, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2016-05-25T11:57:07", + "TransactionId": 22897819, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 7, + "CustomerInfo": 28826185, + "PaymentType": "Debit Card" + }, + { + "Id": 12060, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2019-02-11T16:23:23", + "TransactionId": 39897299, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 30, + "CustomerInfo": 8477312, + "PaymentType": "Debit Card" + }, + { + "Id": 12061, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-11-14T15:44:38", + "TransactionId": 39373124, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 809, + "CustomerInfo": 26676394, + "PaymentType": "Cash" + }, + { + "Id": 12062, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2019-06-01T15:17:43", + "TransactionId": 24005448, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 972, + "CustomerInfo": 68391590, + "PaymentType": "Credit Card" + }, + { + "Id": 12063, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2019-10-05T13:47:51", + "TransactionId": 34528546, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 238, + "CustomerInfo": 68070084, + "PaymentType": "Cash" + }, + { + "Id": 12064, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2017-08-28T09:02:01", + "TransactionId": 89181984, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 272, + "CustomerInfo": 37982659, + "PaymentType": "Debit Card" + }, + { + "Id": 12065, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2017-02-23T08:16:31", + "TransactionId": 13614287, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 521, + "CustomerInfo": 36350720, + "PaymentType": "Cash" + }, + { + "Id": 12066, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2017-03-01T17:59:34", + "TransactionId": 13838507, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 28, + "CustomerInfo": 99919795, + "PaymentType": "Cash" + }, + { + "Id": 12067, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-02-05T12:03:45", + "TransactionId": 39838941, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 699, + "CustomerInfo": 19388798, + "PaymentType": "Debit Card" + }, + { + "Id": 12068, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-02-15T16:42:32", + "TransactionId": 59227009, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 252, + "CustomerInfo": 3174550, + "PaymentType": "Debit Card" + }, + { + "Id": 12069, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2018-04-22T09:48:40", + "TransactionId": 55492218, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 50603297, + "PaymentType": "Cash" + }, + { + "Id": 12070, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-11-10T14:01:41", + "TransactionId": 77848231, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 735, + "CustomerInfo": 41487967, + "PaymentType": "Credit Card" + }, + { + "Id": 12071, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-11-10T11:54:40", + "TransactionId": 94689023, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 373, + "CustomerInfo": 17116995, + "PaymentType": "Credit Card" + }, + { + "Id": 12072, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-12-23T18:06:20", + "TransactionId": 39465815, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 70, + "CustomerInfo": 84819556, + "PaymentType": "Credit Card" + }, + { + "Id": 12073, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-04-21T17:51:22", + "TransactionId": 3380189, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 721, + "CustomerInfo": 79787259, + "PaymentType": "Cash" + }, + { + "Id": 12074, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2019-08-17T19:08:59", + "TransactionId": 52767909, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 878, + "CustomerInfo": 53712851, + "PaymentType": "Debit Card" + }, + { + "Id": 12075, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-02-01T15:15:50", + "TransactionId": 23347448, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 463, + "CustomerInfo": 65309216, + "PaymentType": "Cash" + }, + { + "Id": 12076, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2017-01-02T10:59:48", + "TransactionId": 56631976, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 26, + "CustomerInfo": 51272417, + "PaymentType": "Debit Card" + }, + { + "Id": 12077, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-06-26T13:49:35", + "TransactionId": 51445201, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 829, + "CustomerInfo": 92718357, + "PaymentType": "Debit Card" + }, + { + "Id": 12078, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-06-09T10:56:38", + "TransactionId": 24830504, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 241, + "CustomerInfo": 23613587, + "PaymentType": "Credit Card" + }, + { + "Id": 12079, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-07-06T18:49:24", + "TransactionId": 23749512, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 539, + "CustomerInfo": 43437644, + "PaymentType": "Debit Card" + }, + { + "Id": 12080, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2016-05-31T09:40:54", + "TransactionId": 92867077, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 353, + "CustomerInfo": 54845270, + "PaymentType": "Credit Card" + }, + { + "Id": 12081, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-11-29T09:12:32", + "TransactionId": 937255, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 361, + "CustomerInfo": 52139286, + "PaymentType": "Credit Card" + }, + { + "Id": 12082, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-06-17T13:17:28", + "TransactionId": 16763534, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 598, + "CustomerInfo": 25435824, + "PaymentType": "Debit Card" + }, + { + "Id": 12083, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-12-09T09:27:56", + "TransactionId": 71732042, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 566, + "CustomerInfo": 32594153, + "PaymentType": "Cash" + }, + { + "Id": 12084, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2018-05-26T11:25:26", + "TransactionId": 84914036, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 496, + "CustomerInfo": 84493450, + "PaymentType": "Credit Card" + }, + { + "Id": 12085, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2018-11-15T18:52:42", + "TransactionId": 33799992, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 88, + "CustomerInfo": 55533298, + "PaymentType": "Debit Card" + }, + { + "Id": 12086, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-09-28T15:37:26", + "TransactionId": 99164329, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 857, + "CustomerInfo": 43669291, + "PaymentType": "Credit Card" + }, + { + "Id": 12087, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-02-03T17:51:48", + "TransactionId": 11273046, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 212, + "CustomerInfo": 78391625, + "PaymentType": "Debit Card" + }, + { + "Id": 12088, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-07-15T09:22:36", + "TransactionId": 14958570, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 952, + "CustomerInfo": 27254424, + "PaymentType": "Cash" + }, + { + "Id": 12089, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-04-20T10:41:05", + "TransactionId": 21519847, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 428, + "CustomerInfo": 37806127, + "PaymentType": "Cash" + }, + { + "Id": 12090, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-03-20T13:31:35", + "TransactionId": 21170721, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 312, + "CustomerInfo": 1005612, + "PaymentType": "Cash" + }, + { + "Id": 12091, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2017-08-09T09:28:57", + "TransactionId": 98163688, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 580, + "CustomerInfo": 61292129, + "PaymentType": "Cash" + }, + { + "Id": 12092, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2017-09-30T17:04:51", + "TransactionId": 14744021, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 195, + "CustomerInfo": 35750020, + "PaymentType": "Debit Card" + }, + { + "Id": 12093, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2016-07-21T09:20:18", + "TransactionId": 45230499, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 440, + "CustomerInfo": 60633683, + "PaymentType": "Credit Card" + }, + { + "Id": 12094, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-06-04T19:56:21", + "TransactionId": 27791887, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 861, + "CustomerInfo": 39815991, + "PaymentType": "Credit Card" + }, + { + "Id": 12095, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2019-07-13T10:41:31", + "TransactionId": 55892682, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 246, + "CustomerInfo": 6371824, + "PaymentType": "Credit Card" + }, + { + "Id": 12096, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2018-04-23T10:30:35", + "TransactionId": 52729782, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 696, + "CustomerInfo": 71195399, + "PaymentType": "Debit Card" + }, + { + "Id": 12097, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-04-01T15:23:11", + "TransactionId": 4478557, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 130, + "CustomerInfo": 99793738, + "PaymentType": "Cash" + }, + { + "Id": 12098, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2016-02-24T19:08:15", + "TransactionId": 64001897, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 473, + "CustomerInfo": 48601392, + "PaymentType": "Credit Card" + }, + { + "Id": 12099, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-09-29T13:39:39", + "TransactionId": 30579246, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 660, + "CustomerInfo": 72422284, + "PaymentType": "Cash" + }, + { + "Id": 12100, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-12-01T16:08:50", + "TransactionId": 60428224, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 768, + "CustomerInfo": 48265812, + "PaymentType": "Credit Card" + }, + { + "Id": 12101, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2017-10-28T09:43:38", + "TransactionId": 26889141, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 145, + "CustomerInfo": 99612656, + "PaymentType": "Cash" + }, + { + "Id": 12102, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-09-23T08:10:28", + "TransactionId": 28778961, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 954, + "CustomerInfo": 43933422, + "PaymentType": "Credit Card" + }, + { + "Id": 12103, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-01-03T09:34:16", + "TransactionId": 6600208, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 79, + "CustomerInfo": 35201489, + "PaymentType": "Debit Card" + }, + { + "Id": 12104, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2018-04-14T13:14:36", + "TransactionId": 70016762, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 770, + "CustomerInfo": 27263979, + "PaymentType": "Credit Card" + }, + { + "Id": 12105, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-09-10T17:35:05", + "TransactionId": 25452360, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 336, + "CustomerInfo": 73642337, + "PaymentType": "Cash" + }, + { + "Id": 12106, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-09-24T10:49:09", + "TransactionId": 49215555, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 349, + "CustomerInfo": 70195797, + "PaymentType": "Credit Card" + }, + { + "Id": 12107, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-06-30T14:05:34", + "TransactionId": 18725386, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 122, + "CustomerInfo": 23984499, + "PaymentType": "Debit Card" + }, + { + "Id": 12108, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-03-15T15:15:33", + "TransactionId": 24170959, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 23, + "CustomerInfo": 73105764, + "PaymentType": "Cash" + }, + { + "Id": 12109, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2017-04-27T11:46:54", + "TransactionId": 62971227, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 182, + "CustomerInfo": 88498417, + "PaymentType": "Cash" + }, + { + "Id": 12110, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-06-03T18:21:36", + "TransactionId": 93258404, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 878, + "CustomerInfo": 39413234, + "PaymentType": "Debit Card" + }, + { + "Id": 12111, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-11-05T15:00:17", + "TransactionId": 25540711, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 909, + "CustomerInfo": 83020322, + "PaymentType": "Debit Card" + }, + { + "Id": 12112, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2018-07-09T13:10:25", + "TransactionId": 67100599, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 535, + "CustomerInfo": 64878488, + "PaymentType": "Credit Card" + }, + { + "Id": 12113, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-11-06T17:39:59", + "TransactionId": 53986243, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 941, + "CustomerInfo": 79032500, + "PaymentType": "Credit Card" + }, + { + "Id": 12114, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2017-04-19T14:50:04", + "TransactionId": 20456823, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 142, + "CustomerInfo": 32450829, + "PaymentType": "Credit Card" + }, + { + "Id": 12115, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2019-08-27T10:12:09", + "TransactionId": 41208519, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 938, + "CustomerInfo": 18767509, + "PaymentType": "Cash" + }, + { + "Id": 12116, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2017-04-10T07:12:43", + "TransactionId": 81474413, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 804, + "CustomerInfo": 63281183, + "PaymentType": "Debit Card" + }, + { + "Id": 12117, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2017-12-22T08:59:25", + "TransactionId": 56417225, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 584, + "CustomerInfo": 4281708, + "PaymentType": "Cash" + }, + { + "Id": 12118, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2018-11-08T08:11:37", + "TransactionId": 697888, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 101, + "CustomerInfo": 47860789, + "PaymentType": "Credit Card" + }, + { + "Id": 12119, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2016-07-26T13:58:22", + "TransactionId": 37817856, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 799, + "CustomerInfo": 98103079, + "PaymentType": "Credit Card" + }, + { + "Id": 12120, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2016-09-28T16:41:40", + "TransactionId": 57390779, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 150, + "CustomerInfo": 26259748, + "PaymentType": "Debit Card" + }, + { + "Id": 12121, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2019-12-08T09:19:09", + "TransactionId": 11910749, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 270, + "CustomerInfo": 58363540, + "PaymentType": "Debit Card" + }, + { + "Id": 12122, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2017-07-01T16:25:41", + "TransactionId": 79484466, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 417, + "CustomerInfo": 90768545, + "PaymentType": "Credit Card" + }, + { + "Id": 12123, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-07-04T12:40:45", + "TransactionId": 6299988, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 296, + "CustomerInfo": 22878853, + "PaymentType": "Debit Card" + }, + { + "Id": 12124, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2017-08-13T11:31:12", + "TransactionId": 56185604, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 818, + "CustomerInfo": 14136623, + "PaymentType": "Credit Card" + }, + { + "Id": 12125, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2017-01-25T11:22:25", + "TransactionId": 89013155, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 801, + "CustomerInfo": 65817866, + "PaymentType": "Credit Card" + }, + { + "Id": 12126, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2017-04-22T07:15:10", + "TransactionId": 93838770, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 66205083, + "PaymentType": "Debit Card" + }, + { + "Id": 12127, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2019-05-07T10:31:00", + "TransactionId": 84112551, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 847, + "CustomerInfo": 74437609, + "PaymentType": "Credit Card" + }, + { + "Id": 12128, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-09-12T19:56:47", + "TransactionId": 94293575, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 557, + "CustomerInfo": 40057176, + "PaymentType": "Debit Card" + }, + { + "Id": 12129, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2016-10-24T13:12:09", + "TransactionId": 81131481, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 1000, + "CustomerInfo": 78954391, + "PaymentType": "Cash" + }, + { + "Id": 12130, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2019-08-04T07:09:42", + "TransactionId": 58439628, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 514, + "CustomerInfo": 12413574, + "PaymentType": "Debit Card" + }, + { + "Id": 12131, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2018-08-11T19:01:38", + "TransactionId": 30959450, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 137, + "CustomerInfo": 32811127, + "PaymentType": "Credit Card" + }, + { + "Id": 12132, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-02-14T07:48:43", + "TransactionId": 62210407, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 354, + "CustomerInfo": 85385800, + "PaymentType": "Credit Card" + }, + { + "Id": 12133, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-03-08T17:31:03", + "TransactionId": 55463393, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 109, + "CustomerInfo": 75895732, + "PaymentType": "Credit Card" + }, + { + "Id": 12134, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-08-17T16:56:04", + "TransactionId": 97916539, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 15, + "CustomerInfo": 3013271, + "PaymentType": "Debit Card" + }, + { + "Id": 12135, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-07-08T18:00:52", + "TransactionId": 95417970, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 985, + "CustomerInfo": 18873370, + "PaymentType": "Credit Card" + }, + { + "Id": 12136, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2016-08-06T18:44:21", + "TransactionId": 82885414, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 34, + "CustomerInfo": 37049006, + "PaymentType": "Cash" + }, + { + "Id": 12137, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2017-01-16T08:51:56", + "TransactionId": 358403, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 355, + "CustomerInfo": 25965082, + "PaymentType": "Debit Card" + }, + { + "Id": 12138, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2017-03-18T14:30:29", + "TransactionId": 18090903, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 837, + "CustomerInfo": 15604690, + "PaymentType": "Credit Card" + }, + { + "Id": 12139, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2016-05-21T16:29:43", + "TransactionId": 80553596, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 816, + "CustomerInfo": 43672230, + "PaymentType": "Cash" + }, + { + "Id": 12140, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-10-25T08:26:44", + "TransactionId": 5701489, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 906, + "CustomerInfo": 84258207, + "PaymentType": "Cash" + }, + { + "Id": 12141, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-04-23T11:16:39", + "TransactionId": 5130245, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 232, + "CustomerInfo": 3618898, + "PaymentType": "Debit Card" + }, + { + "Id": 12142, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2019-04-22T15:25:03", + "TransactionId": 5139619, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 640, + "CustomerInfo": 72452087, + "PaymentType": "Debit Card" + }, + { + "Id": 12143, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-05-19T07:25:06", + "TransactionId": 56881054, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 215, + "CustomerInfo": 96416100, + "PaymentType": "Cash" + }, + { + "Id": 12144, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2019-07-19T13:19:03", + "TransactionId": 24364247, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 444, + "CustomerInfo": 41822228, + "PaymentType": "Cash" + }, + { + "Id": 12145, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-10-29T09:25:21", + "TransactionId": 95578668, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 492, + "CustomerInfo": 15339912, + "PaymentType": "Credit Card" + }, + { + "Id": 12146, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2019-10-24T13:20:12", + "TransactionId": 48295973, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 80, + "CustomerInfo": 97767511, + "PaymentType": "Cash" + }, + { + "Id": 12147, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2019-11-28T17:30:20", + "TransactionId": 83290643, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 351, + "CustomerInfo": 49977151, + "PaymentType": "Credit Card" + }, + { + "Id": 12148, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2018-12-30T19:30:09", + "TransactionId": 55954110, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 642, + "CustomerInfo": 66890365, + "PaymentType": "Cash" + }, + { + "Id": 12149, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2018-09-08T11:31:29", + "TransactionId": 97324460, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 832, + "CustomerInfo": 25504619, + "PaymentType": "Debit Card" + }, + { + "Id": 12150, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-01-18T18:06:12", + "TransactionId": 98703946, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 164, + "CustomerInfo": 84826614, + "PaymentType": "Credit Card" + }, + { + "Id": 12151, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-11-01T17:12:37", + "TransactionId": 13010247, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 440, + "CustomerInfo": 71009461, + "PaymentType": "Cash" + }, + { + "Id": 12152, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2016-11-25T08:50:38", + "TransactionId": 21109839, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 488, + "CustomerInfo": 11130300, + "PaymentType": "Cash" + }, + { + "Id": 12153, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2018-01-24T15:22:28", + "TransactionId": 24191924, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 29, + "CustomerInfo": 45811175, + "PaymentType": "Cash" + }, + { + "Id": 12154, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2017-05-12T07:01:55", + "TransactionId": 19930433, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 569, + "CustomerInfo": 12665708, + "PaymentType": "Credit Card" + }, + { + "Id": 12155, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2016-03-28T18:36:52", + "TransactionId": 90956287, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 644, + "CustomerInfo": 61260579, + "PaymentType": "Credit Card" + }, + { + "Id": 12156, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2018-11-29T10:35:20", + "TransactionId": 7893446, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 379, + "CustomerInfo": 85298039, + "PaymentType": "Cash" + }, + { + "Id": 12157, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2018-10-21T14:57:33", + "TransactionId": 74271744, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 587, + "CustomerInfo": 56932585, + "PaymentType": "Credit Card" + }, + { + "Id": 12158, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-08-11T19:02:56", + "TransactionId": 70833521, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 116, + "CustomerInfo": 65339725, + "PaymentType": "Debit Card" + }, + { + "Id": 12159, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-11-16T09:59:37", + "TransactionId": 46284678, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 980, + "CustomerInfo": 80163145, + "PaymentType": "Credit Card" + }, + { + "Id": 12160, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-07-12T07:06:49", + "TransactionId": 7944061, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 901, + "CustomerInfo": 75338485, + "PaymentType": "Credit Card" + }, + { + "Id": 12161, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2017-08-20T17:14:04", + "TransactionId": 76225645, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 566, + "CustomerInfo": 91355893, + "PaymentType": "Debit Card" + }, + { + "Id": 12162, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2017-09-01T12:33:24", + "TransactionId": 86216063, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 136, + "CustomerInfo": 48426186, + "PaymentType": "Debit Card" + }, + { + "Id": 12163, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2016-06-08T12:59:02", + "TransactionId": 10474713, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 226, + "CustomerInfo": 39750713, + "PaymentType": "Debit Card" + }, + { + "Id": 12164, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2019-12-20T17:19:58", + "TransactionId": 10719384, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 886, + "CustomerInfo": 41295442, + "PaymentType": "Cash" + }, + { + "Id": 12165, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-09-14T07:33:10", + "TransactionId": 10764618, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 267, + "CustomerInfo": 68380135, + "PaymentType": "Credit Card" + }, + { + "Id": 12166, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-06-19T09:02:10", + "TransactionId": 13358835, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 721, + "CustomerInfo": 19505124, + "PaymentType": "Cash" + }, + { + "Id": 12167, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2018-11-02T18:34:42", + "TransactionId": 22029111, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 650, + "CustomerInfo": 24029658, + "PaymentType": "Credit Card" + }, + { + "Id": 12168, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2018-02-14T08:14:38", + "TransactionId": 47236624, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 663, + "CustomerInfo": 10201795, + "PaymentType": "Credit Card" + }, + { + "Id": 12169, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2019-04-23T14:39:16", + "TransactionId": 79201583, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 321, + "CustomerInfo": 69852359, + "PaymentType": "Debit Card" + }, + { + "Id": 12170, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-05-04T17:17:14", + "TransactionId": 72227296, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 812, + "CustomerInfo": 56188384, + "PaymentType": "Cash" + }, + { + "Id": 12171, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-08-18T07:44:33", + "TransactionId": 79809468, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 768, + "CustomerInfo": 65344105, + "PaymentType": "Credit Card" + }, + { + "Id": 12172, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2017-07-14T07:03:56", + "TransactionId": 3237702, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 723, + "CustomerInfo": 19007940, + "PaymentType": "Cash" + }, + { + "Id": 12173, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2016-08-26T12:29:57", + "TransactionId": 65425103, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 704, + "CustomerInfo": 95279829, + "PaymentType": "Debit Card" + }, + { + "Id": 12174, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2018-07-24T09:40:54", + "TransactionId": 93239351, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 425, + "CustomerInfo": 93080649, + "PaymentType": "Cash" + }, + { + "Id": 12175, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2018-02-14T08:23:17", + "TransactionId": 54557452, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 901, + "CustomerInfo": 33578059, + "PaymentType": "Credit Card" + }, + { + "Id": 12176, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2017-03-03T19:48:17", + "TransactionId": 63802144, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 358, + "CustomerInfo": 33062474, + "PaymentType": "Cash" + }, + { + "Id": 12177, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-04-14T10:59:57", + "TransactionId": 42266384, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 626, + "CustomerInfo": 13960877, + "PaymentType": "Cash" + }, + { + "Id": 12178, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-06-25T18:18:00", + "TransactionId": 88650991, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 513, + "CustomerInfo": 31629270, + "PaymentType": "Cash" + }, + { + "Id": 12179, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-06-10T12:28:13", + "TransactionId": 25791690, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 554, + "CustomerInfo": 49916245, + "PaymentType": "Cash" + }, + { + "Id": 12180, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-10-19T11:30:29", + "TransactionId": 49780172, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 739, + "CustomerInfo": 21846490, + "PaymentType": "Debit Card" + }, + { + "Id": 12181, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2017-10-05T15:13:49", + "TransactionId": 39702803, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 68, + "CustomerInfo": 4611572, + "PaymentType": "Debit Card" + }, + { + "Id": 12182, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-12-28T14:23:25", + "TransactionId": 12257060, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 992, + "CustomerInfo": 80576955, + "PaymentType": "Cash" + }, + { + "Id": 12183, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2016-06-03T14:08:44", + "TransactionId": 92595579, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 619, + "CustomerInfo": 54058565, + "PaymentType": "Credit Card" + }, + { + "Id": 12184, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-11-27T14:43:52", + "TransactionId": 17293570, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 654, + "CustomerInfo": 22044884, + "PaymentType": "Credit Card" + }, + { + "Id": 12185, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-11-30T10:12:35", + "TransactionId": 58911718, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 845, + "CustomerInfo": 85309698, + "PaymentType": "Credit Card" + }, + { + "Id": 12186, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2019-08-05T15:15:33", + "TransactionId": 28130239, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 922, + "CustomerInfo": 25284686, + "PaymentType": "Cash" + }, + { + "Id": 12187, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-11-01T17:50:47", + "TransactionId": 7390332, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 784, + "CustomerInfo": 61322364, + "PaymentType": "Credit Card" + }, + { + "Id": 12188, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2019-06-07T07:43:58", + "TransactionId": 83115745, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 113, + "CustomerInfo": 40605580, + "PaymentType": "Cash" + }, + { + "Id": 12189, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-05-18T08:08:44", + "TransactionId": 5809024, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 1, + "CustomerInfo": 50280986, + "PaymentType": "Debit Card" + }, + { + "Id": 12190, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-09-11T18:27:48", + "TransactionId": 77861902, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 715, + "CustomerInfo": 8977380, + "PaymentType": "Credit Card" + }, + { + "Id": 12191, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2017-02-12T07:56:12", + "TransactionId": 13942780, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 697, + "CustomerInfo": 68077216, + "PaymentType": "Cash" + }, + { + "Id": 12192, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2016-02-17T19:15:45", + "TransactionId": 19028908, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 684, + "CustomerInfo": 87708512, + "PaymentType": "Cash" + }, + { + "Id": 12193, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-07-03T14:15:04", + "TransactionId": 89199725, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 189, + "CustomerInfo": 11239910, + "PaymentType": "Debit Card" + }, + { + "Id": 12194, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-01-07T07:59:57", + "TransactionId": 78703368, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 887, + "CustomerInfo": 51716666, + "PaymentType": "Credit Card" + }, + { + "Id": 12195, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-09-26T14:49:12", + "TransactionId": 51053399, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 634, + "CustomerInfo": 17478059, + "PaymentType": "Credit Card" + }, + { + "Id": 12196, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2019-03-23T15:49:06", + "TransactionId": 29924967, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 572, + "CustomerInfo": 60500778, + "PaymentType": "Credit Card" + }, + { + "Id": 12197, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2016-12-05T07:17:54", + "TransactionId": 34235936, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 122, + "CustomerInfo": 69102234, + "PaymentType": "Credit Card" + }, + { + "Id": 12198, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2019-04-03T16:33:01", + "TransactionId": 73017896, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 245, + "CustomerInfo": 76879242, + "PaymentType": "Credit Card" + }, + { + "Id": 12199, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2017-11-12T10:32:44", + "TransactionId": 14170098, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 70, + "CustomerInfo": 24058422, + "PaymentType": "Cash" + }, + { + "Id": 12200, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-02-22T11:48:37", + "TransactionId": 31647690, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 110, + "CustomerInfo": 42153801, + "PaymentType": "Debit Card" + }, + { + "Id": 12201, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2019-05-11T10:50:10", + "TransactionId": 55440465, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 871, + "CustomerInfo": 37050905, + "PaymentType": "Debit Card" + }, + { + "Id": 12202, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-07-11T09:41:46", + "TransactionId": 94202718, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 371, + "CustomerInfo": 92979953, + "PaymentType": "Debit Card" + }, + { + "Id": 12203, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-11-25T13:41:23", + "TransactionId": 3493918, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 695, + "CustomerInfo": 85134795, + "PaymentType": "Credit Card" + }, + { + "Id": 12204, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2016-08-16T08:30:55", + "TransactionId": 23962035, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 39, + "CustomerInfo": 57399517, + "PaymentType": "Credit Card" + }, + { + "Id": 12205, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-07-07T14:09:53", + "TransactionId": 39857443, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 425, + "CustomerInfo": 33643692, + "PaymentType": "Credit Card" + }, + { + "Id": 12206, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2018-05-09T11:06:09", + "TransactionId": 30901990, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 164, + "CustomerInfo": 86849630, + "PaymentType": "Cash" + }, + { + "Id": 12207, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-12-13T15:23:46", + "TransactionId": 35734724, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 637, + "CustomerInfo": 34642984, + "PaymentType": "Debit Card" + }, + { + "Id": 12208, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-10-31T10:21:39", + "TransactionId": 83796404, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 56040272, + "PaymentType": "Credit Card" + }, + { + "Id": 12209, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-11-29T15:53:25", + "TransactionId": 16695261, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 23006237, + "PaymentType": "Debit Card" + }, + { + "Id": 12210, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2017-08-28T15:13:24", + "TransactionId": 18803554, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 245, + "CustomerInfo": 9896715, + "PaymentType": "Debit Card" + }, + { + "Id": 12211, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-02-17T09:13:41", + "TransactionId": 96833776, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 992, + "CustomerInfo": 56943957, + "PaymentType": "Debit Card" + }, + { + "Id": 12212, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2019-07-15T16:14:27", + "TransactionId": 49141556, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 491, + "CustomerInfo": 2445027, + "PaymentType": "Debit Card" + }, + { + "Id": 12213, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2019-09-21T16:54:03", + "TransactionId": 35190305, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 743, + "CustomerInfo": 61126447, + "PaymentType": "Debit Card" + }, + { + "Id": 12214, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-11-22T11:49:03", + "TransactionId": 76943764, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 310, + "CustomerInfo": 65365695, + "PaymentType": "Debit Card" + }, + { + "Id": 12215, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2019-11-03T11:08:01", + "TransactionId": 4831365, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 471, + "CustomerInfo": 2887942, + "PaymentType": "Cash" + }, + { + "Id": 12216, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-05-29T10:52:45", + "TransactionId": 50630360, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 755, + "CustomerInfo": 11016439, + "PaymentType": "Credit Card" + }, + { + "Id": 12217, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-02-15T11:27:36", + "TransactionId": 31859171, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 485, + "CustomerInfo": 51987572, + "PaymentType": "Cash" + }, + { + "Id": 12218, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2016-11-28T16:13:44", + "TransactionId": 92775612, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 317, + "CustomerInfo": 34835613, + "PaymentType": "Credit Card" + }, + { + "Id": 12219, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2016-01-13T17:19:32", + "TransactionId": 89264341, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 506, + "CustomerInfo": 16327715, + "PaymentType": "Credit Card" + }, + { + "Id": 12220, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-01-26T19:27:07", + "TransactionId": 32165172, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 531, + "CustomerInfo": 37753828, + "PaymentType": "Credit Card" + }, + { + "Id": 12221, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2016-06-01T12:10:57", + "TransactionId": 64654877, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 812, + "CustomerInfo": 68007310, + "PaymentType": "Cash" + }, + { + "Id": 12222, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2017-07-18T08:06:52", + "TransactionId": 36915864, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 443, + "CustomerInfo": 73629589, + "PaymentType": "Debit Card" + }, + { + "Id": 12223, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-06-10T18:34:51", + "TransactionId": 77808742, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 338, + "CustomerInfo": 65257620, + "PaymentType": "Debit Card" + }, + { + "Id": 12224, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2018-11-29T12:53:08", + "TransactionId": 98090170, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 317, + "CustomerInfo": 46470, + "PaymentType": "Credit Card" + }, + { + "Id": 12225, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-09-19T16:30:09", + "TransactionId": 39920458, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 366, + "CustomerInfo": 79101475, + "PaymentType": "Cash" + }, + { + "Id": 12226, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2017-05-25T08:40:16", + "TransactionId": 77602634, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 136, + "CustomerInfo": 32948979, + "PaymentType": "Debit Card" + }, + { + "Id": 12227, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-04-04T19:40:39", + "TransactionId": 79954938, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 838, + "CustomerInfo": 92457584, + "PaymentType": "Cash" + }, + { + "Id": 12228, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-04-12T17:05:51", + "TransactionId": 40035667, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 279, + "CustomerInfo": 40355319, + "PaymentType": "Cash" + }, + { + "Id": 12229, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-06-15T11:35:23", + "TransactionId": 48528245, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 119, + "CustomerInfo": 88144315, + "PaymentType": "Cash" + }, + { + "Id": 12230, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-05-13T13:14:53", + "TransactionId": 11712329, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 501, + "CustomerInfo": 90031848, + "PaymentType": "Credit Card" + }, + { + "Id": 12231, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-01-24T12:14:15", + "TransactionId": 23037877, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 324, + "CustomerInfo": 94573516, + "PaymentType": "Debit Card" + }, + { + "Id": 12232, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2019-02-27T07:40:13", + "TransactionId": 65317067, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 93, + "CustomerInfo": 913543, + "PaymentType": "Cash" + }, + { + "Id": 12233, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-12-23T07:06:40", + "TransactionId": 80111342, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 365, + "CustomerInfo": 62334812, + "PaymentType": "Credit Card" + }, + { + "Id": 12234, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2017-08-28T15:07:12", + "TransactionId": 52974632, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 556, + "CustomerInfo": 2731296, + "PaymentType": "Credit Card" + }, + { + "Id": 12235, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2019-06-21T17:59:25", + "TransactionId": 30064756, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 780, + "CustomerInfo": 58238980, + "PaymentType": "Cash" + }, + { + "Id": 12236, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-08-16T15:22:02", + "TransactionId": 89157078, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 715, + "CustomerInfo": 95841284, + "PaymentType": "Credit Card" + }, + { + "Id": 12237, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2017-05-22T09:04:54", + "TransactionId": 15117894, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 156, + "CustomerInfo": 98758051, + "PaymentType": "Credit Card" + }, + { + "Id": 12238, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2017-10-08T15:03:53", + "TransactionId": 96623908, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 526, + "CustomerInfo": 28603293, + "PaymentType": "Debit Card" + }, + { + "Id": 12239, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-10-23T10:54:55", + "TransactionId": 56790330, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 329, + "CustomerInfo": 81240996, + "PaymentType": "Credit Card" + }, + { + "Id": 12240, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-10-02T18:49:58", + "TransactionId": 29310768, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 646, + "CustomerInfo": 57337207, + "PaymentType": "Debit Card" + }, + { + "Id": 12241, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2017-07-31T17:05:08", + "TransactionId": 26409999, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 171, + "CustomerInfo": 9681504, + "PaymentType": "Cash" + }, + { + "Id": 12242, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2019-02-16T13:12:52", + "TransactionId": 8006693, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 184, + "CustomerInfo": 95559579, + "PaymentType": "Debit Card" + }, + { + "Id": 12243, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2017-05-24T09:59:11", + "TransactionId": 20821231, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 34, + "CustomerInfo": 34987285, + "PaymentType": "Cash" + }, + { + "Id": 12244, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2019-03-22T16:15:10", + "TransactionId": 63081929, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 251, + "CustomerInfo": 23514263, + "PaymentType": "Cash" + }, + { + "Id": 12245, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-04-07T19:32:01", + "TransactionId": 93407247, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 351, + "CustomerInfo": 52611353, + "PaymentType": "Debit Card" + }, + { + "Id": 12246, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-07-27T12:48:06", + "TransactionId": 89949566, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 464, + "CustomerInfo": 94301745, + "PaymentType": "Debit Card" + }, + { + "Id": 12247, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2017-09-21T14:11:28", + "TransactionId": 518017, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 69900476, + "PaymentType": "Debit Card" + }, + { + "Id": 12248, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2016-02-02T19:04:48", + "TransactionId": 64200850, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 21528669, + "PaymentType": "Cash" + }, + { + "Id": 12249, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-10-14T18:38:27", + "TransactionId": 2652378, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 806, + "CustomerInfo": 73339682, + "PaymentType": "Cash" + }, + { + "Id": 12250, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-05-17T07:13:26", + "TransactionId": 3891692, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 469, + "CustomerInfo": 75124928, + "PaymentType": "Cash" + }, + { + "Id": 12251, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2016-11-07T10:19:12", + "TransactionId": 37747502, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 431, + "CustomerInfo": 29814950, + "PaymentType": "Credit Card" + }, + { + "Id": 12252, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2018-01-25T13:05:14", + "TransactionId": 52608452, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 762, + "CustomerInfo": 19399404, + "PaymentType": "Debit Card" + }, + { + "Id": 12253, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2017-10-12T14:27:01", + "TransactionId": 868250, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 520, + "CustomerInfo": 56732592, + "PaymentType": "Debit Card" + }, + { + "Id": 12254, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2018-11-12T10:50:53", + "TransactionId": 86308137, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 88246200, + "PaymentType": "Cash" + }, + { + "Id": 12255, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2018-01-12T08:14:04", + "TransactionId": 49500034, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 224, + "CustomerInfo": 53027606, + "PaymentType": "Debit Card" + }, + { + "Id": 12256, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-10-01T11:04:51", + "TransactionId": 47472962, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 418, + "CustomerInfo": 33159661, + "PaymentType": "Credit Card" + }, + { + "Id": 12257, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-02-15T13:00:03", + "TransactionId": 9443491, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 624, + "CustomerInfo": 72156097, + "PaymentType": "Credit Card" + }, + { + "Id": 12258, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-12-15T09:41:11", + "TransactionId": 37614825, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 700, + "CustomerInfo": 65911979, + "PaymentType": "Credit Card" + }, + { + "Id": 12259, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2018-10-27T17:50:56", + "TransactionId": 64008509, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 840, + "CustomerInfo": 76392259, + "PaymentType": "Credit Card" + }, + { + "Id": 12260, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2016-03-12T08:22:16", + "TransactionId": 13884715, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 393, + "CustomerInfo": 8296065, + "PaymentType": "Cash" + }, + { + "Id": 12261, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-03-27T13:14:36", + "TransactionId": 53114802, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 259, + "CustomerInfo": 43796539, + "PaymentType": "Cash" + }, + { + "Id": 12262, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2018-01-17T12:20:36", + "TransactionId": 17597333, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 96167071, + "PaymentType": "Cash" + }, + { + "Id": 12263, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2016-01-05T19:50:36", + "TransactionId": 33601406, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 506, + "CustomerInfo": 60981108, + "PaymentType": "Cash" + }, + { + "Id": 12264, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2019-08-10T16:18:20", + "TransactionId": 98452699, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 452, + "CustomerInfo": 25997767, + "PaymentType": "Credit Card" + }, + { + "Id": 12265, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2019-07-22T15:49:15", + "TransactionId": 27797698, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 958, + "CustomerInfo": 85363417, + "PaymentType": "Credit Card" + }, + { + "Id": 12266, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-02-26T19:07:15", + "TransactionId": 33397859, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 777, + "CustomerInfo": 86275071, + "PaymentType": "Debit Card" + }, + { + "Id": 12267, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2016-05-22T08:50:38", + "TransactionId": 80366247, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 173, + "CustomerInfo": 90634019, + "PaymentType": "Cash" + }, + { + "Id": 12268, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-06-05T08:27:01", + "TransactionId": 38126463, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 106, + "CustomerInfo": 5948422, + "PaymentType": "Credit Card" + }, + { + "Id": 12269, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2017-12-03T10:52:45", + "TransactionId": 43586923, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 454, + "CustomerInfo": 27943219, + "PaymentType": "Credit Card" + }, + { + "Id": 12270, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-09-20T14:19:06", + "TransactionId": 20376218, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 89, + "CustomerInfo": 19616617, + "PaymentType": "Credit Card" + }, + { + "Id": 12271, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-05-17T14:12:55", + "TransactionId": 7809435, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 631, + "CustomerInfo": 52122567, + "PaymentType": "Debit Card" + }, + { + "Id": 12272, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-04-25T11:35:23", + "TransactionId": 43664294, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 791, + "CustomerInfo": 18854762, + "PaymentType": "Debit Card" + }, + { + "Id": 12273, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2016-08-09T11:47:20", + "TransactionId": 33918935, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 427, + "CustomerInfo": 14615558, + "PaymentType": "Credit Card" + }, + { + "Id": 12274, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2016-12-06T15:39:27", + "TransactionId": 49201100, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 723, + "CustomerInfo": 80655243, + "PaymentType": "Credit Card" + }, + { + "Id": 12275, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-12-07T07:13:18", + "TransactionId": 16718497, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 472, + "CustomerInfo": 90608003, + "PaymentType": "Debit Card" + }, + { + "Id": 12276, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2017-09-05T19:17:54", + "TransactionId": 61516636, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 146, + "CustomerInfo": 76648071, + "PaymentType": "Credit Card" + }, + { + "Id": 12277, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-12-21T14:17:48", + "TransactionId": 3462771, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 656, + "CustomerInfo": 14633756, + "PaymentType": "Debit Card" + }, + { + "Id": 12278, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2016-03-06T18:09:04", + "TransactionId": 35060348, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 403, + "CustomerInfo": 1295858, + "PaymentType": "Credit Card" + }, + { + "Id": 12279, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-05-19T18:54:52", + "TransactionId": 12400600, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 424, + "CustomerInfo": 60331836, + "PaymentType": "Debit Card" + }, + { + "Id": 12280, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2019-12-07T07:39:04", + "TransactionId": 51787975, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 277, + "CustomerInfo": 26311238, + "PaymentType": "Credit Card" + }, + { + "Id": 12281, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-12-10T18:43:21", + "TransactionId": 31029422, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 426, + "CustomerInfo": 93242628, + "PaymentType": "Cash" + }, + { + "Id": 12282, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-12-25T09:16:25", + "TransactionId": 36906682, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 684, + "CustomerInfo": 50225324, + "PaymentType": "Credit Card" + }, + { + "Id": 12283, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-09-14T12:32:50", + "TransactionId": 56336441, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 242, + "CustomerInfo": 16463263, + "PaymentType": "Debit Card" + }, + { + "Id": 12284, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2019-11-18T16:24:23", + "TransactionId": 40072016, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 218, + "CustomerInfo": 35229278, + "PaymentType": "Debit Card" + }, + { + "Id": 12285, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-06-13T08:46:45", + "TransactionId": 56384259, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 28, + "CustomerInfo": 53715282, + "PaymentType": "Cash" + }, + { + "Id": 12286, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-06-07T14:48:46", + "TransactionId": 7592181, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 663, + "CustomerInfo": 96811910, + "PaymentType": "Cash" + }, + { + "Id": 12287, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2018-08-25T18:06:20", + "TransactionId": 79806129, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 977, + "CustomerInfo": 22807796, + "PaymentType": "Credit Card" + }, + { + "Id": 12288, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2017-11-14T16:15:01", + "TransactionId": 41819278, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 877, + "CustomerInfo": 10906565, + "PaymentType": "Credit Card" + }, + { + "Id": 12289, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-01-07T12:50:50", + "TransactionId": 67613666, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 478, + "CustomerInfo": 48651573, + "PaymentType": "Credit Card" + }, + { + "Id": 12290, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-04-16T10:48:43", + "TransactionId": 36986784, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 228, + "CustomerInfo": 30151432, + "PaymentType": "Cash" + }, + { + "Id": 12291, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-01-03T09:27:30", + "TransactionId": 49808279, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 476, + "CustomerInfo": 35293073, + "PaymentType": "Credit Card" + }, + { + "Id": 12292, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-12-21T13:11:25", + "TransactionId": 85291285, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 609, + "CustomerInfo": 75966200, + "PaymentType": "Cash" + }, + { + "Id": 12293, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-11-16T10:36:37", + "TransactionId": 37940998, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 164, + "CustomerInfo": 85402713, + "PaymentType": "Credit Card" + }, + { + "Id": 12294, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2019-03-28T07:33:10", + "TransactionId": 89710801, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 67, + "CustomerInfo": 59860960, + "PaymentType": "Cash" + }, + { + "Id": 12295, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-08-04T10:51:10", + "TransactionId": 65863994, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 66, + "CustomerInfo": 42383828, + "PaymentType": "Cash" + }, + { + "Id": 12296, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2018-05-15T09:55:52", + "TransactionId": 96313677, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 816, + "CustomerInfo": 75521676, + "PaymentType": "Credit Card" + }, + { + "Id": 12297, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-10-11T19:31:52", + "TransactionId": 76727268, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 7, + "CustomerInfo": 70915808, + "PaymentType": "Cash" + }, + { + "Id": 12298, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-01-11T08:36:49", + "TransactionId": 22425935, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 26, + "CustomerInfo": 51024454, + "PaymentType": "Debit Card" + }, + { + "Id": 12299, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-11-03T12:07:21", + "TransactionId": 20062841, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 710, + "CustomerInfo": 82952393, + "PaymentType": "Cash" + }, + { + "Id": 12300, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2016-04-11T07:44:07", + "TransactionId": 29456172, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 173, + "CustomerInfo": 54025529, + "PaymentType": "Debit Card" + }, + { + "Id": 12301, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2019-10-11T10:43:49", + "TransactionId": 58954573, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 871, + "CustomerInfo": 94967540, + "PaymentType": "Cash" + }, + { + "Id": 12302, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2016-07-05T10:53:28", + "TransactionId": 82590393, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 679, + "CustomerInfo": 32332331, + "PaymentType": "Debit Card" + }, + { + "Id": 12303, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-10-16T17:03:42", + "TransactionId": 47934590, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 277, + "CustomerInfo": 43628348, + "PaymentType": "Credit Card" + }, + { + "Id": 12304, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-01-25T18:02:53", + "TransactionId": 29807656, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 117, + "CustomerInfo": 35384240, + "PaymentType": "Cash" + }, + { + "Id": 12305, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2019-09-10T14:04:16", + "TransactionId": 54380226, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 691, + "CustomerInfo": 82436744, + "PaymentType": "Debit Card" + }, + { + "Id": 12306, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2016-11-24T13:02:21", + "TransactionId": 26759680, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 979, + "CustomerInfo": 18307365, + "PaymentType": "Cash" + }, + { + "Id": 12307, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-02-08T07:20:30", + "TransactionId": 55733070, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 288, + "CustomerInfo": 21394560, + "PaymentType": "Credit Card" + }, + { + "Id": 12308, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2017-08-12T13:17:11", + "TransactionId": 96282390, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 898, + "CustomerInfo": 31962043, + "PaymentType": "Credit Card" + }, + { + "Id": 12309, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2018-04-06T17:08:01", + "TransactionId": 4902218, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 765, + "CustomerInfo": 26935131, + "PaymentType": "Credit Card" + }, + { + "Id": 12310, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2019-06-18T07:51:19", + "TransactionId": 29487872, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 279, + "CustomerInfo": 41384547, + "PaymentType": "Debit Card" + }, + { + "Id": 12311, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-02-03T08:44:44", + "TransactionId": 161258, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 2, + "CustomerInfo": 70244149, + "PaymentType": "Cash" + }, + { + "Id": 12312, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2016-02-19T17:59:17", + "TransactionId": 45046566, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 972, + "CustomerInfo": 50922715, + "PaymentType": "Credit Card" + }, + { + "Id": 12313, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2018-07-16T11:47:46", + "TransactionId": 21310286, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 729, + "CustomerInfo": 60213158, + "PaymentType": "Cash" + }, + { + "Id": 12314, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-11-19T14:07:00", + "TransactionId": 88657211, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 821, + "CustomerInfo": 3033579, + "PaymentType": "Debit Card" + }, + { + "Id": 12315, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-06-25T15:08:38", + "TransactionId": 23272368, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 28, + "CustomerInfo": 941804, + "PaymentType": "Credit Card" + }, + { + "Id": 12316, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-03-18T14:10:11", + "TransactionId": 75868153, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 668, + "CustomerInfo": 16075169, + "PaymentType": "Debit Card" + }, + { + "Id": 12317, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-11-10T08:38:59", + "TransactionId": 5465704, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 651, + "CustomerInfo": 14526063, + "PaymentType": "Cash" + }, + { + "Id": 12318, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2017-04-13T11:21:42", + "TransactionId": 29200982, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 363, + "CustomerInfo": 32746080, + "PaymentType": "Credit Card" + }, + { + "Id": 12319, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2017-01-07T13:53:02", + "TransactionId": 20558699, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 156, + "CustomerInfo": 95248390, + "PaymentType": "Cash" + }, + { + "Id": 12320, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2017-01-27T17:53:14", + "TransactionId": 20100464, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 98, + "CustomerInfo": 74937249, + "PaymentType": "Debit Card" + }, + { + "Id": 12321, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2019-11-30T18:25:12", + "TransactionId": 76770830, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 335, + "CustomerInfo": 63161578, + "PaymentType": "Debit Card" + }, + { + "Id": 12322, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-01-16T07:37:29", + "TransactionId": 53147868, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 661, + "CustomerInfo": 39470332, + "PaymentType": "Credit Card" + }, + { + "Id": 12323, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-10-20T15:32:33", + "TransactionId": 28466103, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 712, + "CustomerInfo": 51423970, + "PaymentType": "Credit Card" + }, + { + "Id": 12324, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2019-10-10T17:26:18", + "TransactionId": 82979353, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 491, + "CustomerInfo": 16644144, + "PaymentType": "Credit Card" + }, + { + "Id": 12325, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2016-05-07T13:41:40", + "TransactionId": 21383359, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 277, + "CustomerInfo": 71660980, + "PaymentType": "Credit Card" + }, + { + "Id": 12326, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-07-12T17:03:59", + "TransactionId": 19114597, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 495, + "CustomerInfo": 150374, + "PaymentType": "Cash" + }, + { + "Id": 12327, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-07-13T07:55:21", + "TransactionId": 97274658, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 467, + "CustomerInfo": 85916409, + "PaymentType": "Debit Card" + }, + { + "Id": 12328, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-03-02T18:39:27", + "TransactionId": 2045131, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 126, + "CustomerInfo": 8628491, + "PaymentType": "Debit Card" + }, + { + "Id": 12329, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-01-17T15:54:35", + "TransactionId": 86627932, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 895, + "CustomerInfo": 29244109, + "PaymentType": "Credit Card" + }, + { + "Id": 12330, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2018-04-16T09:22:28", + "TransactionId": 45862343, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 65, + "CustomerInfo": 8220702, + "PaymentType": "Debit Card" + }, + { + "Id": 12331, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2017-05-05T13:28:42", + "TransactionId": 66245633, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 427, + "CustomerInfo": 66664533, + "PaymentType": "Credit Card" + }, + { + "Id": 12332, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-12-15T17:13:38", + "TransactionId": 22981654, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 384, + "CustomerInfo": 59854251, + "PaymentType": "Cash" + }, + { + "Id": 12333, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-03-02T12:59:20", + "TransactionId": 22044978, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 464, + "CustomerInfo": 60249656, + "PaymentType": "Cash" + }, + { + "Id": 12334, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2017-03-05T07:34:36", + "TransactionId": 52756266, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 345, + "CustomerInfo": 86419820, + "PaymentType": "Debit Card" + }, + { + "Id": 12335, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2017-12-11T18:57:53", + "TransactionId": 42292158, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 1, + "CustomerInfo": 91003662, + "PaymentType": "Cash" + }, + { + "Id": 12336, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2018-05-23T07:47:17", + "TransactionId": 44615335, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 598, + "CustomerInfo": 37248386, + "PaymentType": "Debit Card" + }, + { + "Id": 12337, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2017-10-31T18:56:44", + "TransactionId": 39667561, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 901, + "CustomerInfo": 42967200, + "PaymentType": "Cash" + }, + { + "Id": 12338, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2017-07-23T14:35:48", + "TransactionId": 7897678, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 509, + "CustomerInfo": 5374415, + "PaymentType": "Debit Card" + }, + { + "Id": 12339, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2016-10-29T11:23:17", + "TransactionId": 25817782, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 334, + "CustomerInfo": 15023800, + "PaymentType": "Credit Card" + }, + { + "Id": 12340, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2018-09-03T07:05:14", + "TransactionId": 54832198, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 913, + "CustomerInfo": 68311043, + "PaymentType": "Credit Card" + }, + { + "Id": 12341, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2017-09-04T19:12:35", + "TransactionId": 40718131, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 543, + "CustomerInfo": 76453098, + "PaymentType": "Cash" + }, + { + "Id": 12342, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-04-23T11:37:06", + "TransactionId": 26271412, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 380, + "CustomerInfo": 95677342, + "PaymentType": "Credit Card" + }, + { + "Id": 12343, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2019-09-17T19:29:34", + "TransactionId": 19393698, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 69, + "CustomerInfo": 28523673, + "PaymentType": "Credit Card" + }, + { + "Id": 12344, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2016-08-23T13:22:05", + "TransactionId": 81392462, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 684, + "CustomerInfo": 62123734, + "PaymentType": "Cash" + }, + { + "Id": 12345, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-01-25T10:50:53", + "TransactionId": 41317295, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 618, + "CustomerInfo": 68700066, + "PaymentType": "Credit Card" + }, + { + "Id": 12346, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-08-03T14:59:34", + "TransactionId": 74425305, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 901, + "CustomerInfo": 67965984, + "PaymentType": "Cash" + }, + { + "Id": 12347, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2019-06-25T10:00:20", + "TransactionId": 82604707, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 465, + "CustomerInfo": 84548716, + "PaymentType": "Cash" + }, + { + "Id": 12348, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-07-12T10:56:47", + "TransactionId": 68053748, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 351, + "CustomerInfo": 78057229, + "PaymentType": "Credit Card" + }, + { + "Id": 12349, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-10-30T17:40:51", + "TransactionId": 9307701, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 79454444, + "PaymentType": "Cash" + }, + { + "Id": 12350, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-09-25T16:16:45", + "TransactionId": 99146199, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 485, + "CustomerInfo": 23527237, + "PaymentType": "Cash" + }, + { + "Id": 12351, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2018-06-19T14:30:46", + "TransactionId": 55548883, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 912, + "CustomerInfo": 41674245, + "PaymentType": "Cash" + }, + { + "Id": 12352, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-02-04T19:18:29", + "TransactionId": 27404285, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 606, + "CustomerInfo": 18601768, + "PaymentType": "Debit Card" + }, + { + "Id": 12353, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2018-06-07T14:30:37", + "TransactionId": 54215676, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 607, + "CustomerInfo": 35426234, + "PaymentType": "Credit Card" + }, + { + "Id": 12354, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-09-02T08:56:07", + "TransactionId": 26655338, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 189, + "CustomerInfo": 39788821, + "PaymentType": "Credit Card" + }, + { + "Id": 12355, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-08-18T09:14:33", + "TransactionId": 56208773, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 67, + "CustomerInfo": 20689493, + "PaymentType": "Credit Card" + }, + { + "Id": 12356, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2016-06-24T08:34:39", + "TransactionId": 71237022, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 56, + "CustomerInfo": 58598044, + "PaymentType": "Debit Card" + }, + { + "Id": 12357, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2016-12-28T11:04:42", + "TransactionId": 64797196, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 766, + "CustomerInfo": 98390659, + "PaymentType": "Debit Card" + }, + { + "Id": 12358, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-10-31T08:02:50", + "TransactionId": 75205480, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 532, + "CustomerInfo": 18844602, + "PaymentType": "Credit Card" + }, + { + "Id": 12359, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2016-05-25T13:53:28", + "TransactionId": 38081232, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 234, + "CustomerInfo": 39880874, + "PaymentType": "Cash" + }, + { + "Id": 12360, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2019-07-01T17:24:43", + "TransactionId": 77858352, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 830, + "CustomerInfo": 73126171, + "PaymentType": "Debit Card" + }, + { + "Id": 12361, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-05-22T10:18:29", + "TransactionId": 80812618, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 19748205, + "PaymentType": "Cash" + }, + { + "Id": 12362, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2016-07-13T13:15:36", + "TransactionId": 41617722, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 983, + "CustomerInfo": 93174882, + "PaymentType": "Debit Card" + }, + { + "Id": 12363, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-09-03T09:35:51", + "TransactionId": 63777792, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 781, + "CustomerInfo": 33353295, + "PaymentType": "Credit Card" + }, + { + "Id": 12364, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2016-11-11T15:55:35", + "TransactionId": 38989682, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 114, + "CustomerInfo": 66211136, + "PaymentType": "Cash" + }, + { + "Id": 12365, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-10-08T10:04:48", + "TransactionId": 6524217, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 216, + "CustomerInfo": 4680190, + "PaymentType": "Debit Card" + }, + { + "Id": 12366, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-10-10T08:07:52", + "TransactionId": 97971699, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 280, + "CustomerInfo": 80345486, + "PaymentType": "Cash" + }, + { + "Id": 12367, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-06-28T10:34:19", + "TransactionId": 7580752, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 632, + "CustomerInfo": 96889029, + "PaymentType": "Credit Card" + }, + { + "Id": 12368, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-04-23T08:54:58", + "TransactionId": 40435288, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 479, + "CustomerInfo": 62234933, + "PaymentType": "Debit Card" + }, + { + "Id": 12369, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-04-21T13:06:23", + "TransactionId": 74583576, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 381, + "CustomerInfo": 27871290, + "PaymentType": "Debit Card" + }, + { + "Id": 12370, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2018-03-06T07:06:40", + "TransactionId": 24389604, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 353, + "CustomerInfo": 12522337, + "PaymentType": "Credit Card" + }, + { + "Id": 12371, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-12-27T11:51:30", + "TransactionId": 83765739, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 114, + "CustomerInfo": 68891207, + "PaymentType": "Credit Card" + }, + { + "Id": 12372, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2016-01-14T10:07:24", + "TransactionId": 15269501, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 628, + "CustomerInfo": 20355258, + "PaymentType": "Credit Card" + }, + { + "Id": 12373, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-06-20T07:02:04", + "TransactionId": 39861108, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 248, + "CustomerInfo": 65451486, + "PaymentType": "Cash" + }, + { + "Id": 12374, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2019-08-02T07:09:33", + "TransactionId": 52869038, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 433, + "CustomerInfo": 88838948, + "PaymentType": "Cash" + }, + { + "Id": 12375, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2018-01-07T19:59:31", + "TransactionId": 79785933, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 630, + "CustomerInfo": 19715294, + "PaymentType": "Cash" + }, + { + "Id": 12376, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2019-09-28T18:35:51", + "TransactionId": 26068910, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 724, + "CustomerInfo": 19783067, + "PaymentType": "Cash" + }, + { + "Id": 12377, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2017-12-10T19:41:05", + "TransactionId": 55156408, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 277, + "CustomerInfo": 91850352, + "PaymentType": "Credit Card" + }, + { + "Id": 12378, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2017-11-14T09:39:19", + "TransactionId": 71789003, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 407, + "CustomerInfo": 82612154, + "PaymentType": "Cash" + }, + { + "Id": 12379, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-06-27T10:31:35", + "TransactionId": 39194085, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 767, + "CustomerInfo": 35810810, + "PaymentType": "Cash" + }, + { + "Id": 12380, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2019-03-26T15:45:39", + "TransactionId": 45522870, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 76, + "CustomerInfo": 48281616, + "PaymentType": "Credit Card" + }, + { + "Id": 12381, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2018-08-18T10:12:52", + "TransactionId": 82753052, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 688, + "CustomerInfo": 84396975, + "PaymentType": "Debit Card" + }, + { + "Id": 12382, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-07-22T14:10:19", + "TransactionId": 48580779, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 275, + "CustomerInfo": 83387405, + "PaymentType": "Debit Card" + }, + { + "Id": 12383, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2017-12-10T19:39:48", + "TransactionId": 25655327, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 143, + "CustomerInfo": 16442829, + "PaymentType": "Debit Card" + }, + { + "Id": 12384, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-01-04T18:59:37", + "TransactionId": 74987918, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 242, + "CustomerInfo": 99412079, + "PaymentType": "Credit Card" + }, + { + "Id": 12385, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-11-13T08:09:45", + "TransactionId": 17571425, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 687, + "CustomerInfo": 17718422, + "PaymentType": "Cash" + }, + { + "Id": 12386, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2019-02-17T09:04:45", + "TransactionId": 77847781, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 817, + "CustomerInfo": 17577975, + "PaymentType": "Debit Card" + }, + { + "Id": 12387, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2018-01-14T13:35:54", + "TransactionId": 51688773, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 739, + "CustomerInfo": 57796609, + "PaymentType": "Cash" + }, + { + "Id": 12388, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2019-07-02T09:10:48", + "TransactionId": 61426939, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 644, + "CustomerInfo": 2664673, + "PaymentType": "Debit Card" + }, + { + "Id": 12389, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2019-02-03T19:04:13", + "TransactionId": 77057240, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 108, + "CustomerInfo": 20652557, + "PaymentType": "Debit Card" + }, + { + "Id": 12390, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-04-03T17:26:18", + "TransactionId": 83198697, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 602, + "CustomerInfo": 42173600, + "PaymentType": "Debit Card" + }, + { + "Id": 12391, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2018-08-09T11:04:16", + "TransactionId": 13699624, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 75, + "CustomerInfo": 93243732, + "PaymentType": "Credit Card" + }, + { + "Id": 12392, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2019-01-27T16:18:12", + "TransactionId": 86407107, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 639, + "CustomerInfo": 39175156, + "PaymentType": "Cash" + }, + { + "Id": 12393, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2017-07-18T10:29:17", + "TransactionId": 9565828, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 607, + "CustomerInfo": 13905841, + "PaymentType": "Credit Card" + }, + { + "Id": 12394, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2018-10-14T09:27:30", + "TransactionId": 64508324, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 895, + "CustomerInfo": 96607915, + "PaymentType": "Credit Card" + }, + { + "Id": 12395, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2018-02-22T10:56:56", + "TransactionId": 40117316, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 771, + "CustomerInfo": 51966964, + "PaymentType": "Cash" + }, + { + "Id": 12396, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-08-06T09:46:13", + "TransactionId": 90024185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 363, + "CustomerInfo": 98343097, + "PaymentType": "Cash" + }, + { + "Id": 12397, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2017-10-06T19:33:01", + "TransactionId": 85227620, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 717, + "CustomerInfo": 54206189, + "PaymentType": "Debit Card" + }, + { + "Id": 12398, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-06-08T14:42:09", + "TransactionId": 39885211, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 450, + "CustomerInfo": 59055845, + "PaymentType": "Debit Card" + }, + { + "Id": 12399, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2019-08-18T10:53:46", + "TransactionId": 90789995, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 19949508, + "PaymentType": "Cash" + }, + { + "Id": 12400, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-02-16T15:17:34", + "TransactionId": 19062913, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 916, + "CustomerInfo": 16036928, + "PaymentType": "Cash" + }, + { + "Id": 12401, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2016-05-01T09:48:49", + "TransactionId": 50825540, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 957, + "CustomerInfo": 82650593, + "PaymentType": "Credit Card" + }, + { + "Id": 12402, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2019-07-16T14:43:18", + "TransactionId": 20410155, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 396, + "CustomerInfo": 98023283, + "PaymentType": "Credit Card" + }, + { + "Id": 12403, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-08-04T10:39:56", + "TransactionId": 10081615, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 546, + "CustomerInfo": 48978525, + "PaymentType": "Debit Card" + }, + { + "Id": 12404, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2018-09-13T17:54:06", + "TransactionId": 12668929, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 969, + "CustomerInfo": 40990741, + "PaymentType": "Debit Card" + }, + { + "Id": 12405, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2018-08-18T19:34:19", + "TransactionId": 79403213, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 718, + "CustomerInfo": 28228231, + "PaymentType": "Credit Card" + }, + { + "Id": 12406, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-09-18T12:45:30", + "TransactionId": 93260203, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 481, + "CustomerInfo": 53400545, + "PaymentType": "Debit Card" + }, + { + "Id": 12407, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-09-19T07:17:37", + "TransactionId": 31922773, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 783, + "CustomerInfo": 12003104, + "PaymentType": "Cash" + }, + { + "Id": 12408, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-03-14T14:43:44", + "TransactionId": 94589978, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 696, + "CustomerInfo": 77402750, + "PaymentType": "Credit Card" + }, + { + "Id": 12409, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-11-02T13:18:12", + "TransactionId": 90604131, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 751, + "CustomerInfo": 47278014, + "PaymentType": "Debit Card" + }, + { + "Id": 12410, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2018-08-31T11:13:55", + "TransactionId": 76597386, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 940, + "CustomerInfo": 5976179, + "PaymentType": "Cash" + }, + { + "Id": 12411, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-04-26T08:45:27", + "TransactionId": 21522990, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 87, + "CustomerInfo": 81774543, + "PaymentType": "Debit Card" + }, + { + "Id": 12412, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-09-22T15:40:28", + "TransactionId": 50777298, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 56, + "CustomerInfo": 98880441, + "PaymentType": "Debit Card" + }, + { + "Id": 12413, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-10-21T12:39:36", + "TransactionId": 71344123, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 555, + "CustomerInfo": 88202258, + "PaymentType": "Debit Card" + }, + { + "Id": 12414, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-01-30T18:27:22", + "TransactionId": 58155363, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 903, + "CustomerInfo": 32871772, + "PaymentType": "Debit Card" + }, + { + "Id": 12415, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2019-01-06T16:03:56", + "TransactionId": 43080066, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 831, + "CustomerInfo": 47282629, + "PaymentType": "Credit Card" + }, + { + "Id": 12416, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-06-07T08:14:04", + "TransactionId": 32651742, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 849, + "CustomerInfo": 20438967, + "PaymentType": "Credit Card" + }, + { + "Id": 12417, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-02-27T11:11:28", + "TransactionId": 62961345, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 93355193, + "PaymentType": "Debit Card" + }, + { + "Id": 12418, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-08-20T16:24:58", + "TransactionId": 87284511, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 693, + "CustomerInfo": 98415567, + "PaymentType": "Credit Card" + }, + { + "Id": 12419, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-05-24T09:00:52", + "TransactionId": 3614883, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 916, + "CustomerInfo": 87948592, + "PaymentType": "Debit Card" + }, + { + "Id": 12420, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-08-08T09:06:29", + "TransactionId": 61497760, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 125, + "CustomerInfo": 59588576, + "PaymentType": "Credit Card" + }, + { + "Id": 12421, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-12-11T08:56:59", + "TransactionId": 10034435, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 130, + "CustomerInfo": 35134502, + "PaymentType": "Cash" + }, + { + "Id": 12422, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-12-01T07:04:13", + "TransactionId": 6586270, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 893, + "CustomerInfo": 67699089, + "PaymentType": "Credit Card" + }, + { + "Id": 12423, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2017-06-17T15:55:26", + "TransactionId": 87740628, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 360, + "CustomerInfo": 7008103, + "PaymentType": "Debit Card" + }, + { + "Id": 12424, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-08-08T10:16:36", + "TransactionId": 85626097, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 746, + "CustomerInfo": 16008113, + "PaymentType": "Debit Card" + }, + { + "Id": 12425, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-09-25T07:21:22", + "TransactionId": 94142000, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 919, + "CustomerInfo": 21784378, + "PaymentType": "Credit Card" + }, + { + "Id": 12426, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2019-11-26T16:05:14", + "TransactionId": 50800991, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 203, + "CustomerInfo": 76444960, + "PaymentType": "Debit Card" + }, + { + "Id": 12427, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2016-09-30T12:29:23", + "TransactionId": 64573318, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 253, + "CustomerInfo": 3071922, + "PaymentType": "Credit Card" + }, + { + "Id": 12428, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-07-24T11:14:21", + "TransactionId": 27605406, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 131, + "CustomerInfo": 99115640, + "PaymentType": "Cash" + }, + { + "Id": 12429, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2019-05-24T19:27:59", + "TransactionId": 71554398, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 348, + "CustomerInfo": 83967262, + "PaymentType": "Debit Card" + }, + { + "Id": 12430, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-03-21T07:03:30", + "TransactionId": 71627654, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 1000, + "CustomerInfo": 51480011, + "PaymentType": "Cash" + }, + { + "Id": 12431, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-12-28T13:13:00", + "TransactionId": 66271295, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 46008690, + "PaymentType": "Debit Card" + }, + { + "Id": 12432, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2017-03-03T13:40:22", + "TransactionId": 39320549, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 897, + "CustomerInfo": 89938453, + "PaymentType": "Cash" + }, + { + "Id": 12433, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2017-06-11T12:37:35", + "TransactionId": 43492190, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 557, + "CustomerInfo": 7484942, + "PaymentType": "Debit Card" + }, + { + "Id": 12434, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2019-03-17T10:08:07", + "TransactionId": 99121952, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 882, + "CustomerInfo": 6236091, + "PaymentType": "Cash" + }, + { + "Id": 12435, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-05-25T09:22:36", + "TransactionId": 23180259, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 46383264, + "PaymentType": "Cash" + }, + { + "Id": 12436, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2018-10-05T14:12:37", + "TransactionId": 65339433, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 608, + "CustomerInfo": 9950630, + "PaymentType": "Debit Card" + }, + { + "Id": 12437, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-04-12T10:51:53", + "TransactionId": 6093687, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 329, + "CustomerInfo": 93648706, + "PaymentType": "Debit Card" + }, + { + "Id": 12438, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-10-25T08:46:36", + "TransactionId": 1167452, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 76, + "CustomerInfo": 12798211, + "PaymentType": "Credit Card" + }, + { + "Id": 12439, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2016-03-09T13:34:19", + "TransactionId": 22895578, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 26842303, + "PaymentType": "Credit Card" + }, + { + "Id": 12440, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2017-08-03T09:21:53", + "TransactionId": 87591590, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 291, + "CustomerInfo": 5177844, + "PaymentType": "Credit Card" + }, + { + "Id": 12441, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2019-09-06T17:23:34", + "TransactionId": 75082123, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 320, + "CustomerInfo": 18314316, + "PaymentType": "Credit Card" + }, + { + "Id": 12442, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2018-10-24T17:30:12", + "TransactionId": 98193676, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 822, + "CustomerInfo": 67850304, + "PaymentType": "Credit Card" + }, + { + "Id": 12443, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-12-05T16:19:47", + "TransactionId": 15662608, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 859, + "CustomerInfo": 63649095, + "PaymentType": "Debit Card" + }, + { + "Id": 12444, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-10-13T17:18:23", + "TransactionId": 73053147, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 209, + "CustomerInfo": 58352512, + "PaymentType": "Credit Card" + }, + { + "Id": 12445, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2018-07-30T17:12:12", + "TransactionId": 81494639, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 738, + "CustomerInfo": 32790025, + "PaymentType": "Cash" + }, + { + "Id": 12446, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-03-25T14:32:30", + "TransactionId": 42549416, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 577, + "CustomerInfo": 62790400, + "PaymentType": "Cash" + }, + { + "Id": 12447, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2019-12-19T09:03:36", + "TransactionId": 84129137, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 50960626, + "PaymentType": "Cash" + }, + { + "Id": 12448, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-09-18T14:23:25", + "TransactionId": 62054102, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 79, + "CustomerInfo": 49361420, + "PaymentType": "Debit Card" + }, + { + "Id": 12449, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-09-25T13:52:54", + "TransactionId": 3492396, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 876, + "CustomerInfo": 31473566, + "PaymentType": "Credit Card" + }, + { + "Id": 12450, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2018-12-18T16:52:19", + "TransactionId": 37065424, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 357, + "CustomerInfo": 7040414, + "PaymentType": "Cash" + }, + { + "Id": 12451, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2017-06-20T07:34:54", + "TransactionId": 64988622, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 730, + "CustomerInfo": 83311162, + "PaymentType": "Cash" + }, + { + "Id": 12452, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-02-07T16:09:59", + "TransactionId": 35779830, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 698, + "CustomerInfo": 95342313, + "PaymentType": "Cash" + }, + { + "Id": 12453, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-01-31T14:49:12", + "TransactionId": 88869095, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 204, + "CustomerInfo": 39418019, + "PaymentType": "Credit Card" + }, + { + "Id": 12454, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2018-07-03T14:27:10", + "TransactionId": 95949846, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 883, + "CustomerInfo": 91833711, + "PaymentType": "Credit Card" + }, + { + "Id": 12455, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2017-11-21T13:47:00", + "TransactionId": 13231555, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 697, + "CustomerInfo": 47627003, + "PaymentType": "Credit Card" + }, + { + "Id": 12456, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-08-23T09:04:02", + "TransactionId": 35961958, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 762, + "CustomerInfo": 98010972, + "PaymentType": "Credit Card" + }, + { + "Id": 12457, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2018-12-27T17:28:28", + "TransactionId": 57494512, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 465, + "CustomerInfo": 18256825, + "PaymentType": "Cash" + }, + { + "Id": 12458, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2018-12-17T17:57:50", + "TransactionId": 98475541, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 498, + "CustomerInfo": 98016559, + "PaymentType": "Cash" + }, + { + "Id": 12459, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2017-02-01T15:34:51", + "TransactionId": 34592569, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 417, + "CustomerInfo": 18695163, + "PaymentType": "Credit Card" + }, + { + "Id": 12460, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-08-01T08:21:42", + "TransactionId": 30617673, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 233, + "CustomerInfo": 76974312, + "PaymentType": "Cash" + }, + { + "Id": 12461, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2019-04-20T18:47:31", + "TransactionId": 29067853, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 664, + "CustomerInfo": 65551173, + "PaymentType": "Debit Card" + }, + { + "Id": 12462, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2018-02-13T13:11:17", + "TransactionId": 2819418, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 442, + "CustomerInfo": 5231312, + "PaymentType": "Credit Card" + }, + { + "Id": 12463, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2018-06-15T15:15:16", + "TransactionId": 13966227, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 304, + "CustomerInfo": 74450623, + "PaymentType": "Debit Card" + }, + { + "Id": 12464, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2017-07-19T16:41:14", + "TransactionId": 61382523, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 121, + "CustomerInfo": 74384557, + "PaymentType": "Debit Card" + }, + { + "Id": 12465, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2019-03-18T17:58:34", + "TransactionId": 62177879, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 843, + "CustomerInfo": 23783562, + "PaymentType": "Cash" + }, + { + "Id": 12466, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-01-17T13:26:50", + "TransactionId": 37889530, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 297, + "CustomerInfo": 77271838, + "PaymentType": "Credit Card" + }, + { + "Id": 12467, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2019-10-26T10:00:46", + "TransactionId": 12620017, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 102, + "CustomerInfo": 35359475, + "PaymentType": "Cash" + }, + { + "Id": 12468, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-10-27T16:32:01", + "TransactionId": 82158483, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 274, + "CustomerInfo": 81844889, + "PaymentType": "Cash" + }, + { + "Id": 12469, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2017-06-29T10:42:32", + "TransactionId": 75713980, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 166, + "CustomerInfo": 98465155, + "PaymentType": "Cash" + }, + { + "Id": 12470, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-10-30T19:02:30", + "TransactionId": 73971949, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 8, + "CustomerInfo": 31098488, + "PaymentType": "Debit Card" + }, + { + "Id": 12471, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2016-06-20T07:59:31", + "TransactionId": 67817313, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 395, + "CustomerInfo": 86662689, + "PaymentType": "Cash" + }, + { + "Id": 12472, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2018-07-08T12:33:33", + "TransactionId": 78154558, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 437, + "CustomerInfo": 66997187, + "PaymentType": "Credit Card" + }, + { + "Id": 12473, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-10-18T13:27:07", + "TransactionId": 75280903, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 11, + "CustomerInfo": 87205860, + "PaymentType": "Debit Card" + }, + { + "Id": 12474, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2017-03-05T08:04:08", + "TransactionId": 86787794, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 460, + "CustomerInfo": 34671345, + "PaymentType": "Cash" + }, + { + "Id": 12475, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-10-26T17:32:47", + "TransactionId": 20334688, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 608, + "CustomerInfo": 81513137, + "PaymentType": "Cash" + }, + { + "Id": 12476, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2018-04-29T16:24:49", + "TransactionId": 76453128, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 939, + "CustomerInfo": 86918376, + "PaymentType": "Debit Card" + }, + { + "Id": 12477, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2016-11-14T09:52:25", + "TransactionId": 84499946, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 821, + "CustomerInfo": 33920943, + "PaymentType": "Credit Card" + }, + { + "Id": 12478, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-07-24T12:46:57", + "TransactionId": 93117192, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 621, + "CustomerInfo": 99788614, + "PaymentType": "Cash" + }, + { + "Id": 12479, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-10-27T13:14:27", + "TransactionId": 29478678, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 77, + "CustomerInfo": 33010210, + "PaymentType": "Credit Card" + }, + { + "Id": 12480, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2016-09-24T10:20:21", + "TransactionId": 71861785, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 431, + "CustomerInfo": 3663978, + "PaymentType": "Cash" + }, + { + "Id": 12481, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-09-12T11:08:36", + "TransactionId": 50345183, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 911, + "CustomerInfo": 38260943, + "PaymentType": "Cash" + }, + { + "Id": 12482, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2016-01-10T17:10:11", + "TransactionId": 54343692, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 75, + "CustomerInfo": 83423546, + "PaymentType": "Credit Card" + }, + { + "Id": 12483, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2019-10-30T14:10:28", + "TransactionId": 12459986, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 778, + "CustomerInfo": 87346635, + "PaymentType": "Debit Card" + }, + { + "Id": 12484, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-08-25T18:24:55", + "TransactionId": 24023922, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 799, + "CustomerInfo": 29249729, + "PaymentType": "Cash" + }, + { + "Id": 12485, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-06-06T16:37:47", + "TransactionId": 55316755, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 395, + "CustomerInfo": 49763886, + "PaymentType": "Debit Card" + }, + { + "Id": 12486, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2016-01-30T14:19:58", + "TransactionId": 91233315, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 379, + "CustomerInfo": 91952310, + "PaymentType": "Credit Card" + }, + { + "Id": 12487, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-09-22T19:43:58", + "TransactionId": 19057755, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 776, + "CustomerInfo": 88267622, + "PaymentType": "Debit Card" + }, + { + "Id": 12488, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2019-08-12T19:59:05", + "TransactionId": 12616452, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 227, + "CustomerInfo": 73641591, + "PaymentType": "Cash" + }, + { + "Id": 12489, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-12-04T09:11:05", + "TransactionId": 47025715, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 112, + "CustomerInfo": 97459118, + "PaymentType": "Credit Card" + }, + { + "Id": 12490, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2016-09-23T15:29:23", + "TransactionId": 3310091, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 143, + "CustomerInfo": 57488790, + "PaymentType": "Credit Card" + }, + { + "Id": 12491, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-03-04T08:24:35", + "TransactionId": 72197057, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 404, + "CustomerInfo": 36381351, + "PaymentType": "Cash" + }, + { + "Id": 12492, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-02-02T15:42:03", + "TransactionId": 57412481, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 970, + "CustomerInfo": 61244371, + "PaymentType": "Cash" + }, + { + "Id": 12493, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2019-06-05T17:11:46", + "TransactionId": 47709796, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 122, + "CustomerInfo": 63804396, + "PaymentType": "Cash" + }, + { + "Id": 12494, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2016-03-11T19:23:23", + "TransactionId": 18736932, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 244, + "CustomerInfo": 34959847, + "PaymentType": "Credit Card" + }, + { + "Id": 12495, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-05-17T18:28:13", + "TransactionId": 5486695, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 519, + "CustomerInfo": 10041478, + "PaymentType": "Credit Card" + }, + { + "Id": 12496, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-09-20T15:48:40", + "TransactionId": 35843005, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 42, + "CustomerInfo": 20848165, + "PaymentType": "Debit Card" + }, + { + "Id": 12497, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2019-01-21T17:39:33", + "TransactionId": 58708981, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 468, + "CustomerInfo": 75698598, + "PaymentType": "Debit Card" + }, + { + "Id": 12498, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2017-02-14T18:49:41", + "TransactionId": 89802005, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 221, + "CustomerInfo": 65280500, + "PaymentType": "Cash" + }, + { + "Id": 12499, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2019-12-06T17:59:25", + "TransactionId": 62761096, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 728, + "CustomerInfo": 26437151, + "PaymentType": "Cash" + }, + { + "Id": 12500, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-08-29T18:48:14", + "TransactionId": 67672431, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 608, + "CustomerInfo": 38101001, + "PaymentType": "Debit Card" + }, + { + "Id": 12501, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2016-08-04T09:33:59", + "TransactionId": 45313642, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 613, + "CustomerInfo": 68438824, + "PaymentType": "Credit Card" + }, + { + "Id": 12502, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-12-21T07:16:19", + "TransactionId": 2658276, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 2612232, + "PaymentType": "Credit Card" + }, + { + "Id": 12503, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2018-06-04T09:17:25", + "TransactionId": 1828418, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 468, + "CustomerInfo": 99457589, + "PaymentType": "Debit Card" + }, + { + "Id": 12504, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-03-02T12:58:54", + "TransactionId": 44607438, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 301, + "CustomerInfo": 45922185, + "PaymentType": "Debit Card" + }, + { + "Id": 12505, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2018-04-24T17:55:06", + "TransactionId": 47675438, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 224, + "CustomerInfo": 65589790, + "PaymentType": "Cash" + }, + { + "Id": 12506, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2017-12-05T18:32:50", + "TransactionId": 87405506, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 46, + "CustomerInfo": 93905644, + "PaymentType": "Credit Card" + }, + { + "Id": 12507, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2017-08-01T11:11:46", + "TransactionId": 57909360, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 350, + "CustomerInfo": 45166284, + "PaymentType": "Debit Card" + }, + { + "Id": 12508, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-01-13T18:32:41", + "TransactionId": 48650717, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 81, + "CustomerInfo": 2157293, + "PaymentType": "Credit Card" + }, + { + "Id": 12509, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-07-23T13:04:57", + "TransactionId": 81833248, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 741, + "CustomerInfo": 37528847, + "PaymentType": "Credit Card" + }, + { + "Id": 12510, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2016-10-24T17:08:10", + "TransactionId": 44708962, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 314, + "CustomerInfo": 94214602, + "PaymentType": "Credit Card" + }, + { + "Id": 12511, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-09-18T07:24:40", + "TransactionId": 96550137, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 73, + "CustomerInfo": 68364475, + "PaymentType": "Credit Card" + }, + { + "Id": 12512, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2018-10-06T07:46:42", + "TransactionId": 78097962, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 977, + "CustomerInfo": 34030925, + "PaymentType": "Credit Card" + }, + { + "Id": 12513, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2019-12-26T17:22:25", + "TransactionId": 62336703, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 838, + "CustomerInfo": 42672378, + "PaymentType": "Debit Card" + }, + { + "Id": 12514, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-07-06T15:28:05", + "TransactionId": 78588199, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 237, + "CustomerInfo": 6152394, + "PaymentType": "Credit Card" + }, + { + "Id": 12515, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2016-05-09T19:52:02", + "TransactionId": 4606436, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 175, + "CustomerInfo": 69088918, + "PaymentType": "Debit Card" + }, + { + "Id": 12516, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2016-04-06T10:01:55", + "TransactionId": 98894937, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 111, + "CustomerInfo": 41947156, + "PaymentType": "Debit Card" + }, + { + "Id": 12517, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-07-14T13:26:59", + "TransactionId": 47622292, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 794, + "CustomerInfo": 11583786, + "PaymentType": "Debit Card" + }, + { + "Id": 12518, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2019-01-23T12:10:13", + "TransactionId": 39323925, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 96500141, + "PaymentType": "Cash" + }, + { + "Id": 12519, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2019-11-11T13:50:01", + "TransactionId": 85541068, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 580, + "CustomerInfo": 42801046, + "PaymentType": "Debit Card" + }, + { + "Id": 12520, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2017-03-20T09:58:02", + "TransactionId": 73911289, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 639, + "CustomerInfo": 7237435, + "PaymentType": "Cash" + }, + { + "Id": 12521, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-05-01T13:11:17", + "TransactionId": 31723148, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 6, + "CustomerInfo": 98379, + "PaymentType": "Credit Card" + }, + { + "Id": 12522, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-12-04T07:35:02", + "TransactionId": 82472445, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 978, + "CustomerInfo": 51010163, + "PaymentType": "Debit Card" + }, + { + "Id": 12523, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2016-01-05T18:36:26", + "TransactionId": 41526650, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 342, + "CustomerInfo": 31048492, + "PaymentType": "Debit Card" + }, + { + "Id": 12524, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2016-05-27T07:26:59", + "TransactionId": 50488785, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 597, + "CustomerInfo": 19968147, + "PaymentType": "Credit Card" + }, + { + "Id": 12525, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-05-18T08:17:05", + "TransactionId": 75026761, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 524, + "CustomerInfo": 77128526, + "PaymentType": "Credit Card" + }, + { + "Id": 12526, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2018-06-02T14:17:40", + "TransactionId": 80269628, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 417, + "CustomerInfo": 79717347, + "PaymentType": "Debit Card" + }, + { + "Id": 12527, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2018-08-27T08:43:18", + "TransactionId": 3510796, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 176, + "CustomerInfo": 93947623, + "PaymentType": "Cash" + }, + { + "Id": 12528, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2016-01-19T13:27:07", + "TransactionId": 89226241, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 632, + "CustomerInfo": 65929848, + "PaymentType": "Cash" + }, + { + "Id": 12529, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2018-07-16T13:38:12", + "TransactionId": 32986795, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 522, + "CustomerInfo": 99869139, + "PaymentType": "Credit Card" + }, + { + "Id": 12530, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2019-06-09T13:32:53", + "TransactionId": 9484455, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 287, + "CustomerInfo": 28623886, + "PaymentType": "Cash" + }, + { + "Id": 12531, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2018-11-04T08:04:25", + "TransactionId": 30906022, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 185, + "CustomerInfo": 81540922, + "PaymentType": "Debit Card" + }, + { + "Id": 12532, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2016-04-20T10:14:01", + "TransactionId": 41940326, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 295, + "CustomerInfo": 7459594, + "PaymentType": "Credit Card" + }, + { + "Id": 12533, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2016-02-04T11:25:35", + "TransactionId": 55568403, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 681, + "CustomerInfo": 64926988, + "PaymentType": "Debit Card" + }, + { + "Id": 12534, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-01-22T14:57:42", + "TransactionId": 30157955, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 753, + "CustomerInfo": 39065859, + "PaymentType": "Credit Card" + }, + { + "Id": 12535, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2019-08-15T19:05:40", + "TransactionId": 53128087, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 210, + "CustomerInfo": 74487918, + "PaymentType": "Cash" + }, + { + "Id": 12536, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-08-15T19:55:55", + "TransactionId": 49944898, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 348, + "CustomerInfo": 24560564, + "PaymentType": "Credit Card" + }, + { + "Id": 12537, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2016-04-10T11:45:10", + "TransactionId": 34081944, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 585, + "CustomerInfo": 82508720, + "PaymentType": "Debit Card" + }, + { + "Id": 12538, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-08-25T17:13:29", + "TransactionId": 18950684, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 326, + "CustomerInfo": 25190033, + "PaymentType": "Cash" + }, + { + "Id": 12539, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-08-05T15:03:27", + "TransactionId": 26336896, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 323, + "CustomerInfo": 50316013, + "PaymentType": "Cash" + }, + { + "Id": 12540, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2017-04-04T10:21:22", + "TransactionId": 53610593, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 199, + "CustomerInfo": 81425603, + "PaymentType": "Credit Card" + }, + { + "Id": 12541, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2017-03-08T07:24:14", + "TransactionId": 98779698, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 464, + "CustomerInfo": 54810597, + "PaymentType": "Credit Card" + }, + { + "Id": 12542, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2017-05-03T10:00:03", + "TransactionId": 13994158, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 228, + "CustomerInfo": 12503956, + "PaymentType": "Debit Card" + }, + { + "Id": 12543, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2016-11-07T15:08:04", + "TransactionId": 65337214, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 742, + "CustomerInfo": 86781185, + "PaymentType": "Credit Card" + }, + { + "Id": 12544, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-03-13T13:10:25", + "TransactionId": 17812965, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 626, + "CustomerInfo": 85793021, + "PaymentType": "Credit Card" + }, + { + "Id": 12545, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2017-07-22T08:37:15", + "TransactionId": 27356898, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 920, + "CustomerInfo": 49987938, + "PaymentType": "Credit Card" + }, + { + "Id": 12546, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-09-21T18:15:24", + "TransactionId": 78985808, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 688, + "CustomerInfo": 10213951, + "PaymentType": "Debit Card" + }, + { + "Id": 12547, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2016-10-05T07:55:55", + "TransactionId": 31664050, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 352, + "CustomerInfo": 94448031, + "PaymentType": "Credit Card" + }, + { + "Id": 12548, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-01-14T14:45:19", + "TransactionId": 12099006, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 947, + "CustomerInfo": 76808000, + "PaymentType": "Cash" + }, + { + "Id": 12549, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2016-11-07T11:07:26", + "TransactionId": 55407935, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 639, + "CustomerInfo": 90343223, + "PaymentType": "Cash" + }, + { + "Id": 12550, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2018-12-27T19:11:08", + "TransactionId": 89848244, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 372, + "CustomerInfo": 44647473, + "PaymentType": "Credit Card" + }, + { + "Id": 12551, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2017-03-30T15:09:56", + "TransactionId": 90114979, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 913, + "CustomerInfo": 64698430, + "PaymentType": "Credit Card" + }, + { + "Id": 12552, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2019-01-13T12:46:05", + "TransactionId": 77057144, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 224, + "CustomerInfo": 38040075, + "PaymentType": "Cash" + }, + { + "Id": 12553, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2017-03-21T10:52:11", + "TransactionId": 67578356, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 796, + "CustomerInfo": 64033785, + "PaymentType": "Credit Card" + }, + { + "Id": 12554, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-01-19T12:54:09", + "TransactionId": 62414343, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 779, + "CustomerInfo": 57834456, + "PaymentType": "Debit Card" + }, + { + "Id": 12555, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2016-03-03T18:03:01", + "TransactionId": 86402549, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 602, + "CustomerInfo": 58198292, + "PaymentType": "Debit Card" + }, + { + "Id": 12556, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2016-04-27T13:32:01", + "TransactionId": 21585936, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 52, + "CustomerInfo": 2351855, + "PaymentType": "Cash" + }, + { + "Id": 12557, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-12-16T14:52:57", + "TransactionId": 27025867, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 798, + "CustomerInfo": 87304955, + "PaymentType": "Credit Card" + }, + { + "Id": 12558, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-02-02T14:47:20", + "TransactionId": 38272063, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 611, + "CustomerInfo": 53458141, + "PaymentType": "Cash" + }, + { + "Id": 12559, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-04-04T13:31:35", + "TransactionId": 8267240, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 592, + "CustomerInfo": 53683839, + "PaymentType": "Credit Card" + }, + { + "Id": 12560, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-11-04T18:09:48", + "TransactionId": 93863201, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 419, + "CustomerInfo": 88107657, + "PaymentType": "Cash" + }, + { + "Id": 12561, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-05-31T10:18:12", + "TransactionId": 33981612, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 997, + "CustomerInfo": 81222805, + "PaymentType": "Credit Card" + }, + { + "Id": 12562, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-08-20T14:45:36", + "TransactionId": 74946164, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 378, + "CustomerInfo": 83654074, + "PaymentType": "Debit Card" + }, + { + "Id": 12563, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-12-23T07:15:45", + "TransactionId": 85049914, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 193, + "CustomerInfo": 45838014, + "PaymentType": "Debit Card" + }, + { + "Id": 12564, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2018-08-13T17:23:25", + "TransactionId": 25935992, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 833, + "CustomerInfo": 65791020, + "PaymentType": "Cash" + }, + { + "Id": 12565, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-07-08T08:03:42", + "TransactionId": 46992892, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 788, + "CustomerInfo": 43757228, + "PaymentType": "Debit Card" + }, + { + "Id": 12566, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2018-01-23T16:21:22", + "TransactionId": 4061765, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 121, + "CustomerInfo": 39927994, + "PaymentType": "Debit Card" + }, + { + "Id": 12567, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-12-14T13:57:13", + "TransactionId": 13302787, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 482, + "CustomerInfo": 34279170, + "PaymentType": "Debit Card" + }, + { + "Id": 12568, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-07-21T14:05:34", + "TransactionId": 96870745, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 820, + "CustomerInfo": 77174257, + "PaymentType": "Debit Card" + }, + { + "Id": 12569, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2018-03-31T14:25:52", + "TransactionId": 93381665, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 624, + "CustomerInfo": 21339778, + "PaymentType": "Debit Card" + }, + { + "Id": 12570, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2017-06-09T13:06:14", + "TransactionId": 65195729, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 544, + "CustomerInfo": 24521113, + "PaymentType": "Debit Card" + }, + { + "Id": 12571, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2016-07-06T10:53:28", + "TransactionId": 40154284, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 406, + "CustomerInfo": 76758658, + "PaymentType": "Credit Card" + }, + { + "Id": 12572, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2016-02-09T19:52:19", + "TransactionId": 51268810, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 781, + "CustomerInfo": 88303713, + "PaymentType": "Debit Card" + }, + { + "Id": 12573, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-03-27T19:57:56", + "TransactionId": 15896340, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 627, + "CustomerInfo": 54395388, + "PaymentType": "Credit Card" + }, + { + "Id": 12574, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2019-05-03T11:50:21", + "TransactionId": 90179649, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 843, + "CustomerInfo": 37683945, + "PaymentType": "Debit Card" + }, + { + "Id": 12575, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2016-04-06T18:22:28", + "TransactionId": 69920414, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 525, + "CustomerInfo": 7957888, + "PaymentType": "Credit Card" + }, + { + "Id": 12576, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2018-09-23T13:52:11", + "TransactionId": 47420904, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 246, + "CustomerInfo": 64029300, + "PaymentType": "Cash" + }, + { + "Id": 12577, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2018-11-22T11:01:24", + "TransactionId": 94649646, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 770, + "CustomerInfo": 76770151, + "PaymentType": "Cash" + }, + { + "Id": 12578, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-03-13T09:16:08", + "TransactionId": 9935549, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 183, + "CustomerInfo": 69278352, + "PaymentType": "Debit Card" + }, + { + "Id": 12579, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2017-12-26T14:20:41", + "TransactionId": 43391410, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 233, + "CustomerInfo": 49598219, + "PaymentType": "Credit Card" + }, + { + "Id": 12580, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2019-04-08T15:56:10", + "TransactionId": 63446697, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 973, + "CustomerInfo": 89366573, + "PaymentType": "Cash" + }, + { + "Id": 12581, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-11-05T11:46:28", + "TransactionId": 25160201, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 29, + "CustomerInfo": 75505105, + "PaymentType": "Debit Card" + }, + { + "Id": 12582, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-11-07T12:04:19", + "TransactionId": 59797386, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 580, + "CustomerInfo": 10304864, + "PaymentType": "Debit Card" + }, + { + "Id": 12583, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-12-22T07:32:18", + "TransactionId": 99315260, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 434, + "CustomerInfo": 62224101, + "PaymentType": "Debit Card" + }, + { + "Id": 12584, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2017-01-26T16:22:05", + "TransactionId": 44989816, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 448, + "CustomerInfo": 79083496, + "PaymentType": "Cash" + }, + { + "Id": 12585, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2016-02-21T10:28:08", + "TransactionId": 19103531, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 13594276, + "PaymentType": "Credit Card" + }, + { + "Id": 12586, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-10-26T17:47:54", + "TransactionId": 91667262, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 850, + "CustomerInfo": 48928730, + "PaymentType": "Credit Card" + }, + { + "Id": 12587, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2019-08-07T17:06:43", + "TransactionId": 46493911, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 187, + "CustomerInfo": 85449895, + "PaymentType": "Debit Card" + }, + { + "Id": 12588, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2016-10-23T19:41:31", + "TransactionId": 96100608, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 537, + "CustomerInfo": 33229834, + "PaymentType": "Debit Card" + }, + { + "Id": 12589, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-06-15T17:59:00", + "TransactionId": 17720983, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 346, + "CustomerInfo": 46643780, + "PaymentType": "Credit Card" + }, + { + "Id": 12590, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-02-24T17:36:14", + "TransactionId": 5520825, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 206, + "CustomerInfo": 24045967, + "PaymentType": "Cash" + }, + { + "Id": 12591, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-06-25T09:18:43", + "TransactionId": 21221166, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 588, + "CustomerInfo": 54366513, + "PaymentType": "Debit Card" + }, + { + "Id": 12592, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2019-11-01T18:28:57", + "TransactionId": 5108204, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 883, + "CustomerInfo": 44016480, + "PaymentType": "Debit Card" + }, + { + "Id": 12593, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2017-11-08T08:48:03", + "TransactionId": 15313036, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 350, + "CustomerInfo": 4719941, + "PaymentType": "Debit Card" + }, + { + "Id": 12594, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-10-17T09:27:30", + "TransactionId": 9803185, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 416, + "CustomerInfo": 34202000, + "PaymentType": "Debit Card" + }, + { + "Id": 12595, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2016-10-26T16:29:34", + "TransactionId": 21046255, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 537, + "CustomerInfo": 89362520, + "PaymentType": "Debit Card" + }, + { + "Id": 12596, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2018-09-09T19:14:27", + "TransactionId": 87326352, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 896, + "CustomerInfo": 39863693, + "PaymentType": "Credit Card" + }, + { + "Id": 12597, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-09-15T08:20:33", + "TransactionId": 67363357, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 971, + "CustomerInfo": 98692095, + "PaymentType": "Debit Card" + }, + { + "Id": 12598, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2017-06-04T12:21:27", + "TransactionId": 4687228, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 936, + "CustomerInfo": 21819832, + "PaymentType": "Cash" + }, + { + "Id": 12599, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-07-17T12:47:31", + "TransactionId": 3760023, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 36244816, + "PaymentType": "Debit Card" + }, + { + "Id": 12600, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-04-29T17:13:21", + "TransactionId": 669512, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 388, + "CustomerInfo": 31159865, + "PaymentType": "Cash" + }, + { + "Id": 12601, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-01-01T18:02:01", + "TransactionId": 94040112, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 644, + "CustomerInfo": 40652695, + "PaymentType": "Credit Card" + }, + { + "Id": 12602, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-06-18T15:16:34", + "TransactionId": 86835547, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 325, + "CustomerInfo": 47124864, + "PaymentType": "Cash" + }, + { + "Id": 12603, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2017-10-27T11:17:31", + "TransactionId": 23712772, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 424, + "CustomerInfo": 98102186, + "PaymentType": "Cash" + }, + { + "Id": 12604, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-07-03T19:49:09", + "TransactionId": 2868588, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 64, + "CustomerInfo": 49281815, + "PaymentType": "Cash" + }, + { + "Id": 12605, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2017-08-20T14:28:36", + "TransactionId": 34029512, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 782, + "CustomerInfo": 49264227, + "PaymentType": "Cash" + }, + { + "Id": 12606, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-12-28T13:13:35", + "TransactionId": 52497771, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 455, + "CustomerInfo": 48856025, + "PaymentType": "Credit Card" + }, + { + "Id": 12607, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2017-10-06T15:28:48", + "TransactionId": 72487153, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 94, + "CustomerInfo": 44913160, + "PaymentType": "Cash" + }, + { + "Id": 12608, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2019-07-07T19:14:18", + "TransactionId": 98012384, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 395, + "CustomerInfo": 77695535, + "PaymentType": "Credit Card" + }, + { + "Id": 12609, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2018-12-18T12:39:01", + "TransactionId": 49968818, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 150, + "CustomerInfo": 88472270, + "PaymentType": "Credit Card" + }, + { + "Id": 12610, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2017-12-11T19:08:15", + "TransactionId": 81702513, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 723, + "CustomerInfo": 72172689, + "PaymentType": "Cash" + }, + { + "Id": 12611, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2018-01-03T11:50:56", + "TransactionId": 413640, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 28, + "CustomerInfo": 15637902, + "PaymentType": "Credit Card" + }, + { + "Id": 12612, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2016-09-29T07:14:10", + "TransactionId": 19083440, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 238, + "CustomerInfo": 79567396, + "PaymentType": "Cash" + }, + { + "Id": 12613, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2017-06-21T08:57:59", + "TransactionId": 76633313, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 637, + "CustomerInfo": 20468953, + "PaymentType": "Cash" + }, + { + "Id": 12614, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2019-10-04T10:10:42", + "TransactionId": 4249695, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 171, + "CustomerInfo": 20542511, + "PaymentType": "Debit Card" + }, + { + "Id": 12615, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-01-27T13:24:06", + "TransactionId": 45092664, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 479, + "CustomerInfo": 98078445, + "PaymentType": "Cash" + }, + { + "Id": 12616, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2016-06-29T10:47:51", + "TransactionId": 68537356, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 396, + "CustomerInfo": 45629194, + "PaymentType": "Cash" + }, + { + "Id": 12617, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2017-02-21T10:22:13", + "TransactionId": 72560150, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 140, + "CustomerInfo": 30639412, + "PaymentType": "Debit Card" + }, + { + "Id": 12618, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-06-05T12:13:15", + "TransactionId": 88600976, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 931, + "CustomerInfo": 92115156, + "PaymentType": "Cash" + }, + { + "Id": 12619, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2018-02-07T12:55:44", + "TransactionId": 40995093, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 219, + "CustomerInfo": 65235140, + "PaymentType": "Credit Card" + }, + { + "Id": 12620, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2019-12-23T11:47:11", + "TransactionId": 21082431, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 215, + "CustomerInfo": 34534220, + "PaymentType": "Credit Card" + }, + { + "Id": 12621, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2017-09-14T18:16:08", + "TransactionId": 64380480, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 870, + "CustomerInfo": 96858790, + "PaymentType": "Debit Card" + }, + { + "Id": 12622, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2019-09-04T17:22:51", + "TransactionId": 39996486, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 160, + "CustomerInfo": 25124684, + "PaymentType": "Debit Card" + }, + { + "Id": 12623, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-11-29T13:48:26", + "TransactionId": 3563158, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 237, + "CustomerInfo": 73931032, + "PaymentType": "Credit Card" + }, + { + "Id": 12624, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2016-04-29T09:00:43", + "TransactionId": 68595237, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 64269273, + "PaymentType": "Cash" + }, + { + "Id": 12625, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2018-11-27T08:56:15", + "TransactionId": 28642469, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 70807967, + "PaymentType": "Debit Card" + }, + { + "Id": 12626, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2016-11-21T08:12:37", + "TransactionId": 85305178, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 185, + "CustomerInfo": 60903698, + "PaymentType": "Credit Card" + }, + { + "Id": 12627, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-05-27T12:23:54", + "TransactionId": 49678534, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 271, + "CustomerInfo": 83827379, + "PaymentType": "Cash" + }, + { + "Id": 12628, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2016-04-28T07:02:56", + "TransactionId": 83434377, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 784, + "CustomerInfo": 4469572, + "PaymentType": "Debit Card" + }, + { + "Id": 12629, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2018-09-13T16:33:53", + "TransactionId": 49751507, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 741, + "CustomerInfo": 48681476, + "PaymentType": "Cash" + }, + { + "Id": 12630, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-02-01T14:39:42", + "TransactionId": 24424974, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 785, + "CustomerInfo": 47991423, + "PaymentType": "Debit Card" + }, + { + "Id": 12631, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2017-04-08T17:38:33", + "TransactionId": 54798475, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 765, + "CustomerInfo": 2996029, + "PaymentType": "Debit Card" + }, + { + "Id": 12632, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2019-04-26T16:35:11", + "TransactionId": 5703493, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 270, + "CustomerInfo": 79792952, + "PaymentType": "Debit Card" + }, + { + "Id": 12633, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2017-10-23T13:01:12", + "TransactionId": 36478240, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 466, + "CustomerInfo": 50422508, + "PaymentType": "Credit Card" + }, + { + "Id": 12634, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2018-11-29T08:51:48", + "TransactionId": 17354556, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 202, + "CustomerInfo": 3908579, + "PaymentType": "Cash" + }, + { + "Id": 12635, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2019-01-15T09:28:39", + "TransactionId": 28091179, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 200, + "CustomerInfo": 73949712, + "PaymentType": "Cash" + }, + { + "Id": 12636, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2016-06-16T15:50:15", + "TransactionId": 78092231, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 382, + "CustomerInfo": 14702141, + "PaymentType": "Debit Card" + }, + { + "Id": 12637, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-01-24T09:44:38", + "TransactionId": 37560360, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 640, + "CustomerInfo": 61215912, + "PaymentType": "Cash" + }, + { + "Id": 12638, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2018-11-13T07:04:05", + "TransactionId": 52014466, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 171, + "CustomerInfo": 78137958, + "PaymentType": "Credit Card" + }, + { + "Id": 12639, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-03-23T19:44:07", + "TransactionId": 85507443, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 135, + "CustomerInfo": 15592157, + "PaymentType": "Credit Card" + }, + { + "Id": 12640, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2019-09-26T17:56:33", + "TransactionId": 78001744, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 764, + "CustomerInfo": 29324885, + "PaymentType": "Credit Card" + }, + { + "Id": 12641, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2018-02-17T11:39:42", + "TransactionId": 37401922, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 94, + "CustomerInfo": 22480389, + "PaymentType": "Credit Card" + }, + { + "Id": 12642, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2019-08-27T11:45:36", + "TransactionId": 9747051, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 929, + "CustomerInfo": 6571783, + "PaymentType": "Credit Card" + }, + { + "Id": 12643, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-06-09T07:36:55", + "TransactionId": 99124177, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 133, + "CustomerInfo": 68788977, + "PaymentType": "Credit Card" + }, + { + "Id": 12644, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-07-22T07:55:55", + "TransactionId": 28972189, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 828, + "CustomerInfo": 63581062, + "PaymentType": "Cash" + }, + { + "Id": 12645, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2016-11-13T07:15:19", + "TransactionId": 38760595, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 226, + "CustomerInfo": 96321921, + "PaymentType": "Debit Card" + }, + { + "Id": 12646, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-12-31T10:51:27", + "TransactionId": 7276629, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 830, + "CustomerInfo": 88629609, + "PaymentType": "Credit Card" + }, + { + "Id": 12647, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2016-03-09T11:00:32", + "TransactionId": 78686543, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 250, + "CustomerInfo": 32298633, + "PaymentType": "Debit Card" + }, + { + "Id": 12648, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-07-13T11:31:21", + "TransactionId": 86843224, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 7664947, + "PaymentType": "Credit Card" + }, + { + "Id": 12649, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-01-11T08:58:42", + "TransactionId": 82822261, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 161, + "CustomerInfo": 14822396, + "PaymentType": "Cash" + }, + { + "Id": 12650, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-10-06T09:16:16", + "TransactionId": 97767292, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 215, + "CustomerInfo": 83204178, + "PaymentType": "Cash" + }, + { + "Id": 12651, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2019-06-12T08:06:35", + "TransactionId": 33244320, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 148, + "CustomerInfo": 41563111, + "PaymentType": "Credit Card" + }, + { + "Id": 12652, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2018-08-08T12:09:13", + "TransactionId": 5827425, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 198, + "CustomerInfo": 21764382, + "PaymentType": "Credit Card" + }, + { + "Id": 12653, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2019-07-07T07:15:45", + "TransactionId": 75759674, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 49, + "CustomerInfo": 58544107, + "PaymentType": "Cash" + }, + { + "Id": 12654, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2017-04-04T07:45:07", + "TransactionId": 27450343, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 488, + "CustomerInfo": 80431559, + "PaymentType": "Cash" + }, + { + "Id": 12655, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-04-09T13:51:19", + "TransactionId": 6303543, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 850, + "CustomerInfo": 29798980, + "PaymentType": "Credit Card" + }, + { + "Id": 12656, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2018-02-07T12:56:10", + "TransactionId": 83710647, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 953, + "CustomerInfo": 80105505, + "PaymentType": "Credit Card" + }, + { + "Id": 12657, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-12-20T10:22:22", + "TransactionId": 18258738, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 431, + "CustomerInfo": 90997129, + "PaymentType": "Debit Card" + }, + { + "Id": 12658, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2016-10-04T07:42:58", + "TransactionId": 38247340, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 759, + "CustomerInfo": 10012397, + "PaymentType": "Debit Card" + }, + { + "Id": 12659, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-01-11T13:56:38", + "TransactionId": 10905103, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 428, + "CustomerInfo": 94829919, + "PaymentType": "Cash" + }, + { + "Id": 12660, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-08-23T13:33:27", + "TransactionId": 24863391, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 109, + "CustomerInfo": 9406906, + "PaymentType": "Cash" + }, + { + "Id": 12661, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2017-10-17T15:30:23", + "TransactionId": 28092213, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 76, + "CustomerInfo": 27162405, + "PaymentType": "Credit Card" + }, + { + "Id": 12662, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2019-10-11T07:04:13", + "TransactionId": 25612299, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 28297353, + "PaymentType": "Cash" + }, + { + "Id": 12663, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2019-12-06T13:43:06", + "TransactionId": 36656777, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 510, + "CustomerInfo": 26959493, + "PaymentType": "Cash" + }, + { + "Id": 12664, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-02-23T13:21:56", + "TransactionId": 48497674, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 147, + "CustomerInfo": 96036101, + "PaymentType": "Cash" + }, + { + "Id": 12665, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2017-09-13T12:36:52", + "TransactionId": 35696227, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 524, + "CustomerInfo": 20337519, + "PaymentType": "Credit Card" + }, + { + "Id": 12666, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2019-06-29T14:51:48", + "TransactionId": 23533680, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 543, + "CustomerInfo": 32769571, + "PaymentType": "Cash" + }, + { + "Id": 12667, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2018-09-12T13:52:19", + "TransactionId": 24194123, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 860, + "CustomerInfo": 69828598, + "PaymentType": "Debit Card" + }, + { + "Id": 12668, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2017-06-29T19:34:19", + "TransactionId": 85784272, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 274, + "CustomerInfo": 94900138, + "PaymentType": "Credit Card" + }, + { + "Id": 12669, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2019-08-14T19:17:11", + "TransactionId": 77979591, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 515, + "CustomerInfo": 70757981, + "PaymentType": "Cash" + }, + { + "Id": 12670, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2019-02-19T13:57:48", + "TransactionId": 7735968, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 32, + "CustomerInfo": 4639190, + "PaymentType": "Cash" + }, + { + "Id": 12671, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-06-03T08:44:53", + "TransactionId": 47501640, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 245, + "CustomerInfo": 20681536, + "PaymentType": "Credit Card" + }, + { + "Id": 12672, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-04-08T11:11:20", + "TransactionId": 61627940, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 576, + "CustomerInfo": 26114277, + "PaymentType": "Credit Card" + }, + { + "Id": 12673, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-03-09T12:52:34", + "TransactionId": 62345031, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 369, + "CustomerInfo": 48602516, + "PaymentType": "Cash" + }, + { + "Id": 12674, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2018-01-25T10:53:37", + "TransactionId": 69453949, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 103, + "CustomerInfo": 93862254, + "PaymentType": "Cash" + }, + { + "Id": 12675, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2016-06-16T09:06:12", + "TransactionId": 17310104, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 313, + "CustomerInfo": 64029563, + "PaymentType": "Debit Card" + }, + { + "Id": 12676, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2019-08-23T14:15:13", + "TransactionId": 7369768, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 558, + "CustomerInfo": 75488002, + "PaymentType": "Credit Card" + }, + { + "Id": 12677, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2017-05-20T12:24:12", + "TransactionId": 68570437, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 631, + "CustomerInfo": 63700769, + "PaymentType": "Debit Card" + }, + { + "Id": 12678, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2016-12-29T19:32:10", + "TransactionId": 74989413, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 573, + "CustomerInfo": 77742708, + "PaymentType": "Cash" + }, + { + "Id": 12679, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2018-06-16T18:30:32", + "TransactionId": 98364691, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 200, + "CustomerInfo": 48402736, + "PaymentType": "Credit Card" + }, + { + "Id": 12680, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-12-25T14:35:23", + "TransactionId": 63448507, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 618, + "CustomerInfo": 58040019, + "PaymentType": "Debit Card" + }, + { + "Id": 12681, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2018-09-29T16:07:06", + "TransactionId": 12739802, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 154, + "CustomerInfo": 47685127, + "PaymentType": "Debit Card" + }, + { + "Id": 12682, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-09-22T09:21:27", + "TransactionId": 33176703, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 829, + "CustomerInfo": 60025013, + "PaymentType": "Credit Card" + }, + { + "Id": 12683, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2016-05-21T17:34:48", + "TransactionId": 95582230, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 205, + "CustomerInfo": 73362596, + "PaymentType": "Credit Card" + }, + { + "Id": 12684, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-10-14T08:56:24", + "TransactionId": 91123113, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 825, + "CustomerInfo": 87956302, + "PaymentType": "Cash" + }, + { + "Id": 12685, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2017-08-11T16:10:08", + "TransactionId": 34476987, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 379, + "CustomerInfo": 94071380, + "PaymentType": "Credit Card" + }, + { + "Id": 12686, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-10-15T07:03:30", + "TransactionId": 81992024, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 967, + "CustomerInfo": 12142377, + "PaymentType": "Cash" + }, + { + "Id": 12687, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2018-05-10T09:10:57", + "TransactionId": 69152598, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 115, + "CustomerInfo": 48122090, + "PaymentType": "Cash" + }, + { + "Id": 12688, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2018-04-21T16:57:13", + "TransactionId": 8009058, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 659, + "CustomerInfo": 12653316, + "PaymentType": "Debit Card" + }, + { + "Id": 12689, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-12-16T12:11:31", + "TransactionId": 80535913, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 892, + "CustomerInfo": 96639372, + "PaymentType": "Cash" + }, + { + "Id": 12690, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2018-03-30T13:25:41", + "TransactionId": 95264918, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 524, + "CustomerInfo": 86134383, + "PaymentType": "Cash" + }, + { + "Id": 12691, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2018-01-15T17:19:15", + "TransactionId": 19757379, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 628, + "CustomerInfo": 81022227, + "PaymentType": "Debit Card" + }, + { + "Id": 12692, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-01-08T18:55:52", + "TransactionId": 90930103, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 455, + "CustomerInfo": 29040629, + "PaymentType": "Cash" + }, + { + "Id": 12693, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2018-05-09T15:49:58", + "TransactionId": 79677889, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 960, + "CustomerInfo": 68191285, + "PaymentType": "Credit Card" + }, + { + "Id": 12694, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2019-05-26T15:46:57", + "TransactionId": 19498558, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 146, + "CustomerInfo": 85452003, + "PaymentType": "Credit Card" + }, + { + "Id": 12695, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2016-09-25T11:40:34", + "TransactionId": 43407149, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 115, + "CustomerInfo": 82829715, + "PaymentType": "Cash" + }, + { + "Id": 12696, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-07-31T18:42:46", + "TransactionId": 53583610, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 820, + "CustomerInfo": 70987674, + "PaymentType": "Debit Card" + }, + { + "Id": 12697, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-01-24T13:38:30", + "TransactionId": 8744166, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 548, + "CustomerInfo": 66089103, + "PaymentType": "Debit Card" + }, + { + "Id": 12698, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2018-05-05T12:07:38", + "TransactionId": 24336527, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 70, + "CustomerInfo": 82878307, + "PaymentType": "Credit Card" + }, + { + "Id": 12699, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-12-05T11:57:33", + "TransactionId": 17216952, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 51, + "CustomerInfo": 24700520, + "PaymentType": "Cash" + }, + { + "Id": 12700, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2017-06-11T17:58:08", + "TransactionId": 19923940, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 285, + "CustomerInfo": 30684840, + "PaymentType": "Cash" + }, + { + "Id": 12701, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-10-24T19:34:54", + "TransactionId": 42020694, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 340, + "CustomerInfo": 75085540, + "PaymentType": "Debit Card" + }, + { + "Id": 12702, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-08-01T16:21:22", + "TransactionId": 80238922, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 282, + "CustomerInfo": 61458401, + "PaymentType": "Debit Card" + }, + { + "Id": 12703, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-01-12T19:03:30", + "TransactionId": 71887662, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 54, + "CustomerInfo": 25849337, + "PaymentType": "Credit Card" + }, + { + "Id": 12704, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2019-08-08T12:41:20", + "TransactionId": 48346368, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 196, + "CustomerInfo": 47168560, + "PaymentType": "Cash" + }, + { + "Id": 12705, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-04-29T14:54:32", + "TransactionId": 78200158, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 660, + "CustomerInfo": 22091005, + "PaymentType": "Cash" + }, + { + "Id": 12706, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2018-11-20T08:51:04", + "TransactionId": 55120591, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 1826770, + "PaymentType": "Credit Card" + }, + { + "Id": 12707, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2018-10-12T12:04:28", + "TransactionId": 42219157, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 839, + "CustomerInfo": 66086299, + "PaymentType": "Cash" + }, + { + "Id": 12708, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-01-25T07:46:34", + "TransactionId": 41503339, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 117, + "CustomerInfo": 27773019, + "PaymentType": "Cash" + }, + { + "Id": 12709, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-04-17T09:08:56", + "TransactionId": 36901980, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 699, + "CustomerInfo": 93552785, + "PaymentType": "Credit Card" + }, + { + "Id": 12710, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2016-09-14T19:36:20", + "TransactionId": 91915257, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 22, + "CustomerInfo": 86299261, + "PaymentType": "Debit Card" + }, + { + "Id": 12711, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2018-12-31T17:07:00", + "TransactionId": 67385881, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 360, + "CustomerInfo": 59313466, + "PaymentType": "Debit Card" + }, + { + "Id": 12712, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2017-02-04T08:28:19", + "TransactionId": 26949681, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 787, + "CustomerInfo": 45129756, + "PaymentType": "Cash" + }, + { + "Id": 12713, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-08-30T08:25:44", + "TransactionId": 283031, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 688, + "CustomerInfo": 2738790, + "PaymentType": "Cash" + }, + { + "Id": 12714, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2018-07-13T09:18:00", + "TransactionId": 73174765, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 602, + "CustomerInfo": 46390953, + "PaymentType": "Credit Card" + }, + { + "Id": 12715, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-06-06T07:44:33", + "TransactionId": 86477154, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 450, + "CustomerInfo": 62802396, + "PaymentType": "Cash" + }, + { + "Id": 12716, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2019-08-09T14:27:01", + "TransactionId": 53149031, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 849, + "CustomerInfo": 61488956, + "PaymentType": "Credit Card" + }, + { + "Id": 12717, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2019-02-23T12:35:51", + "TransactionId": 9623523, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 564, + "CustomerInfo": 58934783, + "PaymentType": "Debit Card" + }, + { + "Id": 12718, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2018-07-28T15:45:39", + "TransactionId": 55962780, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 55, + "CustomerInfo": 24626821, + "PaymentType": "Cash" + }, + { + "Id": 12719, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2017-11-17T15:51:24", + "TransactionId": 78472270, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 767, + "CustomerInfo": 64457990, + "PaymentType": "Debit Card" + }, + { + "Id": 12720, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-07-18T18:43:21", + "TransactionId": 95592113, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 214, + "CustomerInfo": 82314672, + "PaymentType": "Debit Card" + }, + { + "Id": 12721, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-11-23T07:03:22", + "TransactionId": 73328049, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 906, + "CustomerInfo": 66830525, + "PaymentType": "Debit Card" + }, + { + "Id": 12722, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2018-05-05T07:35:20", + "TransactionId": 25380847, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 1489268, + "PaymentType": "Credit Card" + }, + { + "Id": 12723, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-09-24T17:31:55", + "TransactionId": 93800027, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 69165780, + "PaymentType": "Debit Card" + }, + { + "Id": 12724, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2017-02-07T13:35:11", + "TransactionId": 89920799, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 712, + "CustomerInfo": 98203274, + "PaymentType": "Debit Card" + }, + { + "Id": 12725, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2019-03-26T13:57:13", + "TransactionId": 51461247, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 874, + "CustomerInfo": 42804781, + "PaymentType": "Credit Card" + }, + { + "Id": 12726, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2017-06-19T11:07:35", + "TransactionId": 10665715, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 667, + "CustomerInfo": 94492497, + "PaymentType": "Cash" + }, + { + "Id": 12727, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-07-21T18:00:26", + "TransactionId": 72462906, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 389, + "CustomerInfo": 24931902, + "PaymentType": "Cash" + }, + { + "Id": 12728, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-12-19T18:44:04", + "TransactionId": 45375985, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 931, + "CustomerInfo": 86070192, + "PaymentType": "Credit Card" + }, + { + "Id": 12729, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-02-03T10:32:53", + "TransactionId": 45032177, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 89, + "CustomerInfo": 99466629, + "PaymentType": "Credit Card" + }, + { + "Id": 12730, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-06-08T10:56:30", + "TransactionId": 41359505, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 211, + "CustomerInfo": 93091822, + "PaymentType": "Debit Card" + }, + { + "Id": 12731, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-11-29T15:46:48", + "TransactionId": 65630541, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 210, + "CustomerInfo": 24635214, + "PaymentType": "Cash" + }, + { + "Id": 12732, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-09-19T19:05:14", + "TransactionId": 82863800, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 494, + "CustomerInfo": 7283139, + "PaymentType": "Cash" + }, + { + "Id": 12733, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2016-11-05T09:35:00", + "TransactionId": 50736398, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 34, + "CustomerInfo": 31339380, + "PaymentType": "Credit Card" + }, + { + "Id": 12734, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2018-02-13T09:14:50", + "TransactionId": 67119578, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 686, + "CustomerInfo": 13601762, + "PaymentType": "Credit Card" + }, + { + "Id": 12735, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2019-07-23T07:02:56", + "TransactionId": 79043738, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 223, + "CustomerInfo": 23489624, + "PaymentType": "Debit Card" + }, + { + "Id": 12736, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-03-13T16:33:19", + "TransactionId": 73641292, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 122, + "CustomerInfo": 57789342, + "PaymentType": "Debit Card" + }, + { + "Id": 12737, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-05-08T10:44:33", + "TransactionId": 76536054, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 131, + "CustomerInfo": 25487325, + "PaymentType": "Credit Card" + }, + { + "Id": 12738, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-03-15T08:33:04", + "TransactionId": 54623320, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 302, + "CustomerInfo": 45253512, + "PaymentType": "Cash" + }, + { + "Id": 12739, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-04-03T11:27:19", + "TransactionId": 45111361, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 130, + "CustomerInfo": 63196777, + "PaymentType": "Debit Card" + }, + { + "Id": 12740, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-01-01T18:34:42", + "TransactionId": 99955890, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 195, + "CustomerInfo": 4612778, + "PaymentType": "Debit Card" + }, + { + "Id": 12741, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2017-09-20T11:22:08", + "TransactionId": 36671924, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 582, + "CustomerInfo": 88814026, + "PaymentType": "Credit Card" + }, + { + "Id": 12742, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2016-12-16T11:23:17", + "TransactionId": 8101981, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 422, + "CustomerInfo": 42925313, + "PaymentType": "Cash" + }, + { + "Id": 12743, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-10-15T17:24:00", + "TransactionId": 36740933, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 421, + "CustomerInfo": 56415319, + "PaymentType": "Debit Card" + }, + { + "Id": 12744, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-04-09T14:52:22", + "TransactionId": 450919, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 421, + "CustomerInfo": 21400188, + "PaymentType": "Credit Card" + }, + { + "Id": 12745, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-11-08T19:54:37", + "TransactionId": 13444554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 720, + "CustomerInfo": 38825061, + "PaymentType": "Cash" + }, + { + "Id": 12746, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2016-06-16T11:52:57", + "TransactionId": 28903133, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 752, + "CustomerInfo": 30902064, + "PaymentType": "Cash" + }, + { + "Id": 12747, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-05-15T11:13:55", + "TransactionId": 34329483, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 250, + "CustomerInfo": 21194765, + "PaymentType": "Debit Card" + }, + { + "Id": 12748, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-02-18T19:16:36", + "TransactionId": 36320050, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 420, + "CustomerInfo": 65771882, + "PaymentType": "Credit Card" + }, + { + "Id": 12749, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2019-02-10T13:53:02", + "TransactionId": 60167679, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 66, + "CustomerInfo": 83125618, + "PaymentType": "Cash" + }, + { + "Id": 12750, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2017-10-30T18:39:36", + "TransactionId": 38349289, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 999, + "CustomerInfo": 21661, + "PaymentType": "Credit Card" + }, + { + "Id": 12751, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2018-01-04T12:45:04", + "TransactionId": 11197419, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 697, + "CustomerInfo": 58180553, + "PaymentType": "Cash" + }, + { + "Id": 12752, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-07-02T13:59:05", + "TransactionId": 94185279, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 509, + "CustomerInfo": 60843482, + "PaymentType": "Cash" + }, + { + "Id": 12753, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2019-03-16T19:05:31", + "TransactionId": 74941912, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 560, + "CustomerInfo": 75859020, + "PaymentType": "Cash" + }, + { + "Id": 12754, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2019-03-03T19:27:42", + "TransactionId": 44261554, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 9026079, + "PaymentType": "Debit Card" + }, + { + "Id": 12755, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2018-10-27T07:45:07", + "TransactionId": 5026164, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 435, + "CustomerInfo": 56074598, + "PaymentType": "Credit Card" + }, + { + "Id": 12756, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2018-02-04T14:47:37", + "TransactionId": 97889520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 404, + "CustomerInfo": 53664596, + "PaymentType": "Debit Card" + }, + { + "Id": 12757, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-03-19T19:39:13", + "TransactionId": 83135172, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 635, + "CustomerInfo": 64803791, + "PaymentType": "Credit Card" + }, + { + "Id": 12758, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-02-04T09:56:53", + "TransactionId": 43361437, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 993, + "CustomerInfo": 78462234, + "PaymentType": "Cash" + }, + { + "Id": 12759, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-04-07T09:05:37", + "TransactionId": 85345206, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 256, + "CustomerInfo": 33114459, + "PaymentType": "Debit Card" + }, + { + "Id": 12760, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-11-10T11:21:50", + "TransactionId": 78965361, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 796, + "CustomerInfo": 56390186, + "PaymentType": "Credit Card" + }, + { + "Id": 12761, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2019-04-02T16:32:18", + "TransactionId": 77588596, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 365, + "CustomerInfo": 63074291, + "PaymentType": "Credit Card" + }, + { + "Id": 12762, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2018-12-07T08:52:39", + "TransactionId": 74090911, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 921, + "CustomerInfo": 8432799, + "PaymentType": "Cash" + }, + { + "Id": 12763, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2016-12-07T13:09:07", + "TransactionId": 76098155, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 191, + "CustomerInfo": 25167812, + "PaymentType": "Cash" + }, + { + "Id": 12764, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2017-04-02T17:27:01", + "TransactionId": 98860421, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 548, + "CustomerInfo": 86000612, + "PaymentType": "Cash" + }, + { + "Id": 12765, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-07-26T17:37:32", + "TransactionId": 70755411, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 869, + "CustomerInfo": 57067756, + "PaymentType": "Credit Card" + }, + { + "Id": 12766, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2016-08-15T07:54:12", + "TransactionId": 9628704, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 599, + "CustomerInfo": 88494886, + "PaymentType": "Debit Card" + }, + { + "Id": 12767, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-07-26T17:23:43", + "TransactionId": 71759169, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 977, + "CustomerInfo": 59325916, + "PaymentType": "Debit Card" + }, + { + "Id": 12768, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-09-16T14:51:13", + "TransactionId": 53172481, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 306, + "CustomerInfo": 15416826, + "PaymentType": "Debit Card" + }, + { + "Id": 12769, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2016-11-21T08:25:00", + "TransactionId": 97872917, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 412, + "CustomerInfo": 14757867, + "PaymentType": "Cash" + }, + { + "Id": 12770, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-05-19T14:19:15", + "TransactionId": 53572301, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 250, + "CustomerInfo": 48442592, + "PaymentType": "Credit Card" + }, + { + "Id": 12771, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2018-04-26T14:36:40", + "TransactionId": 43339585, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 286, + "CustomerInfo": 52797678, + "PaymentType": "Cash" + }, + { + "Id": 12772, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-03-26T12:11:57", + "TransactionId": 17896999, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 947, + "CustomerInfo": 38577770, + "PaymentType": "Debit Card" + }, + { + "Id": 12773, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-04-08T17:38:50", + "TransactionId": 62257842, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 224, + "CustomerInfo": 87563899, + "PaymentType": "Credit Card" + }, + { + "Id": 12774, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-07-23T16:10:42", + "TransactionId": 61728210, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 97444995, + "PaymentType": "Credit Card" + }, + { + "Id": 12775, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-05-16T07:33:36", + "TransactionId": 91436118, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 497, + "CustomerInfo": 98481683, + "PaymentType": "Debit Card" + }, + { + "Id": 12776, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2017-08-05T08:50:12", + "TransactionId": 75884643, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 527, + "CustomerInfo": 36208979, + "PaymentType": "Debit Card" + }, + { + "Id": 12777, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2016-05-23T17:01:06", + "TransactionId": 56512414, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 227, + "CustomerInfo": 93958327, + "PaymentType": "Debit Card" + }, + { + "Id": 12778, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2019-11-16T14:06:35", + "TransactionId": 84764183, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 601, + "CustomerInfo": 60260204, + "PaymentType": "Credit Card" + }, + { + "Id": 12779, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2018-12-30T10:31:26", + "TransactionId": 2901401, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 808, + "CustomerInfo": 43357349, + "PaymentType": "Cash" + }, + { + "Id": 12780, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2016-02-24T08:54:58", + "TransactionId": 70080160, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 486, + "CustomerInfo": 29011882, + "PaymentType": "Credit Card" + }, + { + "Id": 12781, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2016-08-17T08:47:02", + "TransactionId": 63985385, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 784, + "CustomerInfo": 10672378, + "PaymentType": "Debit Card" + }, + { + "Id": 12782, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-01-22T16:55:47", + "TransactionId": 65535847, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 556, + "CustomerInfo": 34296347, + "PaymentType": "Debit Card" + }, + { + "Id": 12783, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2016-11-21T11:45:45", + "TransactionId": 789446, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 26, + "CustomerInfo": 85082711, + "PaymentType": "Credit Card" + }, + { + "Id": 12784, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2017-06-04T11:59:08", + "TransactionId": 59325702, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 940, + "CustomerInfo": 34520569, + "PaymentType": "Debit Card" + }, + { + "Id": 12785, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-12-02T12:16:51", + "TransactionId": 81477645, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 170, + "CustomerInfo": 25647939, + "PaymentType": "Debit Card" + }, + { + "Id": 12786, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2018-07-05T15:42:29", + "TransactionId": 58811377, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 474, + "CustomerInfo": 28627677, + "PaymentType": "Debit Card" + }, + { + "Id": 12787, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-11-23T12:46:13", + "TransactionId": 56634480, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 481, + "CustomerInfo": 79231334, + "PaymentType": "Debit Card" + }, + { + "Id": 12788, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-01-30T10:35:54", + "TransactionId": 94960565, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 37, + "CustomerInfo": 94929515, + "PaymentType": "Cash" + }, + { + "Id": 12789, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2016-08-11T09:15:24", + "TransactionId": 53519200, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 18430662, + "PaymentType": "Cash" + }, + { + "Id": 12790, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-07-21T17:51:13", + "TransactionId": 15120317, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 134, + "CustomerInfo": 15384826, + "PaymentType": "Cash" + }, + { + "Id": 12791, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-07-03T19:50:53", + "TransactionId": 29472265, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 617, + "CustomerInfo": 32418837, + "PaymentType": "Cash" + }, + { + "Id": 12792, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-01-26T08:10:19", + "TransactionId": 17627736, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 530, + "CustomerInfo": 54806647, + "PaymentType": "Cash" + }, + { + "Id": 12793, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2017-06-25T12:10:48", + "TransactionId": 7159875, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 830, + "CustomerInfo": 6350852, + "PaymentType": "Debit Card" + }, + { + "Id": 12794, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2019-08-21T19:34:19", + "TransactionId": 84040783, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 639, + "CustomerInfo": 73309386, + "PaymentType": "Credit Card" + }, + { + "Id": 12795, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2016-09-04T18:49:41", + "TransactionId": 65030505, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 903, + "CustomerInfo": 31854315, + "PaymentType": "Debit Card" + }, + { + "Id": 12796, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2017-10-15T18:46:05", + "TransactionId": 76916923, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 420, + "CustomerInfo": 35238457, + "PaymentType": "Credit Card" + }, + { + "Id": 12797, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2017-08-16T17:01:06", + "TransactionId": 88544047, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 485, + "CustomerInfo": 86013436, + "PaymentType": "Cash" + }, + { + "Id": 12798, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2018-10-07T15:16:42", + "TransactionId": 4465889, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 192, + "CustomerInfo": 63635474, + "PaymentType": "Debit Card" + }, + { + "Id": 12799, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-01-05T13:11:51", + "TransactionId": 13311837, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 553, + "CustomerInfo": 52450067, + "PaymentType": "Cash" + }, + { + "Id": 12800, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2017-11-07T10:39:39", + "TransactionId": 11444520, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 410, + "CustomerInfo": 29558514, + "PaymentType": "Cash" + }, + { + "Id": 12801, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-09-03T19:59:31", + "TransactionId": 55513523, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 429, + "CustomerInfo": 32607897, + "PaymentType": "Debit Card" + }, + { + "Id": 12802, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2017-08-22T11:49:03", + "TransactionId": 58851506, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 16, + "CustomerInfo": 42946281, + "PaymentType": "Credit Card" + }, + { + "Id": 12803, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2017-02-07T16:38:12", + "TransactionId": 17490389, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 728, + "CustomerInfo": 56397084, + "PaymentType": "Debit Card" + }, + { + "Id": 12804, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-06-21T08:47:20", + "TransactionId": 31683026, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 93118201, + "PaymentType": "Credit Card" + }, + { + "Id": 12805, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-05-27T16:41:23", + "TransactionId": 79861202, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 965, + "CustomerInfo": 81355861, + "PaymentType": "Debit Card" + }, + { + "Id": 12806, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2017-10-15T10:39:30", + "TransactionId": 88094369, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 50, + "CustomerInfo": 70737396, + "PaymentType": "Cash" + }, + { + "Id": 12807, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-03-17T12:05:11", + "TransactionId": 43766500, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 314, + "CustomerInfo": 52612758, + "PaymentType": "Debit Card" + }, + { + "Id": 12808, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2016-07-07T16:11:25", + "TransactionId": 90711482, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 665, + "CustomerInfo": 47292227, + "PaymentType": "Cash" + }, + { + "Id": 12809, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2016-07-14T12:26:56", + "TransactionId": 61784313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 330, + "CustomerInfo": 34506264, + "PaymentType": "Credit Card" + }, + { + "Id": 12810, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-06-15T18:45:04", + "TransactionId": 33074444, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 102, + "CustomerInfo": 53706366, + "PaymentType": "Cash" + }, + { + "Id": 12811, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2016-11-04T16:18:03", + "TransactionId": 88200311, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 559, + "CustomerInfo": 36197119, + "PaymentType": "Debit Card" + }, + { + "Id": 12812, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2018-01-24T16:44:33", + "TransactionId": 79175781, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 719, + "CustomerInfo": 63964685, + "PaymentType": "Credit Card" + }, + { + "Id": 12813, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-12-19T10:59:40", + "TransactionId": 42857270, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 734, + "CustomerInfo": 92667204, + "PaymentType": "Debit Card" + }, + { + "Id": 12814, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2017-07-03T17:06:17", + "TransactionId": 76029279, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 714, + "CustomerInfo": 65615109, + "PaymentType": "Credit Card" + }, + { + "Id": 12815, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2016-06-23T19:45:42", + "TransactionId": 81697744, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 971, + "CustomerInfo": 25342764, + "PaymentType": "Cash" + }, + { + "Id": 12816, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-01-05T15:07:03", + "TransactionId": 68942987, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 985, + "CustomerInfo": 34692724, + "PaymentType": "Cash" + }, + { + "Id": 12817, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2018-06-27T08:54:06", + "TransactionId": 54904937, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 602, + "CustomerInfo": 747354, + "PaymentType": "Debit Card" + }, + { + "Id": 12818, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2016-06-18T12:18:52", + "TransactionId": 84920449, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 371, + "CustomerInfo": 30342326, + "PaymentType": "Cash" + }, + { + "Id": 12819, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-06-30T19:43:49", + "TransactionId": 10378784, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 831, + "CustomerInfo": 5290714, + "PaymentType": "Cash" + }, + { + "Id": 12820, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2017-03-08T15:45:30", + "TransactionId": 85595328, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 205, + "CustomerInfo": 82561761, + "PaymentType": "Cash" + }, + { + "Id": 12821, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2016-04-20T09:42:12", + "TransactionId": 57622637, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 926, + "CustomerInfo": 99213949, + "PaymentType": "Cash" + }, + { + "Id": 12822, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2019-02-08T09:21:19", + "TransactionId": 31714613, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 890, + "CustomerInfo": 38399075, + "PaymentType": "Cash" + }, + { + "Id": 12823, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-09-24T11:04:42", + "TransactionId": 57208488, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 282, + "CustomerInfo": 19896423, + "PaymentType": "Credit Card" + }, + { + "Id": 12824, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-04-14T07:38:56", + "TransactionId": 32562612, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 5, + "CustomerInfo": 97756444, + "PaymentType": "Credit Card" + }, + { + "Id": 12825, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2018-04-26T13:49:44", + "TransactionId": 70781809, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 312, + "CustomerInfo": 9422690, + "PaymentType": "Cash" + }, + { + "Id": 12826, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-01-29T07:33:53", + "TransactionId": 14417563, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 421, + "CustomerInfo": 45896220, + "PaymentType": "Credit Card" + }, + { + "Id": 12827, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2017-01-20T16:02:38", + "TransactionId": 77444605, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 72633651, + "PaymentType": "Credit Card" + }, + { + "Id": 12828, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-01-24T18:36:00", + "TransactionId": 34567851, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 887, + "CustomerInfo": 74164007, + "PaymentType": "Credit Card" + }, + { + "Id": 12829, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2017-10-09T09:51:42", + "TransactionId": 946377, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 38, + "CustomerInfo": 36517779, + "PaymentType": "Credit Card" + }, + { + "Id": 12830, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2016-03-15T16:39:04", + "TransactionId": 8148045, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 62, + "CustomerInfo": 58871490, + "PaymentType": "Debit Card" + }, + { + "Id": 12831, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2016-04-03T17:56:59", + "TransactionId": 19686528, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 716, + "CustomerInfo": 97127159, + "PaymentType": "Debit Card" + }, + { + "Id": 12832, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-05-26T12:44:30", + "TransactionId": 42828188, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 924, + "CustomerInfo": 36738267, + "PaymentType": "Debit Card" + }, + { + "Id": 12833, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2017-04-27T08:21:07", + "TransactionId": 61362743, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 643, + "CustomerInfo": 28169886, + "PaymentType": "Credit Card" + }, + { + "Id": 12834, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-02-09T14:02:24", + "TransactionId": 84806170, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 508, + "CustomerInfo": 14134745, + "PaymentType": "Credit Card" + }, + { + "Id": 12835, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2018-07-28T12:24:37", + "TransactionId": 97564572, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 715, + "CustomerInfo": 86664745, + "PaymentType": "Debit Card" + }, + { + "Id": 12836, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2019-08-24T18:57:01", + "TransactionId": 70363157, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 435, + "CustomerInfo": 47290846, + "PaymentType": "Cash" + }, + { + "Id": 12837, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-07-27T13:12:35", + "TransactionId": 27901514, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 145, + "CustomerInfo": 68237513, + "PaymentType": "Debit Card" + }, + { + "Id": 12838, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2017-12-11T16:38:47", + "TransactionId": 36577320, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 175, + "CustomerInfo": 60008770, + "PaymentType": "Credit Card" + }, + { + "Id": 12839, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-02-03T10:04:48", + "TransactionId": 90539979, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 89, + "CustomerInfo": 93617098, + "PaymentType": "Debit Card" + }, + { + "Id": 12840, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-03-31T10:05:23", + "TransactionId": 82299062, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 796, + "CustomerInfo": 22389968, + "PaymentType": "Credit Card" + }, + { + "Id": 12841, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2016-04-05T15:12:23", + "TransactionId": 18373654, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 611, + "CustomerInfo": 47104875, + "PaymentType": "Debit Card" + }, + { + "Id": 12842, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-11-07T11:45:19", + "TransactionId": 91947549, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 384, + "CustomerInfo": 64772729, + "PaymentType": "Cash" + }, + { + "Id": 12843, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-04-02T14:11:54", + "TransactionId": 5092282, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 106, + "CustomerInfo": 92529210, + "PaymentType": "Credit Card" + }, + { + "Id": 12844, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2017-05-15T09:29:31", + "TransactionId": 29529806, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 114, + "CustomerInfo": 87560844, + "PaymentType": "Cash" + }, + { + "Id": 12845, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-01-03T12:45:22", + "TransactionId": 66100357, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 78813323, + "PaymentType": "Debit Card" + }, + { + "Id": 12846, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2018-04-12T10:41:57", + "TransactionId": 1643669, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 355, + "CustomerInfo": 888973, + "PaymentType": "Cash" + }, + { + "Id": 12847, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2017-07-22T08:12:12", + "TransactionId": 86574578, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 777, + "CustomerInfo": 40716112, + "PaymentType": "Credit Card" + }, + { + "Id": 12848, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2017-01-13T08:24:17", + "TransactionId": 22938532, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 853, + "CustomerInfo": 8997022, + "PaymentType": "Cash" + }, + { + "Id": 12849, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-06-12T10:06:49", + "TransactionId": 8081480, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 320, + "CustomerInfo": 50114919, + "PaymentType": "Cash" + }, + { + "Id": 12850, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2017-02-17T18:56:36", + "TransactionId": 7629757, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 845, + "CustomerInfo": 21615213, + "PaymentType": "Debit Card" + }, + { + "Id": 12851, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-09-14T16:58:13", + "TransactionId": 12467918, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 844, + "CustomerInfo": 86470537, + "PaymentType": "Credit Card" + }, + { + "Id": 12852, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2019-11-06T18:24:29", + "TransactionId": 87450085, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 650, + "CustomerInfo": 93207071, + "PaymentType": "Cash" + }, + { + "Id": 12853, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2018-12-25T11:21:42", + "TransactionId": 25385146, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 295, + "CustomerInfo": 13939182, + "PaymentType": "Credit Card" + }, + { + "Id": 12854, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2017-03-15T09:32:07", + "TransactionId": 15068383, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 871, + "CustomerInfo": 94298310, + "PaymentType": "Credit Card" + }, + { + "Id": 12855, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2016-06-02T19:18:12", + "TransactionId": 55075758, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 455, + "CustomerInfo": 48988472, + "PaymentType": "Cash" + }, + { + "Id": 12856, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2016-07-16T17:31:21", + "TransactionId": 50996227, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 366, + "CustomerInfo": 42531794, + "PaymentType": "Credit Card" + }, + { + "Id": 12857, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-11-01T15:52:08", + "TransactionId": 70618175, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 93656614, + "PaymentType": "Credit Card" + }, + { + "Id": 12858, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-05-06T13:21:13", + "TransactionId": 3185799, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 303, + "CustomerInfo": 3737071, + "PaymentType": "Debit Card" + }, + { + "Id": 12859, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2018-03-28T13:41:40", + "TransactionId": 81065785, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 35, + "CustomerInfo": 27200776, + "PaymentType": "Cash" + }, + { + "Id": 12860, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2017-12-09T16:34:54", + "TransactionId": 56093407, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 440, + "CustomerInfo": 85727692, + "PaymentType": "Cash" + }, + { + "Id": 12861, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2018-08-23T16:24:58", + "TransactionId": 27472860, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 248, + "CustomerInfo": 64068314, + "PaymentType": "Credit Card" + }, + { + "Id": 12862, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2016-09-11T15:30:49", + "TransactionId": 66206512, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 211, + "CustomerInfo": 37274449, + "PaymentType": "Credit Card" + }, + { + "Id": 12863, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-01-03T09:54:35", + "TransactionId": 83892539, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 343, + "CustomerInfo": 29740193, + "PaymentType": "Credit Card" + }, + { + "Id": 12864, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2017-05-27T19:21:56", + "TransactionId": 61902643, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 377, + "CustomerInfo": 88393767, + "PaymentType": "Cash" + }, + { + "Id": 12865, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-01-12T08:18:14", + "TransactionId": 32277650, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 801, + "CustomerInfo": 15169746, + "PaymentType": "Credit Card" + }, + { + "Id": 12866, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-10-03T13:48:00", + "TransactionId": 57326981, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 8, + "CustomerInfo": 4215190, + "PaymentType": "Credit Card" + }, + { + "Id": 12867, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-03-27T14:41:08", + "TransactionId": 38123916, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 101, + "CustomerInfo": 4160678, + "PaymentType": "Debit Card" + }, + { + "Id": 12868, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2018-08-28T18:37:09", + "TransactionId": 89613940, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 291, + "CustomerInfo": 51687610, + "PaymentType": "Debit Card" + }, + { + "Id": 12869, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-07-02T15:09:04", + "TransactionId": 64662859, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 721, + "CustomerInfo": 51981111, + "PaymentType": "Debit Card" + }, + { + "Id": 12870, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2018-02-12T13:58:05", + "TransactionId": 41409448, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 335, + "CustomerInfo": 30634111, + "PaymentType": "Debit Card" + }, + { + "Id": 12871, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-03-13T07:11:00", + "TransactionId": 89082284, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 836, + "CustomerInfo": 82774391, + "PaymentType": "Debit Card" + }, + { + "Id": 12872, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2017-08-28T10:49:09", + "TransactionId": 52479193, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 162, + "CustomerInfo": 60332822, + "PaymentType": "Credit Card" + }, + { + "Id": 12873, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2018-04-29T18:51:16", + "TransactionId": 13963326, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 530, + "CustomerInfo": 35023909, + "PaymentType": "Cash" + }, + { + "Id": 12874, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2018-03-28T16:10:34", + "TransactionId": 10909265, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 838, + "CustomerInfo": 4165597, + "PaymentType": "Debit Card" + }, + { + "Id": 12875, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-10-30T16:01:47", + "TransactionId": 75407635, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 269, + "CustomerInfo": 59394556, + "PaymentType": "Cash" + }, + { + "Id": 12876, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2017-09-02T08:40:16", + "TransactionId": 70819663, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 769, + "CustomerInfo": 11190024, + "PaymentType": "Credit Card" + }, + { + "Id": 12877, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2016-03-01T11:32:38", + "TransactionId": 78759209, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 791, + "CustomerInfo": 8767430, + "PaymentType": "Debit Card" + }, + { + "Id": 12878, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-01-08T07:47:17", + "TransactionId": 19568311, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 99, + "CustomerInfo": 38360776, + "PaymentType": "Debit Card" + }, + { + "Id": 12879, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-06-30T14:08:53", + "TransactionId": 43842823, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 998, + "CustomerInfo": 26201813, + "PaymentType": "Debit Card" + }, + { + "Id": 12880, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2016-11-14T16:18:55", + "TransactionId": 84620804, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 381, + "CustomerInfo": 88500757, + "PaymentType": "Debit Card" + }, + { + "Id": 12881, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2017-07-03T13:38:04", + "TransactionId": 64110959, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 593, + "CustomerInfo": 61544451, + "PaymentType": "Debit Card" + }, + { + "Id": 12882, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2018-03-12T17:21:42", + "TransactionId": 20775575, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 796, + "CustomerInfo": 77837329, + "PaymentType": "Debit Card" + }, + { + "Id": 12883, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-03-27T11:27:27", + "TransactionId": 8309146, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 665, + "CustomerInfo": 487203, + "PaymentType": "Cash" + }, + { + "Id": 12884, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2017-05-26T16:34:02", + "TransactionId": 20800127, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 388, + "CustomerInfo": 29624009, + "PaymentType": "Debit Card" + }, + { + "Id": 12885, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2018-03-25T17:33:39", + "TransactionId": 91794204, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 322, + "CustomerInfo": 92970427, + "PaymentType": "Cash" + }, + { + "Id": 12886, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2016-02-08T18:54:35", + "TransactionId": 8213153, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 761, + "CustomerInfo": 52178815, + "PaymentType": "Cash" + }, + { + "Id": 12887, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2017-05-02T18:57:10", + "TransactionId": 33514932, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 586, + "CustomerInfo": 39443605, + "PaymentType": "Debit Card" + }, + { + "Id": 12888, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2019-06-26T15:37:52", + "TransactionId": 28711428, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 853, + "CustomerInfo": 89782001, + "PaymentType": "Cash" + }, + { + "Id": 12889, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-02-11T10:12:00", + "TransactionId": 94680986, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 283, + "CustomerInfo": 12507845, + "PaymentType": "Cash" + }, + { + "Id": 12890, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-11-18T16:03:22", + "TransactionId": 72131310, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 147, + "CustomerInfo": 48638307, + "PaymentType": "Credit Card" + }, + { + "Id": 12891, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-03-08T18:02:10", + "TransactionId": 94756233, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 912, + "CustomerInfo": 10576149, + "PaymentType": "Debit Card" + }, + { + "Id": 12892, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2016-01-31T12:35:43", + "TransactionId": 63457310, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 138, + "CustomerInfo": 53565405, + "PaymentType": "Cash" + }, + { + "Id": 12893, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2016-04-16T13:37:12", + "TransactionId": 90758509, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 325, + "CustomerInfo": 9794356, + "PaymentType": "Credit Card" + }, + { + "Id": 12894, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2017-07-03T08:50:04", + "TransactionId": 52056315, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 336, + "CustomerInfo": 41232593, + "PaymentType": "Debit Card" + }, + { + "Id": 12895, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2016-02-27T17:16:48", + "TransactionId": 10097059, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 537, + "CustomerInfo": 96217777, + "PaymentType": "Credit Card" + }, + { + "Id": 12896, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2018-07-23T16:03:22", + "TransactionId": 55245120, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 924, + "CustomerInfo": 70089507, + "PaymentType": "Debit Card" + }, + { + "Id": 12897, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-04-06T14:21:16", + "TransactionId": 43534486, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 729, + "CustomerInfo": 5618204, + "PaymentType": "Cash" + }, + { + "Id": 12898, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2017-12-12T13:27:50", + "TransactionId": 41586206, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 880, + "CustomerInfo": 42090830, + "PaymentType": "Debit Card" + }, + { + "Id": 12899, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-12-04T10:48:43", + "TransactionId": 95020913, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 83, + "CustomerInfo": 96595584, + "PaymentType": "Debit Card" + }, + { + "Id": 12900, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2018-08-31T11:42:35", + "TransactionId": 92874311, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 970, + "CustomerInfo": 40988878, + "PaymentType": "Credit Card" + }, + { + "Id": 12901, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-08-25T15:44:56", + "TransactionId": 53728527, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 529, + "CustomerInfo": 47493881, + "PaymentType": "Debit Card" + }, + { + "Id": 12902, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2019-02-27T15:30:06", + "TransactionId": 44644863, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 926, + "CustomerInfo": 93517676, + "PaymentType": "Credit Card" + }, + { + "Id": 12903, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2017-12-31T07:44:59", + "TransactionId": 49092039, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 472, + "CustomerInfo": 21238188, + "PaymentType": "Cash" + }, + { + "Id": 12904, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-10-06T14:40:16", + "TransactionId": 99536067, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 521, + "CustomerInfo": 57605799, + "PaymentType": "Debit Card" + }, + { + "Id": 12905, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2018-07-08T13:55:55", + "TransactionId": 72152238, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 761, + "CustomerInfo": 31987148, + "PaymentType": "Debit Card" + }, + { + "Id": 12906, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2016-03-20T17:53:23", + "TransactionId": 72834888, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 995, + "CustomerInfo": 9678790, + "PaymentType": "Cash" + }, + { + "Id": 12907, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2019-01-04T18:35:00", + "TransactionId": 35166251, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 36175255, + "PaymentType": "Cash" + }, + { + "Id": 12908, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2019-09-21T13:32:18", + "TransactionId": 46600913, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 378, + "CustomerInfo": 55134233, + "PaymentType": "Cash" + }, + { + "Id": 12909, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2019-07-08T08:32:04", + "TransactionId": 23137287, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 841, + "CustomerInfo": 21349343, + "PaymentType": "Debit Card" + }, + { + "Id": 12910, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2019-07-29T11:20:33", + "TransactionId": 83442515, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 836, + "CustomerInfo": 35934944, + "PaymentType": "Credit Card" + }, + { + "Id": 12911, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2018-09-02T17:13:12", + "TransactionId": 53989977, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 672, + "CustomerInfo": 66490296, + "PaymentType": "Credit Card" + }, + { + "Id": 12912, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-01-13T13:08:41", + "TransactionId": 13014499, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 631, + "CustomerInfo": 81589416, + "PaymentType": "Credit Card" + }, + { + "Id": 12913, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2019-03-15T18:43:38", + "TransactionId": 47577476, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 944, + "CustomerInfo": 4426403, + "PaymentType": "Credit Card" + }, + { + "Id": 12914, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2017-03-21T15:25:03", + "TransactionId": 82710569, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 952, + "CustomerInfo": 28250399, + "PaymentType": "Cash" + }, + { + "Id": 12915, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2016-05-20T09:31:32", + "TransactionId": 3879809, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 816, + "CustomerInfo": 11214006, + "PaymentType": "Cash" + }, + { + "Id": 12916, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-02-16T08:28:36", + "TransactionId": 14726857, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 29, + "CustomerInfo": 66897362, + "PaymentType": "Cash" + }, + { + "Id": 12917, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2018-07-14T11:30:03", + "TransactionId": 73337598, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 1000, + "CustomerInfo": 128949, + "PaymentType": "Cash" + }, + { + "Id": 12918, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2017-08-10T12:19:35", + "TransactionId": 8707775, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 673, + "CustomerInfo": 6986581, + "PaymentType": "Credit Card" + }, + { + "Id": 12919, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2016-02-15T16:35:28", + "TransactionId": 69958782, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 664, + "CustomerInfo": 26543276, + "PaymentType": "Credit Card" + }, + { + "Id": 12920, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2018-08-30T16:46:16", + "TransactionId": 71520734, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 337, + "CustomerInfo": 9899577, + "PaymentType": "Cash" + }, + { + "Id": 12921, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2017-01-06T09:09:30", + "TransactionId": 97515940, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 117, + "CustomerInfo": 64951361, + "PaymentType": "Cash" + }, + { + "Id": 12922, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2017-09-14T16:38:56", + "TransactionId": 92093261, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 638, + "CustomerInfo": 90078936, + "PaymentType": "Debit Card" + }, + { + "Id": 12923, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2017-06-23T19:17:02", + "TransactionId": 34199855, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 888, + "CustomerInfo": 54732498, + "PaymentType": "Debit Card" + }, + { + "Id": 12924, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-02-28T10:50:01", + "TransactionId": 79735588, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 65, + "CustomerInfo": 3994005, + "PaymentType": "Cash" + }, + { + "Id": 12925, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2018-07-14T07:18:12", + "TransactionId": 62046055, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 85, + "CustomerInfo": 63258673, + "PaymentType": "Debit Card" + }, + { + "Id": 12926, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2019-01-27T10:57:04", + "TransactionId": 31126980, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 49, + "CustomerInfo": 42931498, + "PaymentType": "Debit Card" + }, + { + "Id": 12927, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2017-08-22T19:19:29", + "TransactionId": 89651808, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 579, + "CustomerInfo": 28753814, + "PaymentType": "Credit Card" + }, + { + "Id": 12928, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-09-30T14:38:41", + "TransactionId": 37292320, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 310, + "CustomerInfo": 75498376, + "PaymentType": "Debit Card" + }, + { + "Id": 12929, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-11-14T13:39:48", + "TransactionId": 24930534, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 988, + "CustomerInfo": 39953625, + "PaymentType": "Debit Card" + }, + { + "Id": 12930, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-12-04T07:21:39", + "TransactionId": 31556144, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 633, + "CustomerInfo": 14511675, + "PaymentType": "Cash" + }, + { + "Id": 12931, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2018-01-01T17:55:06", + "TransactionId": 23929463, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 223, + "CustomerInfo": 36792832, + "PaymentType": "Cash" + }, + { + "Id": 12932, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-08-19T16:30:26", + "TransactionId": 50440147, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 611, + "CustomerInfo": 32603303, + "PaymentType": "Credit Card" + }, + { + "Id": 12933, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2017-11-06T17:12:20", + "TransactionId": 1563696, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 82, + "CustomerInfo": 80705570, + "PaymentType": "Credit Card" + }, + { + "Id": 12934, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-08-14T15:41:37", + "TransactionId": 72862819, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 504, + "CustomerInfo": 94226752, + "PaymentType": "Cash" + }, + { + "Id": 12935, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-10-13T14:29:37", + "TransactionId": 47108698, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 891, + "CustomerInfo": 55322853, + "PaymentType": "Debit Card" + }, + { + "Id": 12936, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-03-19T14:44:44", + "TransactionId": 94908878, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 609, + "CustomerInfo": 65285149, + "PaymentType": "Cash" + }, + { + "Id": 12937, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-04-01T14:59:17", + "TransactionId": 61268238, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 93400998, + "PaymentType": "Credit Card" + }, + { + "Id": 12938, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2019-12-21T19:00:20", + "TransactionId": 23495681, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 287, + "CustomerInfo": 59602039, + "PaymentType": "Debit Card" + }, + { + "Id": 12939, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2019-06-07T18:27:22", + "TransactionId": 57801066, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 854, + "CustomerInfo": 11036696, + "PaymentType": "Debit Card" + }, + { + "Id": 12940, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-10-23T11:10:11", + "TransactionId": 89040252, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 155, + "CustomerInfo": 21926143, + "PaymentType": "Debit Card" + }, + { + "Id": 12941, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2017-09-16T12:04:45", + "TransactionId": 67957574, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 450, + "CustomerInfo": 76610455, + "PaymentType": "Cash" + }, + { + "Id": 12942, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-02-05T14:42:43", + "TransactionId": 66505943, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 937, + "CustomerInfo": 77198626, + "PaymentType": "Debit Card" + }, + { + "Id": 12943, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2018-10-16T16:10:08", + "TransactionId": 30264606, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 144, + "CustomerInfo": 89925513, + "PaymentType": "Debit Card" + }, + { + "Id": 12944, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-04-07T13:44:41", + "TransactionId": 30656149, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 989, + "CustomerInfo": 63292774, + "PaymentType": "Debit Card" + }, + { + "Id": 12945, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2019-04-04T15:13:58", + "TransactionId": 82163183, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 518, + "CustomerInfo": 40987166, + "PaymentType": "Debit Card" + }, + { + "Id": 12946, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-11-06T16:26:15", + "TransactionId": 90275642, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 380, + "CustomerInfo": 30122890, + "PaymentType": "Credit Card" + }, + { + "Id": 12947, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2018-04-12T11:01:41", + "TransactionId": 79426617, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 326, + "CustomerInfo": 44392895, + "PaymentType": "Credit Card" + }, + { + "Id": 12948, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-06-27T11:05:00", + "TransactionId": 38599042, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 35, + "CustomerInfo": 85558208, + "PaymentType": "Cash" + }, + { + "Id": 12949, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2016-04-17T14:52:31", + "TransactionId": 15105515, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 751, + "CustomerInfo": 91976224, + "PaymentType": "Cash" + }, + { + "Id": 12950, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2019-07-20T16:49:44", + "TransactionId": 61981114, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 138, + "CustomerInfo": 11414075, + "PaymentType": "Cash" + }, + { + "Id": 12951, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2017-09-28T17:09:36", + "TransactionId": 90883748, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 356, + "CustomerInfo": 10631504, + "PaymentType": "Debit Card" + }, + { + "Id": 12952, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2017-11-26T18:05:11", + "TransactionId": 42017026, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 627, + "CustomerInfo": 71296141, + "PaymentType": "Debit Card" + }, + { + "Id": 12953, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2017-05-08T18:50:15", + "TransactionId": 34455656, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 344, + "CustomerInfo": 85326118, + "PaymentType": "Debit Card" + }, + { + "Id": 12954, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-01-17T12:36:43", + "TransactionId": 30887922, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 544, + "CustomerInfo": 56269415, + "PaymentType": "Debit Card" + }, + { + "Id": 12955, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2019-05-04T10:57:48", + "TransactionId": 87709021, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 575, + "CustomerInfo": 38786903, + "PaymentType": "Credit Card" + }, + { + "Id": 12956, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2019-11-24T19:44:50", + "TransactionId": 33859655, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 493, + "CustomerInfo": 63216384, + "PaymentType": "Credit Card" + }, + { + "Id": 12957, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2019-06-27T09:20:10", + "TransactionId": 64944174, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 136, + "CustomerInfo": 35620421, + "PaymentType": "Debit Card" + }, + { + "Id": 12958, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2016-04-20T07:14:44", + "TransactionId": 57147231, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 301, + "CustomerInfo": 96012326, + "PaymentType": "Cash" + }, + { + "Id": 12959, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-02-11T17:08:10", + "TransactionId": 17361772, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 92, + "CustomerInfo": 11142177, + "PaymentType": "Cash" + }, + { + "Id": 12960, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2019-06-09T09:04:45", + "TransactionId": 33175259, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 931, + "CustomerInfo": 88036139, + "PaymentType": "Cash" + }, + { + "Id": 12961, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-05-22T07:38:04", + "TransactionId": 20333628, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 428, + "CustomerInfo": 50813241, + "PaymentType": "Credit Card" + }, + { + "Id": 12962, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2017-04-04T09:19:35", + "TransactionId": 33891104, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 90, + "CustomerInfo": 12381417, + "PaymentType": "Credit Card" + }, + { + "Id": 12963, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2019-05-16T13:42:06", + "TransactionId": 53842118, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 346, + "CustomerInfo": 8044590, + "PaymentType": "Debit Card" + }, + { + "Id": 12964, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2018-11-28T08:33:39", + "TransactionId": 69617781, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 28452963, + "PaymentType": "Debit Card" + }, + { + "Id": 12965, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2017-10-07T17:16:57", + "TransactionId": 93992220, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 925, + "CustomerInfo": 38137754, + "PaymentType": "Debit Card" + }, + { + "Id": 12966, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-05-10T16:46:42", + "TransactionId": 23805816, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 391, + "CustomerInfo": 35908874, + "PaymentType": "Debit Card" + }, + { + "Id": 12967, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-10-13T14:17:48", + "TransactionId": 8440862, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 804, + "CustomerInfo": 22017207, + "PaymentType": "Credit Card" + }, + { + "Id": 12968, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2018-02-16T19:47:00", + "TransactionId": 78553213, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 349, + "CustomerInfo": 84536097, + "PaymentType": "Cash" + }, + { + "Id": 12969, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2019-08-28T07:14:18", + "TransactionId": 7230382, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 942, + "CustomerInfo": 3457514, + "PaymentType": "Credit Card" + }, + { + "Id": 12970, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-04-17T10:36:20", + "TransactionId": 16900104, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 442, + "CustomerInfo": 60463478, + "PaymentType": "Cash" + }, + { + "Id": 12971, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-04-03T19:18:55", + "TransactionId": 77505664, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 269, + "CustomerInfo": 57050983, + "PaymentType": "Cash" + }, + { + "Id": 12972, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-10-05T10:50:53", + "TransactionId": 80243610, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 173, + "CustomerInfo": 31827673, + "PaymentType": "Credit Card" + }, + { + "Id": 12973, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2016-08-22T14:31:21", + "TransactionId": 49273380, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 791, + "CustomerInfo": 75023642, + "PaymentType": "Credit Card" + }, + { + "Id": 12974, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2016-06-22T18:29:40", + "TransactionId": 8806036, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 510, + "CustomerInfo": 46249554, + "PaymentType": "Debit Card" + }, + { + "Id": 12975, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2016-08-07T08:42:35", + "TransactionId": 52947559, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 592, + "CustomerInfo": 66225577, + "PaymentType": "Credit Card" + }, + { + "Id": 12976, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2016-01-29T08:20:15", + "TransactionId": 61995017, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 235, + "CustomerInfo": 89947337, + "PaymentType": "Credit Card" + }, + { + "Id": 12977, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-08-09T17:11:46", + "TransactionId": 21076952, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 88, + "CustomerInfo": 65387713, + "PaymentType": "Credit Card" + }, + { + "Id": 12978, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-04-10T15:07:38", + "TransactionId": 18058816, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 839, + "CustomerInfo": 58257231, + "PaymentType": "Cash" + }, + { + "Id": 12979, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2019-01-13T07:56:56", + "TransactionId": 97346359, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 158, + "CustomerInfo": 2670261, + "PaymentType": "Credit Card" + }, + { + "Id": 12980, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2019-05-04T16:00:37", + "TransactionId": 18796040, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 845, + "CustomerInfo": 84735914, + "PaymentType": "Cash" + }, + { + "Id": 12981, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2019-04-07T11:12:29", + "TransactionId": 71979058, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 452, + "CustomerInfo": 20173566, + "PaymentType": "Credit Card" + }, + { + "Id": 12982, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-12-21T17:34:57", + "TransactionId": 28665671, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 175, + "CustomerInfo": 63326098, + "PaymentType": "Cash" + }, + { + "Id": 12983, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-03-07T14:06:26", + "TransactionId": 54042399, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 743, + "CustomerInfo": 72318575, + "PaymentType": "Cash" + }, + { + "Id": 12984, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-06-21T13:06:32", + "TransactionId": 97922658, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 147, + "CustomerInfo": 99828252, + "PaymentType": "Cash" + }, + { + "Id": 12985, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2019-03-26T15:16:08", + "TransactionId": 94337935, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 124, + "CustomerInfo": 79437609, + "PaymentType": "Cash" + }, + { + "Id": 12986, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-09-06T07:38:30", + "TransactionId": 76928110, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 26, + "CustomerInfo": 446731, + "PaymentType": "Credit Card" + }, + { + "Id": 12987, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2017-09-23T17:21:24", + "TransactionId": 14757797, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 870, + "CustomerInfo": 87845249, + "PaymentType": "Credit Card" + }, + { + "Id": 12988, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2017-11-09T08:54:40", + "TransactionId": 88786214, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 277, + "CustomerInfo": 20425755, + "PaymentType": "Debit Card" + }, + { + "Id": 12989, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-04-25T19:48:00", + "TransactionId": 57295633, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 886, + "CustomerInfo": 57763933, + "PaymentType": "Debit Card" + }, + { + "Id": 12990, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-11-05T10:55:47", + "TransactionId": 87238686, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 868, + "CustomerInfo": 56818751, + "PaymentType": "Credit Card" + }, + { + "Id": 12991, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2019-01-25T18:33:50", + "TransactionId": 38461560, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 688, + "CustomerInfo": 38284576, + "PaymentType": "Credit Card" + }, + { + "Id": 12992, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-03-19T14:51:30", + "TransactionId": 84850928, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 179, + "CustomerInfo": 37116972, + "PaymentType": "Cash" + }, + { + "Id": 12993, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-05-12T19:01:29", + "TransactionId": 26903317, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 654, + "CustomerInfo": 8909767, + "PaymentType": "Cash" + }, + { + "Id": 12994, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2018-06-25T14:37:06", + "TransactionId": 11032093, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 134, + "CustomerInfo": 19203651, + "PaymentType": "Credit Card" + }, + { + "Id": 12995, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-04-03T10:38:30", + "TransactionId": 8768700, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 236, + "CustomerInfo": 90560323, + "PaymentType": "Debit Card" + }, + { + "Id": 12996, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2018-07-11T19:28:34", + "TransactionId": 4898709, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 713, + "CustomerInfo": 20208962, + "PaymentType": "Credit Card" + }, + { + "Id": 12997, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-11-22T15:12:40", + "TransactionId": 39810437, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 209, + "CustomerInfo": 68203712, + "PaymentType": "Credit Card" + }, + { + "Id": 12998, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2019-05-07T14:06:09", + "TransactionId": 45054431, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 830, + "CustomerInfo": 8938356, + "PaymentType": "Cash" + }, + { + "Id": 12999, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-02-22T08:59:08", + "TransactionId": 99860908, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 8936082, + "PaymentType": "Credit Card" + }, + { + "Id": 13000, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-07-04T10:28:16", + "TransactionId": 5325425, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 454, + "CustomerInfo": 38134755, + "PaymentType": "Cash" + }, + { + "Id": 13001, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-10-22T10:23:57", + "TransactionId": 48293600, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 506, + "CustomerInfo": 36709954, + "PaymentType": "Debit Card" + }, + { + "Id": 13002, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-11-10T12:31:32", + "TransactionId": 93803314, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 373, + "CustomerInfo": 34722751, + "PaymentType": "Debit Card" + }, + { + "Id": 13003, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-03-22T13:38:38", + "TransactionId": 55805206, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 438, + "CustomerInfo": 81614502, + "PaymentType": "Credit Card" + }, + { + "Id": 13004, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2017-06-08T17:18:49", + "TransactionId": 64569330, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 877, + "CustomerInfo": 86872864, + "PaymentType": "Credit Card" + }, + { + "Id": 13005, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-02-07T10:42:49", + "TransactionId": 96797963, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 575, + "CustomerInfo": 42159336, + "PaymentType": "Cash" + }, + { + "Id": 13006, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2016-06-11T19:14:27", + "TransactionId": 24096018, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 162, + "CustomerInfo": 91850093, + "PaymentType": "Debit Card" + }, + { + "Id": 13007, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-06-26T12:18:35", + "TransactionId": 18907286, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 63, + "CustomerInfo": 52609030, + "PaymentType": "Cash" + }, + { + "Id": 13008, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2019-10-28T19:57:48", + "TransactionId": 44787097, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 919, + "CustomerInfo": 8945828, + "PaymentType": "Cash" + }, + { + "Id": 13009, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2017-11-04T07:31:52", + "TransactionId": 75895496, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 15, + "CustomerInfo": 15237474, + "PaymentType": "Debit Card" + }, + { + "Id": 13010, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-05-04T11:43:35", + "TransactionId": 8933205, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 25, + "CustomerInfo": 42216340, + "PaymentType": "Credit Card" + }, + { + "Id": 13011, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2018-11-13T12:14:33", + "TransactionId": 78314187, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 128, + "CustomerInfo": 52811277, + "PaymentType": "Debit Card" + }, + { + "Id": 13012, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-06-05T13:41:48", + "TransactionId": 14191086, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 38446770, + "PaymentType": "Credit Card" + }, + { + "Id": 13013, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2019-06-07T15:30:40", + "TransactionId": 98535034, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 992, + "CustomerInfo": 88498549, + "PaymentType": "Credit Card" + }, + { + "Id": 13014, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2017-11-26T09:20:27", + "TransactionId": 82291850, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 825, + "CustomerInfo": 95100321, + "PaymentType": "Credit Card" + }, + { + "Id": 13015, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-02-01T18:52:08", + "TransactionId": 28301731, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 141, + "CustomerInfo": 77433961, + "PaymentType": "Cash" + }, + { + "Id": 13016, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2018-01-21T07:55:47", + "TransactionId": 33195878, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 464, + "CustomerInfo": 45600089, + "PaymentType": "Debit Card" + }, + { + "Id": 13017, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-05-21T13:23:05", + "TransactionId": 89412695, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 577, + "CustomerInfo": 90597530, + "PaymentType": "Debit Card" + }, + { + "Id": 13018, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-03-18T14:30:20", + "TransactionId": 98949869, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 490, + "CustomerInfo": 34199583, + "PaymentType": "Cash" + }, + { + "Id": 13019, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2018-04-17T14:15:39", + "TransactionId": 52659358, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 403, + "CustomerInfo": 97358500, + "PaymentType": "Debit Card" + }, + { + "Id": 13020, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2019-06-01T19:42:49", + "TransactionId": 49566825, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 26, + "CustomerInfo": 20315589, + "PaymentType": "Debit Card" + }, + { + "Id": 13021, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2017-02-10T08:52:31", + "TransactionId": 65577455, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 705, + "CustomerInfo": 61403938, + "PaymentType": "Credit Card" + }, + { + "Id": 13022, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2018-11-01T18:07:55", + "TransactionId": 1286943, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 73, + "CustomerInfo": 74132990, + "PaymentType": "Cash" + }, + { + "Id": 13023, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2017-06-29T18:19:44", + "TransactionId": 40366768, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 471, + "CustomerInfo": 36611433, + "PaymentType": "Debit Card" + }, + { + "Id": 13024, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-04-08T16:23:14", + "TransactionId": 43886325, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 716, + "CustomerInfo": 86864108, + "PaymentType": "Cash" + }, + { + "Id": 13025, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2016-07-26T13:01:03", + "TransactionId": 83503622, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 504, + "CustomerInfo": 82271642, + "PaymentType": "Cash" + }, + { + "Id": 13026, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-11-22T08:14:38", + "TransactionId": 91240820, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 780, + "CustomerInfo": 57815435, + "PaymentType": "Cash" + }, + { + "Id": 13027, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-10-04T15:12:58", + "TransactionId": 23522536, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 32281378, + "PaymentType": "Credit Card" + }, + { + "Id": 13028, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-08-01T13:34:36", + "TransactionId": 40953668, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 669, + "CustomerInfo": 55431119, + "PaymentType": "Cash" + }, + { + "Id": 13029, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-07-14T13:26:33", + "TransactionId": 89993664, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 191, + "CustomerInfo": 36073997, + "PaymentType": "Credit Card" + }, + { + "Id": 13030, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2018-10-24T15:09:48", + "TransactionId": 4394460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 706, + "CustomerInfo": 4997931, + "PaymentType": "Credit Card" + }, + { + "Id": 13031, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-09-25T18:55:00", + "TransactionId": 13214050, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 751, + "CustomerInfo": 67007003, + "PaymentType": "Credit Card" + }, + { + "Id": 13032, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-06-26T09:06:29", + "TransactionId": 93543255, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 155, + "CustomerInfo": 94930181, + "PaymentType": "Cash" + }, + { + "Id": 13033, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-09-16T14:31:12", + "TransactionId": 38333316, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 528, + "CustomerInfo": 44036636, + "PaymentType": "Credit Card" + }, + { + "Id": 13034, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2018-09-13T15:05:20", + "TransactionId": 55859633, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 81798827, + "PaymentType": "Credit Card" + }, + { + "Id": 13035, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-10-25T12:29:40", + "TransactionId": 7462846, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 795, + "CustomerInfo": 70407737, + "PaymentType": "Credit Card" + }, + { + "Id": 13036, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2016-07-31T11:49:38", + "TransactionId": 10579443, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 943, + "CustomerInfo": 40062238, + "PaymentType": "Credit Card" + }, + { + "Id": 13037, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2019-12-04T16:07:24", + "TransactionId": 80644149, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 800, + "CustomerInfo": 72476110, + "PaymentType": "Cash" + }, + { + "Id": 13038, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2018-11-17T09:32:33", + "TransactionId": 50681039, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 553, + "CustomerInfo": 64624097, + "PaymentType": "Credit Card" + }, + { + "Id": 13039, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-05-11T07:56:12", + "TransactionId": 75727800, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 592, + "CustomerInfo": 6386530, + "PaymentType": "Debit Card" + }, + { + "Id": 13040, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-01-27T17:31:12", + "TransactionId": 38467107, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 887, + "CustomerInfo": 43302595, + "PaymentType": "Credit Card" + }, + { + "Id": 13041, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2018-07-04T17:00:40", + "TransactionId": 80437440, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 471, + "CustomerInfo": 55719884, + "PaymentType": "Credit Card" + }, + { + "Id": 13042, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2018-06-02T15:40:02", + "TransactionId": 36710931, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 667, + "CustomerInfo": 96858623, + "PaymentType": "Debit Card" + }, + { + "Id": 13043, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-11-11T07:53:20", + "TransactionId": 82527043, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 815, + "CustomerInfo": 94578162, + "PaymentType": "Cash" + }, + { + "Id": 13044, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2017-09-25T12:13:32", + "TransactionId": 23234858, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 162, + "CustomerInfo": 36323282, + "PaymentType": "Credit Card" + }, + { + "Id": 13045, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-05-12T13:33:10", + "TransactionId": 32906475, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 533, + "CustomerInfo": 22348021, + "PaymentType": "Cash" + }, + { + "Id": 13046, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2016-08-04T17:40:16", + "TransactionId": 25376721, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 674, + "CustomerInfo": 74420220, + "PaymentType": "Credit Card" + }, + { + "Id": 13047, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2017-09-15T14:41:08", + "TransactionId": 46117094, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 756, + "CustomerInfo": 55821032, + "PaymentType": "Cash" + }, + { + "Id": 13048, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2018-02-23T19:24:40", + "TransactionId": 8661137, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 786, + "CustomerInfo": 17168848, + "PaymentType": "Debit Card" + }, + { + "Id": 13049, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2017-03-14T13:37:12", + "TransactionId": 6958935, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 113, + "CustomerInfo": 71165706, + "PaymentType": "Debit Card" + }, + { + "Id": 13050, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2019-12-13T19:40:57", + "TransactionId": 38369747, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 744, + "CustomerInfo": 61936909, + "PaymentType": "Cash" + }, + { + "Id": 13051, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2019-12-08T12:47:23", + "TransactionId": 19576144, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 407, + "CustomerInfo": 62613434, + "PaymentType": "Debit Card" + }, + { + "Id": 13052, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-03-07T10:17:20", + "TransactionId": 54098616, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 293, + "CustomerInfo": 49520226, + "PaymentType": "Debit Card" + }, + { + "Id": 13053, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2019-06-07T11:44:10", + "TransactionId": 61405338, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 403, + "CustomerInfo": 67642539, + "PaymentType": "Credit Card" + }, + { + "Id": 13054, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2017-12-05T18:05:54", + "TransactionId": 82583884, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 801, + "CustomerInfo": 399846, + "PaymentType": "Cash" + }, + { + "Id": 13055, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2019-07-04T09:00:09", + "TransactionId": 13957409, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 437, + "CustomerInfo": 14540096, + "PaymentType": "Credit Card" + }, + { + "Id": 13056, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-09-14T16:39:22", + "TransactionId": 73815419, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 436, + "CustomerInfo": 36851726, + "PaymentType": "Debit Card" + }, + { + "Id": 13057, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-07-15T15:19:00", + "TransactionId": 16697177, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 819, + "CustomerInfo": 64349209, + "PaymentType": "Debit Card" + }, + { + "Id": 13058, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-05-07T15:23:20", + "TransactionId": 29063507, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 466, + "CustomerInfo": 16266139, + "PaymentType": "Debit Card" + }, + { + "Id": 13059, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-02-15T07:39:22", + "TransactionId": 32892218, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 586, + "CustomerInfo": 21293653, + "PaymentType": "Cash" + }, + { + "Id": 13060, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-11-13T11:55:24", + "TransactionId": 30529575, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 95, + "CustomerInfo": 50854932, + "PaymentType": "Debit Card" + }, + { + "Id": 13061, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-03-20T12:28:22", + "TransactionId": 50457373, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 305, + "CustomerInfo": 17130544, + "PaymentType": "Debit Card" + }, + { + "Id": 13062, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-03-05T08:06:52", + "TransactionId": 3420258, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 30, + "CustomerInfo": 91791043, + "PaymentType": "Credit Card" + }, + { + "Id": 13063, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-03-19T18:56:44", + "TransactionId": 18319385, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 607, + "CustomerInfo": 10033441, + "PaymentType": "Debit Card" + }, + { + "Id": 13064, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2016-01-05T18:00:09", + "TransactionId": 46692987, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 643, + "CustomerInfo": 28882485, + "PaymentType": "Cash" + }, + { + "Id": 13065, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-09-21T07:54:12", + "TransactionId": 91159994, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 723, + "CustomerInfo": 68736974, + "PaymentType": "Debit Card" + }, + { + "Id": 13066, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-09-28T07:35:02", + "TransactionId": 90320230, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 537, + "CustomerInfo": 58240669, + "PaymentType": "Debit Card" + }, + { + "Id": 13067, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2016-06-26T07:45:33", + "TransactionId": 94248911, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 377, + "CustomerInfo": 54168257, + "PaymentType": "Debit Card" + }, + { + "Id": 13068, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-06-11T18:58:02", + "TransactionId": 71472102, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 39, + "CustomerInfo": 33562817, + "PaymentType": "Debit Card" + }, + { + "Id": 13069, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-10-02T17:54:06", + "TransactionId": 47986620, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 503, + "CustomerInfo": 71363548, + "PaymentType": "Debit Card" + }, + { + "Id": 13070, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2019-06-03T12:54:00", + "TransactionId": 87726053, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 643, + "CustomerInfo": 17665819, + "PaymentType": "Credit Card" + }, + { + "Id": 13071, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2018-12-09T14:33:22", + "TransactionId": 19454993, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 396, + "CustomerInfo": 14192914, + "PaymentType": "Credit Card" + }, + { + "Id": 13072, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-06-05T11:16:39", + "TransactionId": 42810855, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 100, + "CustomerInfo": 38194204, + "PaymentType": "Cash" + }, + { + "Id": 13073, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2017-05-18T08:28:54", + "TransactionId": 35703783, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 30, + "CustomerInfo": 84887750, + "PaymentType": "Cash" + }, + { + "Id": 13074, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2016-12-27T14:15:22", + "TransactionId": 4528246, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 147, + "CustomerInfo": 87641212, + "PaymentType": "Cash" + }, + { + "Id": 13075, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2019-03-16T15:13:24", + "TransactionId": 45494225, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 348, + "CustomerInfo": 87128850, + "PaymentType": "Cash" + }, + { + "Id": 13076, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-04-16T14:42:00", + "TransactionId": 99768768, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 739, + "CustomerInfo": 67844185, + "PaymentType": "Debit Card" + }, + { + "Id": 13077, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-08-15T08:17:48", + "TransactionId": 93624379, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 786, + "CustomerInfo": 5543046, + "PaymentType": "Credit Card" + }, + { + "Id": 13078, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2019-04-25T11:55:06", + "TransactionId": 69394545, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 456, + "CustomerInfo": 73882478, + "PaymentType": "Credit Card" + }, + { + "Id": 13079, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-04-29T17:14:47", + "TransactionId": 18609533, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 394, + "CustomerInfo": 49968511, + "PaymentType": "Cash" + }, + { + "Id": 13080, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2017-02-12T10:06:32", + "TransactionId": 11147690, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 64, + "CustomerInfo": 86540205, + "PaymentType": "Credit Card" + }, + { + "Id": 13081, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-04-21T14:04:08", + "TransactionId": 91937514, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 218, + "CustomerInfo": 49157779, + "PaymentType": "Credit Card" + }, + { + "Id": 13082, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2016-02-21T18:20:18", + "TransactionId": 40314454, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 293, + "CustomerInfo": 11577485, + "PaymentType": "Credit Card" + }, + { + "Id": 13083, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2019-02-28T08:54:58", + "TransactionId": 81865184, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 180, + "CustomerInfo": 89985182, + "PaymentType": "Credit Card" + }, + { + "Id": 13084, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-09-11T12:50:41", + "TransactionId": 30338741, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 390, + "CustomerInfo": 55224066, + "PaymentType": "Debit Card" + }, + { + "Id": 13085, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-07-20T07:25:41", + "TransactionId": 48843376, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 295, + "CustomerInfo": 24442395, + "PaymentType": "Credit Card" + }, + { + "Id": 13086, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2018-02-14T08:21:59", + "TransactionId": 32705261, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 827, + "CustomerInfo": 37002349, + "PaymentType": "Debit Card" + }, + { + "Id": 13087, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2017-01-28T15:14:07", + "TransactionId": 24762813, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 969, + "CustomerInfo": 41395155, + "PaymentType": "Cash" + }, + { + "Id": 13088, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2016-12-19T10:36:12", + "TransactionId": 50212188, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 477, + "CustomerInfo": 33795238, + "PaymentType": "Credit Card" + }, + { + "Id": 13089, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2016-05-08T16:10:34", + "TransactionId": 60289530, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 836, + "CustomerInfo": 21064338, + "PaymentType": "Debit Card" + }, + { + "Id": 13090, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2019-04-09T15:05:02", + "TransactionId": 5572766, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 339, + "CustomerInfo": 38698713, + "PaymentType": "Credit Card" + }, + { + "Id": 13091, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2018-11-22T16:27:24", + "TransactionId": 40294739, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 620, + "CustomerInfo": 14802596, + "PaymentType": "Cash" + }, + { + "Id": 13092, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-10-30T11:02:33", + "TransactionId": 93811125, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 17871452, + "PaymentType": "Debit Card" + }, + { + "Id": 13093, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2017-12-03T12:02:01", + "TransactionId": 79924510, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 36347667, + "PaymentType": "Cash" + }, + { + "Id": 13094, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-10-31T14:44:10", + "TransactionId": 40468332, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 287, + "CustomerInfo": 81465290, + "PaymentType": "Cash" + }, + { + "Id": 13095, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-07-31T18:06:37", + "TransactionId": 83187846, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 278, + "CustomerInfo": 28544788, + "PaymentType": "Credit Card" + }, + { + "Id": 13096, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2019-03-19T18:53:51", + "TransactionId": 71488268, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 755, + "CustomerInfo": 42200740, + "PaymentType": "Credit Card" + }, + { + "Id": 13097, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2019-12-17T09:47:57", + "TransactionId": 68011090, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 779, + "CustomerInfo": 87581498, + "PaymentType": "Debit Card" + }, + { + "Id": 13098, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2016-05-25T16:46:51", + "TransactionId": 74002921, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 867, + "CustomerInfo": 50752135, + "PaymentType": "Cash" + }, + { + "Id": 13099, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2017-08-05T17:34:31", + "TransactionId": 5726142, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 453, + "CustomerInfo": 87347310, + "PaymentType": "Cash" + }, + { + "Id": 13100, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2019-01-01T19:47:43", + "TransactionId": 8324059, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 726, + "CustomerInfo": 3553761, + "PaymentType": "Credit Card" + }, + { + "Id": 13101, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2017-02-16T14:21:07", + "TransactionId": 81135906, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 81, + "CustomerInfo": 36530019, + "PaymentType": "Cash" + }, + { + "Id": 13102, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-09-18T08:04:25", + "TransactionId": 17104335, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 171, + "CustomerInfo": 79428730, + "PaymentType": "Credit Card" + }, + { + "Id": 13103, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-11-24T13:41:40", + "TransactionId": 88906333, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 184, + "CustomerInfo": 95569451, + "PaymentType": "Credit Card" + }, + { + "Id": 13104, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2017-10-11T09:52:25", + "TransactionId": 9121420, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 89346721, + "PaymentType": "Credit Card" + }, + { + "Id": 13105, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-10-10T18:58:28", + "TransactionId": 58848584, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 536, + "CustomerInfo": 25394849, + "PaymentType": "Credit Card" + }, + { + "Id": 13106, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-08-14T18:47:23", + "TransactionId": 75673429, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 686, + "CustomerInfo": 15583926, + "PaymentType": "Debit Card" + }, + { + "Id": 13107, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2018-03-13T12:30:14", + "TransactionId": 14705224, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 571, + "CustomerInfo": 68430199, + "PaymentType": "Debit Card" + }, + { + "Id": 13108, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2016-11-19T08:07:35", + "TransactionId": 77020667, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 201, + "CustomerInfo": 34301257, + "PaymentType": "Debit Card" + }, + { + "Id": 13109, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2019-08-31T18:35:17", + "TransactionId": 47710895, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 223, + "CustomerInfo": 50888882, + "PaymentType": "Credit Card" + }, + { + "Id": 13110, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2019-10-15T10:01:12", + "TransactionId": 80725098, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 949, + "CustomerInfo": 36165640, + "PaymentType": "Credit Card" + }, + { + "Id": 13111, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-04-19T11:39:07", + "TransactionId": 55216759, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 337, + "CustomerInfo": 56152800, + "PaymentType": "Cash" + }, + { + "Id": 13112, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-04-05T16:16:54", + "TransactionId": 92616542, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 962, + "CustomerInfo": 10951249, + "PaymentType": "Cash" + }, + { + "Id": 13113, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-06-14T12:02:01", + "TransactionId": 22793189, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 963, + "CustomerInfo": 64060674, + "PaymentType": "Cash" + }, + { + "Id": 13114, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2016-03-13T09:23:02", + "TransactionId": 3759198, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 543, + "CustomerInfo": 18939162, + "PaymentType": "Debit Card" + }, + { + "Id": 13115, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2017-11-12T09:50:15", + "TransactionId": 71257499, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 109, + "CustomerInfo": 37958882, + "PaymentType": "Credit Card" + }, + { + "Id": 13116, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-01-26T18:38:01", + "TransactionId": 60694340, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 173, + "CustomerInfo": 54064243, + "PaymentType": "Debit Card" + }, + { + "Id": 13117, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-10-11T16:21:39", + "TransactionId": 76350957, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 690, + "CustomerInfo": 26302698, + "PaymentType": "Debit Card" + }, + { + "Id": 13118, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2016-05-25T19:36:12", + "TransactionId": 98938899, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 191, + "CustomerInfo": 5187210, + "PaymentType": "Cash" + }, + { + "Id": 13119, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2019-04-21T14:34:22", + "TransactionId": 13424645, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 32, + "CustomerInfo": 58206086, + "PaymentType": "Cash" + }, + { + "Id": 13120, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-12-05T19:54:46", + "TransactionId": 67246482, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 70, + "CustomerInfo": 20341539, + "PaymentType": "Debit Card" + }, + { + "Id": 13121, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2016-12-18T14:48:55", + "TransactionId": 57462715, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 985, + "CustomerInfo": 47305935, + "PaymentType": "Cash" + }, + { + "Id": 13122, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2019-06-12T11:22:34", + "TransactionId": 42564091, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 923, + "CustomerInfo": 86227675, + "PaymentType": "Debit Card" + }, + { + "Id": 13123, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-05-04T16:17:37", + "TransactionId": 81903315, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 943, + "CustomerInfo": 41476845, + "PaymentType": "Cash" + }, + { + "Id": 13124, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-05-27T07:02:21", + "TransactionId": 91471439, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 149, + "CustomerInfo": 60937290, + "PaymentType": "Credit Card" + }, + { + "Id": 13125, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2016-07-01T16:00:46", + "TransactionId": 44891487, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 487, + "CustomerInfo": 23794041, + "PaymentType": "Debit Card" + }, + { + "Id": 13126, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2018-01-16T18:40:45", + "TransactionId": 24019640, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 123, + "CustomerInfo": 28796020, + "PaymentType": "Cash" + }, + { + "Id": 13127, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2016-05-17T14:32:21", + "TransactionId": 39931135, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 573, + "CustomerInfo": 16741511, + "PaymentType": "Cash" + }, + { + "Id": 13128, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-04-11T07:35:28", + "TransactionId": 26206905, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 259, + "CustomerInfo": 92115523, + "PaymentType": "Debit Card" + }, + { + "Id": 13129, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-07-06T18:51:33", + "TransactionId": 71821618, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 340, + "CustomerInfo": 27227033, + "PaymentType": "Debit Card" + }, + { + "Id": 13130, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-07-20T12:03:53", + "TransactionId": 14204964, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 809, + "CustomerInfo": 20875753, + "PaymentType": "Credit Card" + }, + { + "Id": 13131, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-02-08T13:35:28", + "TransactionId": 62852885, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 296, + "CustomerInfo": 43085204, + "PaymentType": "Debit Card" + }, + { + "Id": 13132, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2018-10-13T18:54:09", + "TransactionId": 36386153, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 56423161, + "PaymentType": "Debit Card" + }, + { + "Id": 13133, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-10-02T13:13:35", + "TransactionId": 73686223, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 88, + "CustomerInfo": 79147348, + "PaymentType": "Credit Card" + }, + { + "Id": 13134, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2017-04-17T16:38:30", + "TransactionId": 7698574, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 285, + "CustomerInfo": 52252440, + "PaymentType": "Credit Card" + }, + { + "Id": 13135, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2016-09-13T16:46:51", + "TransactionId": 50773648, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 386, + "CustomerInfo": 72920703, + "PaymentType": "Credit Card" + }, + { + "Id": 13136, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-10-17T11:57:07", + "TransactionId": 86665685, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 484, + "CustomerInfo": 12951206, + "PaymentType": "Credit Card" + }, + { + "Id": 13137, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-01-29T08:13:47", + "TransactionId": 52460528, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 132, + "CustomerInfo": 20149306, + "PaymentType": "Debit Card" + }, + { + "Id": 13138, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2016-08-28T14:11:28", + "TransactionId": 93656233, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 276, + "CustomerInfo": 8700877, + "PaymentType": "Debit Card" + }, + { + "Id": 13139, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2019-03-26T17:48:55", + "TransactionId": 12450090, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 811, + "CustomerInfo": 80815523, + "PaymentType": "Cash" + }, + { + "Id": 13140, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2017-06-15T19:27:33", + "TransactionId": 90768071, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 933, + "CustomerInfo": 63996943, + "PaymentType": "Credit Card" + }, + { + "Id": 13141, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-11-22T19:40:57", + "TransactionId": 79211392, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 544, + "CustomerInfo": 32369195, + "PaymentType": "Cash" + }, + { + "Id": 13142, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-02-06T09:07:38", + "TransactionId": 95480524, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 73, + "CustomerInfo": 31943221, + "PaymentType": "Cash" + }, + { + "Id": 13143, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2016-08-14T16:36:29", + "TransactionId": 73316962, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 745, + "CustomerInfo": 81811120, + "PaymentType": "Credit Card" + }, + { + "Id": 13144, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2018-03-06T19:33:53", + "TransactionId": 16071339, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 343, + "CustomerInfo": 87381648, + "PaymentType": "Credit Card" + }, + { + "Id": 13145, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2017-08-06T15:31:24", + "TransactionId": 75043737, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 337, + "CustomerInfo": 8748920, + "PaymentType": "Credit Card" + }, + { + "Id": 13146, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2016-08-25T10:13:09", + "TransactionId": 21934730, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 852, + "CustomerInfo": 2469304, + "PaymentType": "Credit Card" + }, + { + "Id": 13147, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-08-11T14:24:09", + "TransactionId": 45083168, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 959, + "CustomerInfo": 34853399, + "PaymentType": "Cash" + }, + { + "Id": 13148, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-09-08T10:50:18", + "TransactionId": 60896362, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 169, + "CustomerInfo": 1209302, + "PaymentType": "Credit Card" + }, + { + "Id": 13149, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2019-08-27T08:39:33", + "TransactionId": 91385091, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 703, + "CustomerInfo": 70658746, + "PaymentType": "Debit Card" + }, + { + "Id": 13150, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-06-12T12:15:33", + "TransactionId": 4898918, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 140, + "CustomerInfo": 14981572, + "PaymentType": "Cash" + }, + { + "Id": 13151, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2018-04-07T10:59:57", + "TransactionId": 71775237, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 103, + "CustomerInfo": 26185860, + "PaymentType": "Debit Card" + }, + { + "Id": 13152, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2017-03-12T15:58:11", + "TransactionId": 56783134, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 72765344, + "PaymentType": "Cash" + }, + { + "Id": 13153, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2018-01-22T08:26:01", + "TransactionId": 12727694, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 566, + "CustomerInfo": 53314556, + "PaymentType": "Debit Card" + }, + { + "Id": 13154, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-06-03T11:12:46", + "TransactionId": 8439934, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 324, + "CustomerInfo": 84363487, + "PaymentType": "Cash" + }, + { + "Id": 13155, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-05-15T13:18:29", + "TransactionId": 37893140, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 347, + "CustomerInfo": 8529045, + "PaymentType": "Credit Card" + }, + { + "Id": 13156, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-04-30T16:15:45", + "TransactionId": 91885518, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 489, + "CustomerInfo": 27702869, + "PaymentType": "Debit Card" + }, + { + "Id": 13157, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2017-01-26T10:17:02", + "TransactionId": 72741738, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 497, + "CustomerInfo": 2194778, + "PaymentType": "Credit Card" + }, + { + "Id": 13158, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2016-03-18T10:12:26", + "TransactionId": 7004851, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 621, + "CustomerInfo": 88294079, + "PaymentType": "Debit Card" + }, + { + "Id": 13159, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2017-08-21T14:36:58", + "TransactionId": 75593750, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 524, + "CustomerInfo": 59066248, + "PaymentType": "Credit Card" + }, + { + "Id": 13160, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2016-09-20T08:14:12", + "TransactionId": 38987524, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 566, + "CustomerInfo": 61174442, + "PaymentType": "Credit Card" + }, + { + "Id": 13161, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-09-09T16:58:48", + "TransactionId": 90985702, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 768, + "CustomerInfo": 76982933, + "PaymentType": "Cash" + }, + { + "Id": 13162, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-11-02T18:14:41", + "TransactionId": 76512988, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 712, + "CustomerInfo": 81232314, + "PaymentType": "Debit Card" + }, + { + "Id": 13163, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-10-23T15:04:02", + "TransactionId": 14660852, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 505, + "CustomerInfo": 25429328, + "PaymentType": "Cash" + }, + { + "Id": 13164, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-11-02T08:40:25", + "TransactionId": 98499323, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 363, + "CustomerInfo": 65322150, + "PaymentType": "Credit Card" + }, + { + "Id": 13165, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2017-10-31T18:14:41", + "TransactionId": 6623507, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 126, + "CustomerInfo": 24462517, + "PaymentType": "Debit Card" + }, + { + "Id": 13166, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-01-05T18:03:27", + "TransactionId": 88465903, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 741, + "CustomerInfo": 8873757, + "PaymentType": "Cash" + }, + { + "Id": 13167, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-05-06T12:15:07", + "TransactionId": 86348599, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 905, + "CustomerInfo": 45000135, + "PaymentType": "Cash" + }, + { + "Id": 13168, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-02-04T11:06:43", + "TransactionId": 70449504, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 763, + "CustomerInfo": 88860976, + "PaymentType": "Cash" + }, + { + "Id": 13169, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-03-12T18:40:54", + "TransactionId": 26133319, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 980, + "CustomerInfo": 16156319, + "PaymentType": "Credit Card" + }, + { + "Id": 13170, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2019-12-14T18:19:26", + "TransactionId": 24473930, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 509, + "CustomerInfo": 62755024, + "PaymentType": "Debit Card" + }, + { + "Id": 13171, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2019-03-29T15:02:10", + "TransactionId": 80199478, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 382, + "CustomerInfo": 13221670, + "PaymentType": "Credit Card" + }, + { + "Id": 13172, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2019-04-04T12:27:48", + "TransactionId": 65045522, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 594, + "CustomerInfo": 9322311, + "PaymentType": "Cash" + }, + { + "Id": 13173, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2019-05-26T16:12:09", + "TransactionId": 21711048, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 717, + "CustomerInfo": 48161767, + "PaymentType": "Cash" + }, + { + "Id": 13174, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-12-08T18:44:30", + "TransactionId": 3301887, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 444, + "CustomerInfo": 38093634, + "PaymentType": "Credit Card" + }, + { + "Id": 13175, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2017-08-03T08:55:32", + "TransactionId": 93749620, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 399, + "CustomerInfo": 90559416, + "PaymentType": "Credit Card" + }, + { + "Id": 13176, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-07-06T08:49:12", + "TransactionId": 38214381, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 383, + "CustomerInfo": 84370472, + "PaymentType": "Debit Card" + }, + { + "Id": 13177, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2016-10-24T09:04:11", + "TransactionId": 85876240, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 547, + "CustomerInfo": 7055256, + "PaymentType": "Credit Card" + }, + { + "Id": 13178, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2016-07-17T09:10:57", + "TransactionId": 20663810, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 365, + "CustomerInfo": 65926635, + "PaymentType": "Credit Card" + }, + { + "Id": 13179, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-07-08T08:55:49", + "TransactionId": 44507507, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 780, + "CustomerInfo": 45772240, + "PaymentType": "Cash" + }, + { + "Id": 13180, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2019-07-04T07:46:42", + "TransactionId": 10901593, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 783, + "CustomerInfo": 80788343, + "PaymentType": "Cash" + }, + { + "Id": 13181, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2019-06-07T16:25:41", + "TransactionId": 88088760, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 725, + "CustomerInfo": 35878056, + "PaymentType": "Credit Card" + }, + { + "Id": 13182, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-12-22T07:09:50", + "TransactionId": 5618149, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 413, + "CustomerInfo": 7023328, + "PaymentType": "Credit Card" + }, + { + "Id": 13183, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2017-08-09T12:01:18", + "TransactionId": 44414340, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 847, + "CustomerInfo": 26170272, + "PaymentType": "Cash" + }, + { + "Id": 13184, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2016-03-06T13:44:50", + "TransactionId": 776370, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 36, + "CustomerInfo": 63031475, + "PaymentType": "Cash" + }, + { + "Id": 13185, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-05-21T10:19:03", + "TransactionId": 26711425, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 627, + "CustomerInfo": 36679136, + "PaymentType": "Debit Card" + }, + { + "Id": 13186, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-11-11T14:18:40", + "TransactionId": 75893792, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 430, + "CustomerInfo": 94671760, + "PaymentType": "Credit Card" + }, + { + "Id": 13187, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2016-02-23T19:02:38", + "TransactionId": 12666198, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 598, + "CustomerInfo": 33872525, + "PaymentType": "Debit Card" + }, + { + "Id": 13188, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2019-03-26T11:42:35", + "TransactionId": 66269790, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 576, + "CustomerInfo": 32473460, + "PaymentType": "Debit Card" + }, + { + "Id": 13189, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2018-05-21T08:24:00", + "TransactionId": 9260801, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 585, + "CustomerInfo": 6500998, + "PaymentType": "Debit Card" + }, + { + "Id": 13190, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-06-20T15:57:53", + "TransactionId": 76325445, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 531, + "CustomerInfo": 43892104, + "PaymentType": "Credit Card" + }, + { + "Id": 13191, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-08-26T11:00:06", + "TransactionId": 40625257, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 303, + "CustomerInfo": 80303972, + "PaymentType": "Debit Card" + }, + { + "Id": 13192, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-07-16T17:46:19", + "TransactionId": 45500176, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 114, + "CustomerInfo": 75351118, + "PaymentType": "Debit Card" + }, + { + "Id": 13193, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2016-01-30T10:39:48", + "TransactionId": 83905974, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 913, + "CustomerInfo": 78664569, + "PaymentType": "Debit Card" + }, + { + "Id": 13194, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-03-03T08:40:08", + "TransactionId": 43704969, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 668, + "CustomerInfo": 51238418, + "PaymentType": "Credit Card" + }, + { + "Id": 13195, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-06-19T13:17:20", + "TransactionId": 83877037, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 397, + "CustomerInfo": 30220337, + "PaymentType": "Credit Card" + }, + { + "Id": 13196, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2016-07-29T17:50:47", + "TransactionId": 90410466, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 31, + "CustomerInfo": 56393728, + "PaymentType": "Credit Card" + }, + { + "Id": 13197, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-07-11T08:05:25", + "TransactionId": 47713332, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 160, + "CustomerInfo": 97741776, + "PaymentType": "Cash" + }, + { + "Id": 13198, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2016-11-03T16:23:14", + "TransactionId": 73617206, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 87, + "CustomerInfo": 72291713, + "PaymentType": "Debit Card" + }, + { + "Id": 13199, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-11-05T16:52:02", + "TransactionId": 6955362, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 648, + "CustomerInfo": 87303925, + "PaymentType": "Cash" + }, + { + "Id": 13200, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-06-10T13:50:36", + "TransactionId": 72130674, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 275, + "CustomerInfo": 30118137, + "PaymentType": "Debit Card" + }, + { + "Id": 13201, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2016-02-25T15:31:49", + "TransactionId": 25476558, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 394, + "CustomerInfo": 84236104, + "PaymentType": "Debit Card" + }, + { + "Id": 13202, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-05-05T16:43:41", + "TransactionId": 81428718, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 11288551, + "PaymentType": "Cash" + }, + { + "Id": 13203, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-06-10T17:47:54", + "TransactionId": 27406679, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 138, + "CustomerInfo": 92611808, + "PaymentType": "Cash" + }, + { + "Id": 13204, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-07-27T18:34:16", + "TransactionId": 73478313, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 914, + "CustomerInfo": 42284778, + "PaymentType": "Credit Card" + }, + { + "Id": 13205, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-11-05T16:34:19", + "TransactionId": 21626622, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 27, + "CustomerInfo": 75365486, + "PaymentType": "Debit Card" + }, + { + "Id": 13206, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-03-03T08:09:27", + "TransactionId": 5361733, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 869, + "CustomerInfo": 73116743, + "PaymentType": "Cash" + }, + { + "Id": 13207, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2017-03-16T07:50:10", + "TransactionId": 20815567, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 599, + "CustomerInfo": 40508259, + "PaymentType": "Cash" + }, + { + "Id": 13208, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-11-04T13:47:43", + "TransactionId": 47094994, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 812, + "CustomerInfo": 20779061, + "PaymentType": "Debit Card" + }, + { + "Id": 13209, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-06-03T15:47:57", + "TransactionId": 26422227, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 71, + "CustomerInfo": 83569879, + "PaymentType": "Cash" + }, + { + "Id": 13210, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2018-04-07T09:21:01", + "TransactionId": 82308909, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 528, + "CustomerInfo": 83044079, + "PaymentType": "Cash" + }, + { + "Id": 13211, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2017-11-22T17:48:12", + "TransactionId": 11272166, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 602, + "CustomerInfo": 66507132, + "PaymentType": "Debit Card" + }, + { + "Id": 13212, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2019-09-06T18:04:19", + "TransactionId": 29195012, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 402, + "CustomerInfo": 46477735, + "PaymentType": "Cash" + }, + { + "Id": 13213, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-05-22T12:38:01", + "TransactionId": 62802660, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 951, + "CustomerInfo": 1001706, + "PaymentType": "Cash" + }, + { + "Id": 13214, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-01-17T13:25:06", + "TransactionId": 31921311, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 250, + "CustomerInfo": 64216408, + "PaymentType": "Debit Card" + }, + { + "Id": 13215, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2018-09-04T17:33:04", + "TransactionId": 45775737, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 633, + "CustomerInfo": 59034470, + "PaymentType": "Cash" + }, + { + "Id": 13216, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-06-26T17:17:05", + "TransactionId": 38878776, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 744, + "CustomerInfo": 88896737, + "PaymentType": "Cash" + }, + { + "Id": 13217, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-11-29T18:55:00", + "TransactionId": 35161803, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 532, + "CustomerInfo": 53356233, + "PaymentType": "Credit Card" + }, + { + "Id": 13218, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-03-06T14:57:24", + "TransactionId": 25833798, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 144, + "CustomerInfo": 48046993, + "PaymentType": "Debit Card" + }, + { + "Id": 13219, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2019-03-29T10:36:20", + "TransactionId": 54081030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 968, + "CustomerInfo": 2538282, + "PaymentType": "Debit Card" + }, + { + "Id": 13220, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2019-12-30T11:40:08", + "TransactionId": 30650313, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 656, + "CustomerInfo": 20249900, + "PaymentType": "Cash" + }, + { + "Id": 13221, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2016-04-06T07:38:30", + "TransactionId": 94040227, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 86021221, + "PaymentType": "Debit Card" + }, + { + "Id": 13222, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-06-19T08:43:35", + "TransactionId": 85713643, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 620, + "CustomerInfo": 61082747, + "PaymentType": "Debit Card" + }, + { + "Id": 13223, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-05-18T12:47:40", + "TransactionId": 16007465, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 768, + "CustomerInfo": 60711482, + "PaymentType": "Cash" + }, + { + "Id": 13224, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-10-12T15:05:54", + "TransactionId": 85605966, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 493, + "CustomerInfo": 84957826, + "PaymentType": "Debit Card" + }, + { + "Id": 13225, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2016-03-17T17:37:06", + "TransactionId": 61909344, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 723, + "CustomerInfo": 13864842, + "PaymentType": "Cash" + }, + { + "Id": 13226, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-11-15T10:42:06", + "TransactionId": 26370765, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 496, + "CustomerInfo": 95504924, + "PaymentType": "Cash" + }, + { + "Id": 13227, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-03-27T13:40:13", + "TransactionId": 94521799, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 932, + "CustomerInfo": 94242193, + "PaymentType": "Cash" + }, + { + "Id": 13228, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2016-10-05T16:06:58", + "TransactionId": 63897227, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 23753499, + "PaymentType": "Credit Card" + }, + { + "Id": 13229, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2018-06-24T08:33:48", + "TransactionId": 63004464, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 814, + "CustomerInfo": 11622451, + "PaymentType": "Cash" + }, + { + "Id": 13230, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2019-04-29T19:15:45", + "TransactionId": 44750146, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 2, + "CustomerInfo": 46544463, + "PaymentType": "Cash" + }, + { + "Id": 13231, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-09-08T12:01:18", + "TransactionId": 66723131, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 113, + "CustomerInfo": 42955184, + "PaymentType": "Cash" + }, + { + "Id": 13232, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-03-25T08:51:39", + "TransactionId": 58402152, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 995, + "CustomerInfo": 40886090, + "PaymentType": "Credit Card" + }, + { + "Id": 13233, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2017-03-15T08:05:34", + "TransactionId": 9350242, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 702, + "CustomerInfo": 79766489, + "PaymentType": "Cash" + }, + { + "Id": 13234, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-06-25T16:14:10", + "TransactionId": 13673610, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 556, + "CustomerInfo": 45482309, + "PaymentType": "Credit Card" + }, + { + "Id": 13235, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-02-27T17:19:49", + "TransactionId": 95501035, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 478, + "CustomerInfo": 687773, + "PaymentType": "Credit Card" + }, + { + "Id": 13236, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-07-09T11:20:07", + "TransactionId": 76564369, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 807, + "CustomerInfo": 66988388, + "PaymentType": "Credit Card" + }, + { + "Id": 13237, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-08-22T16:14:44", + "TransactionId": 93239196, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 702, + "CustomerInfo": 48482559, + "PaymentType": "Credit Card" + }, + { + "Id": 13238, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2018-10-03T17:06:17", + "TransactionId": 19926946, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 996, + "CustomerInfo": 7336891, + "PaymentType": "Credit Card" + }, + { + "Id": 13239, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-08-13T16:56:56", + "TransactionId": 57018073, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 488, + "CustomerInfo": 50352440, + "PaymentType": "Debit Card" + }, + { + "Id": 13240, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2016-05-31T15:35:34", + "TransactionId": 32438834, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 289, + "CustomerInfo": 51372277, + "PaymentType": "Debit Card" + }, + { + "Id": 13241, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2016-12-30T12:23:02", + "TransactionId": 13301905, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 677, + "CustomerInfo": 33424920, + "PaymentType": "Debit Card" + }, + { + "Id": 13242, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-09-03T13:46:34", + "TransactionId": 87971233, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 570, + "CustomerInfo": 34289787, + "PaymentType": "Cash" + }, + { + "Id": 13243, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2016-02-17T07:08:07", + "TransactionId": 9132260, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 528, + "CustomerInfo": 29396621, + "PaymentType": "Cash" + }, + { + "Id": 13244, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-08-27T14:02:41", + "TransactionId": 47417544, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 252, + "CustomerInfo": 11737891, + "PaymentType": "Debit Card" + }, + { + "Id": 13245, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2019-03-11T07:29:17", + "TransactionId": 23790250, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 831, + "CustomerInfo": 7251665, + "PaymentType": "Cash" + }, + { + "Id": 13246, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2018-04-17T07:30:17", + "TransactionId": 47852672, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 346, + "CustomerInfo": 8180852, + "PaymentType": "Credit Card" + }, + { + "Id": 13247, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-11-10T18:20:53", + "TransactionId": 67072528, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 439, + "CustomerInfo": 78582341, + "PaymentType": "Credit Card" + }, + { + "Id": 13248, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-06-30T17:50:21", + "TransactionId": 54994358, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 38, + "CustomerInfo": 44096254, + "PaymentType": "Credit Card" + }, + { + "Id": 13249, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2017-12-28T15:34:51", + "TransactionId": 6492113, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 818, + "CustomerInfo": 43435104, + "PaymentType": "Debit Card" + }, + { + "Id": 13250, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2016-02-21T11:58:16", + "TransactionId": 9329136, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 413, + "CustomerInfo": 52458255, + "PaymentType": "Debit Card" + }, + { + "Id": 13251, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2016-11-05T13:05:14", + "TransactionId": 82241208, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 116, + "CustomerInfo": 2587283, + "PaymentType": "Cash" + }, + { + "Id": 13252, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2019-05-09T15:15:24", + "TransactionId": 57067841, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 850, + "CustomerInfo": 21335867, + "PaymentType": "Cash" + }, + { + "Id": 13253, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-02-06T14:51:04", + "TransactionId": 49393323, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 649, + "CustomerInfo": 70972812, + "PaymentType": "Cash" + }, + { + "Id": 13254, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2016-12-21T11:11:46", + "TransactionId": 14075648, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 26, + "CustomerInfo": 14434370, + "PaymentType": "Credit Card" + }, + { + "Id": 13255, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-04-10T09:19:35", + "TransactionId": 81409034, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 742, + "CustomerInfo": 92828274, + "PaymentType": "Credit Card" + }, + { + "Id": 13256, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-07-13T13:13:00", + "TransactionId": 26955667, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 504, + "CustomerInfo": 96231609, + "PaymentType": "Credit Card" + }, + { + "Id": 13257, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-12-10T17:51:04", + "TransactionId": 59333227, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 731, + "CustomerInfo": 95781729, + "PaymentType": "Debit Card" + }, + { + "Id": 13258, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-07-11T17:04:25", + "TransactionId": 33024815, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 52571563, + "PaymentType": "Debit Card" + }, + { + "Id": 13259, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-10-02T13:56:12", + "TransactionId": 57571721, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 798, + "CustomerInfo": 44771210, + "PaymentType": "Cash" + }, + { + "Id": 13260, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-07-24T16:02:38", + "TransactionId": 54095448, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 572, + "CustomerInfo": 2935230, + "PaymentType": "Cash" + }, + { + "Id": 13261, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2019-01-22T13:01:12", + "TransactionId": 13349925, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 869, + "CustomerInfo": 85283027, + "PaymentType": "Credit Card" + }, + { + "Id": 13262, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-11-17T15:41:02", + "TransactionId": 45204592, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 410, + "CustomerInfo": 44822543, + "PaymentType": "Credit Card" + }, + { + "Id": 13263, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2019-01-13T17:31:55", + "TransactionId": 10489345, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 212, + "CustomerInfo": 60805437, + "PaymentType": "Credit Card" + }, + { + "Id": 13264, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-07-31T10:29:43", + "TransactionId": 23475959, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 406, + "CustomerInfo": 68416469, + "PaymentType": "Debit Card" + }, + { + "Id": 13265, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2019-12-13T08:07:18", + "TransactionId": 84960357, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 756, + "CustomerInfo": 60735236, + "PaymentType": "Debit Card" + }, + { + "Id": 13266, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-02-10T17:39:16", + "TransactionId": 97542621, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 426, + "CustomerInfo": 89438942, + "PaymentType": "Credit Card" + }, + { + "Id": 13267, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-11-06T17:34:05", + "TransactionId": 98232459, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 739, + "CustomerInfo": 64933561, + "PaymentType": "Debit Card" + }, + { + "Id": 13268, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2017-10-21T12:20:10", + "TransactionId": 42077127, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 898, + "CustomerInfo": 86033023, + "PaymentType": "Cash" + }, + { + "Id": 13269, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2019-02-14T15:05:28", + "TransactionId": 20019671, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 637, + "CustomerInfo": 80965170, + "PaymentType": "Credit Card" + }, + { + "Id": 13270, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2017-05-13T09:13:32", + "TransactionId": 31441687, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 378, + "CustomerInfo": 26868048, + "PaymentType": "Debit Card" + }, + { + "Id": 13271, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2017-01-15T19:09:50", + "TransactionId": 7452068, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 136, + "CustomerInfo": 75741426, + "PaymentType": "Credit Card" + }, + { + "Id": 13272, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2018-04-09T14:27:45", + "TransactionId": 6073061, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 194, + "CustomerInfo": 55365149, + "PaymentType": "Cash" + }, + { + "Id": 13273, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-06-03T08:58:08", + "TransactionId": 64498460, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 578, + "CustomerInfo": 42203813, + "PaymentType": "Debit Card" + }, + { + "Id": 13274, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-01-22T12:37:18", + "TransactionId": 64013160, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 520, + "CustomerInfo": 68194333, + "PaymentType": "Cash" + }, + { + "Id": 13275, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2018-03-29T14:26:36", + "TransactionId": 55354353, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 56727850, + "PaymentType": "Cash" + }, + { + "Id": 13276, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-08-15T12:30:32", + "TransactionId": 41789090, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 667, + "CustomerInfo": 89316944, + "PaymentType": "Credit Card" + }, + { + "Id": 13277, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-03-30T17:46:45", + "TransactionId": 14277404, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 449, + "CustomerInfo": 12260773, + "PaymentType": "Debit Card" + }, + { + "Id": 13278, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-06-12T16:34:11", + "TransactionId": 88404035, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 916, + "CustomerInfo": 58708052, + "PaymentType": "Credit Card" + }, + { + "Id": 13279, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2019-12-21T19:59:05", + "TransactionId": 19501071, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 712, + "CustomerInfo": 68610588, + "PaymentType": "Cash" + }, + { + "Id": 13280, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-04-10T13:38:30", + "TransactionId": 72861591, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 137, + "CustomerInfo": 88374633, + "PaymentType": "Cash" + }, + { + "Id": 13281, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2017-03-02T18:23:11", + "TransactionId": 55516299, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 877, + "CustomerInfo": 36447419, + "PaymentType": "Credit Card" + }, + { + "Id": 13282, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2017-07-03T11:01:06", + "TransactionId": 46823178, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 120, + "CustomerInfo": 44591737, + "PaymentType": "Cash" + }, + { + "Id": 13283, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2016-08-24T11:53:57", + "TransactionId": 84953645, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 547, + "CustomerInfo": 4061999, + "PaymentType": "Cash" + }, + { + "Id": 13284, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2019-06-27T17:32:38", + "TransactionId": 19542212, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 122, + "CustomerInfo": 34322062, + "PaymentType": "Debit Card" + }, + { + "Id": 13285, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2017-06-03T13:58:05", + "TransactionId": 6294298, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 868, + "CustomerInfo": 50191964, + "PaymentType": "Debit Card" + }, + { + "Id": 13286, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2018-02-14T08:59:43", + "TransactionId": 68756021, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 746, + "CustomerInfo": 64049577, + "PaymentType": "Cash" + }, + { + "Id": 13287, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-09-09T09:08:12", + "TransactionId": 79297410, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 780, + "CustomerInfo": 29891872, + "PaymentType": "Cash" + }, + { + "Id": 13288, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2016-09-16T18:26:30", + "TransactionId": 55734433, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 810, + "CustomerInfo": 28528509, + "PaymentType": "Credit Card" + }, + { + "Id": 13289, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2017-04-09T19:40:22", + "TransactionId": 30227436, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 62712612, + "PaymentType": "Cash" + }, + { + "Id": 13290, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2019-06-10T13:34:28", + "TransactionId": 45804850, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 73280890, + "PaymentType": "Debit Card" + }, + { + "Id": 13291, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-11-09T14:24:00", + "TransactionId": 58112594, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 187, + "CustomerInfo": 4876171, + "PaymentType": "Debit Card" + }, + { + "Id": 13292, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2019-12-14T14:17:14", + "TransactionId": 89681233, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 420, + "CustomerInfo": 92266210, + "PaymentType": "Credit Card" + }, + { + "Id": 13293, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2019-01-08T09:26:12", + "TransactionId": 79247420, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 481, + "CustomerInfo": 56222962, + "PaymentType": "Cash" + }, + { + "Id": 13294, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2019-09-22T14:07:44", + "TransactionId": 76500506, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 438, + "CustomerInfo": 55490761, + "PaymentType": "Cash" + }, + { + "Id": 13295, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-01-01T15:40:02", + "TransactionId": 52607797, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 395, + "CustomerInfo": 68171410, + "PaymentType": "Debit Card" + }, + { + "Id": 13296, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2017-02-16T19:43:24", + "TransactionId": 91116358, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 90, + "CustomerInfo": 11372929, + "PaymentType": "Credit Card" + }, + { + "Id": 13297, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2019-11-01T15:58:54", + "TransactionId": 95697886, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 23731835, + "PaymentType": "Debit Card" + }, + { + "Id": 13298, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2017-10-28T17:05:25", + "TransactionId": 61560477, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 415, + "CustomerInfo": 2702434, + "PaymentType": "Credit Card" + }, + { + "Id": 13299, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2017-10-17T14:28:11", + "TransactionId": 10318700, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 815, + "CustomerInfo": 75150264, + "PaymentType": "Debit Card" + }, + { + "Id": 13300, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2016-12-12T17:29:37", + "TransactionId": 33568400, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 792, + "CustomerInfo": 74221834, + "PaymentType": "Cash" + }, + { + "Id": 13301, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-07-12T14:09:53", + "TransactionId": 34166999, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 289, + "CustomerInfo": 70909006, + "PaymentType": "Credit Card" + }, + { + "Id": 13302, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-04-23T12:31:32", + "TransactionId": 34012164, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 409, + "CustomerInfo": 74210864, + "PaymentType": "Debit Card" + }, + { + "Id": 13303, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2017-08-06T08:25:09", + "TransactionId": 16410079, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 638, + "CustomerInfo": 69528531, + "PaymentType": "Cash" + }, + { + "Id": 13304, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2018-12-07T07:58:05", + "TransactionId": 29246760, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 923, + "CustomerInfo": 63685828, + "PaymentType": "Credit Card" + }, + { + "Id": 13305, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-10-15T14:50:12", + "TransactionId": 31619795, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 407, + "CustomerInfo": 60502843, + "PaymentType": "Cash" + }, + { + "Id": 13306, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-06-18T12:51:24", + "TransactionId": 73068303, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 241, + "CustomerInfo": 8589357, + "PaymentType": "Debit Card" + }, + { + "Id": 13307, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-11-16T18:45:48", + "TransactionId": 5738142, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 421, + "CustomerInfo": 21094015, + "PaymentType": "Debit Card" + }, + { + "Id": 13308, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-02-22T16:52:45", + "TransactionId": 19626836, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 878, + "CustomerInfo": 35245855, + "PaymentType": "Debit Card" + }, + { + "Id": 13309, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2017-01-29T13:09:16", + "TransactionId": 83845734, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 573, + "CustomerInfo": 27392856, + "PaymentType": "Credit Card" + }, + { + "Id": 13310, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-12-22T16:41:23", + "TransactionId": 31386457, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 710, + "CustomerInfo": 54837048, + "PaymentType": "Cash" + }, + { + "Id": 13311, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-05-11T10:20:30", + "TransactionId": 20177414, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 11908398, + "PaymentType": "Debit Card" + }, + { + "Id": 13312, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2016-12-03T14:44:18", + "TransactionId": 93011561, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 32, + "CustomerInfo": 17272904, + "PaymentType": "Cash" + }, + { + "Id": 13313, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-04-07T15:53:43", + "TransactionId": 77434366, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 449, + "CustomerInfo": 67385650, + "PaymentType": "Credit Card" + }, + { + "Id": 13314, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-05-19T08:48:55", + "TransactionId": 79795033, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 858, + "CustomerInfo": 86711847, + "PaymentType": "Credit Card" + }, + { + "Id": 13315, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-06-28T11:17:05", + "TransactionId": 55327522, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 733, + "CustomerInfo": 22336960, + "PaymentType": "Cash" + }, + { + "Id": 13316, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-11-13T07:59:40", + "TransactionId": 41425050, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 146, + "CustomerInfo": 30736176, + "PaymentType": "Debit Card" + }, + { + "Id": 13317, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2019-04-10T14:57:33", + "TransactionId": 85104008, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 678, + "CustomerInfo": 75965426, + "PaymentType": "Debit Card" + }, + { + "Id": 13318, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-08-11T08:29:46", + "TransactionId": 42349176, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 672, + "CustomerInfo": 51961439, + "PaymentType": "Cash" + }, + { + "Id": 13319, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-10-05T07:21:39", + "TransactionId": 66687735, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 285, + "CustomerInfo": 6699928, + "PaymentType": "Credit Card" + }, + { + "Id": 13320, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-09-11T11:38:24", + "TransactionId": 32074248, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 331, + "CustomerInfo": 77669258, + "PaymentType": "Debit Card" + }, + { + "Id": 13321, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-06-06T18:22:36", + "TransactionId": 68045719, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 453, + "CustomerInfo": 9774372, + "PaymentType": "Debit Card" + }, + { + "Id": 13322, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2016-06-26T13:23:23", + "TransactionId": 41550135, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 210, + "CustomerInfo": 88524774, + "PaymentType": "Debit Card" + }, + { + "Id": 13323, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-08-09T07:12:09", + "TransactionId": 32788618, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 426, + "CustomerInfo": 45331265, + "PaymentType": "Debit Card" + }, + { + "Id": 13324, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-07-23T12:55:52", + "TransactionId": 60977243, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 606, + "CustomerInfo": 11856966, + "PaymentType": "Debit Card" + }, + { + "Id": 13325, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2016-07-15T19:45:59", + "TransactionId": 7598691, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 167, + "CustomerInfo": 98711324, + "PaymentType": "Debit Card" + }, + { + "Id": 13326, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-07-20T09:22:36", + "TransactionId": 55922529, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 26909394, + "PaymentType": "Cash" + }, + { + "Id": 13327, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2016-11-29T18:41:37", + "TransactionId": 29658785, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 803, + "CustomerInfo": 96423969, + "PaymentType": "Cash" + }, + { + "Id": 13328, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2017-08-20T11:54:06", + "TransactionId": 35881038, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 949, + "CustomerInfo": 13046217, + "PaymentType": "Cash" + }, + { + "Id": 13329, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-05-10T19:30:26", + "TransactionId": 68782858, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 748, + "CustomerInfo": 43244881, + "PaymentType": "Credit Card" + }, + { + "Id": 13330, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2019-08-18T09:27:56", + "TransactionId": 87127592, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 359, + "CustomerInfo": 70820749, + "PaymentType": "Cash" + }, + { + "Id": 13331, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-05-12T16:47:25", + "TransactionId": 74008498, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 16, + "CustomerInfo": 56852429, + "PaymentType": "Credit Card" + }, + { + "Id": 13332, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2018-12-14T12:39:10", + "TransactionId": 92389349, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 5, + "CustomerInfo": 89856970, + "PaymentType": "Credit Card" + }, + { + "Id": 13333, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2019-07-03T12:28:22", + "TransactionId": 24332611, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 83330623, + "PaymentType": "Credit Card" + }, + { + "Id": 13334, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2016-10-04T10:37:21", + "TransactionId": 57669944, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 554, + "CustomerInfo": 8289398, + "PaymentType": "Debit Card" + }, + { + "Id": 13335, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2017-11-13T14:56:59", + "TransactionId": 88577240, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 57, + "CustomerInfo": 93965764, + "PaymentType": "Cash" + }, + { + "Id": 13336, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2016-01-04T07:49:52", + "TransactionId": 91240577, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 816, + "CustomerInfo": 79654336, + "PaymentType": "Debit Card" + }, + { + "Id": 13337, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2017-09-01T12:57:10", + "TransactionId": 63949207, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 648, + "CustomerInfo": 64869374, + "PaymentType": "Credit Card" + }, + { + "Id": 13338, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-11-10T18:02:36", + "TransactionId": 10835721, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 855, + "CustomerInfo": 19503703, + "PaymentType": "Cash" + }, + { + "Id": 13339, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2019-11-11T10:03:39", + "TransactionId": 24936420, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 81, + "CustomerInfo": 62228604, + "PaymentType": "Debit Card" + }, + { + "Id": 13340, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-01-30T08:30:29", + "TransactionId": 53584777, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 365, + "CustomerInfo": 57834119, + "PaymentType": "Cash" + }, + { + "Id": 13341, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-01-02T10:59:14", + "TransactionId": 26609511, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 413, + "CustomerInfo": 60275070, + "PaymentType": "Debit Card" + }, + { + "Id": 13342, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2017-03-09T19:59:31", + "TransactionId": 85165042, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 68, + "CustomerInfo": 89606987, + "PaymentType": "Debit Card" + }, + { + "Id": 13343, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-11-20T12:52:08", + "TransactionId": 91534194, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 630, + "CustomerInfo": 61745279, + "PaymentType": "Cash" + }, + { + "Id": 13344, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-06-03T09:43:38", + "TransactionId": 22576107, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 907, + "CustomerInfo": 19903161, + "PaymentType": "Cash" + }, + { + "Id": 13345, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2018-03-27T10:40:22", + "TransactionId": 74428221, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 385, + "CustomerInfo": 14161018, + "PaymentType": "Cash" + }, + { + "Id": 13346, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-03-01T11:51:22", + "TransactionId": 6577481, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 67, + "CustomerInfo": 91116358, + "PaymentType": "Cash" + }, + { + "Id": 13347, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2016-04-17T08:27:27", + "TransactionId": 41090052, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 540, + "CustomerInfo": 14770044, + "PaymentType": "Cash" + }, + { + "Id": 13348, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-01-04T17:36:06", + "TransactionId": 92166860, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 728, + "CustomerInfo": 94136959, + "PaymentType": "Credit Card" + }, + { + "Id": 13349, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2016-09-05T13:31:26", + "TransactionId": 84031359, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 930, + "CustomerInfo": 78629670, + "PaymentType": "Credit Card" + }, + { + "Id": 13350, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2018-05-28T19:12:43", + "TransactionId": 62045291, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 22290192, + "PaymentType": "Credit Card" + }, + { + "Id": 13351, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2017-09-23T16:43:15", + "TransactionId": 5287770, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 635, + "CustomerInfo": 5279097, + "PaymentType": "Debit Card" + }, + { + "Id": 13352, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2019-01-08T15:48:40", + "TransactionId": 8745205, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 321, + "CustomerInfo": 37182213, + "PaymentType": "Cash" + }, + { + "Id": 13353, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-03-24T15:38:27", + "TransactionId": 99835570, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 72761214, + "PaymentType": "Credit Card" + }, + { + "Id": 13354, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-04-25T14:00:23", + "TransactionId": 95806786, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 316, + "CustomerInfo": 71892814, + "PaymentType": "Debit Card" + }, + { + "Id": 13355, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2016-01-16T14:49:47", + "TransactionId": 37092369, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 980, + "CustomerInfo": 8573722, + "PaymentType": "Credit Card" + }, + { + "Id": 13356, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2018-10-27T14:04:34", + "TransactionId": 89035703, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 320, + "CustomerInfo": 81374260, + "PaymentType": "Debit Card" + }, + { + "Id": 13357, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2019-07-27T16:17:46", + "TransactionId": 90231263, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 444, + "CustomerInfo": 87402224, + "PaymentType": "Credit Card" + }, + { + "Id": 13358, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-05-04T11:24:09", + "TransactionId": 44416883, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 77, + "CustomerInfo": 68803252, + "PaymentType": "Debit Card" + }, + { + "Id": 13359, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-10-29T09:48:23", + "TransactionId": 77098579, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 255, + "CustomerInfo": 35210442, + "PaymentType": "Credit Card" + }, + { + "Id": 13360, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2019-03-23T18:44:21", + "TransactionId": 24295901, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 551, + "CustomerInfo": 60625068, + "PaymentType": "Debit Card" + }, + { + "Id": 13361, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2016-11-06T09:53:34", + "TransactionId": 96534354, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 209, + "CustomerInfo": 80268192, + "PaymentType": "Credit Card" + }, + { + "Id": 13362, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-08-22T17:09:45", + "TransactionId": 56405510, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 425, + "CustomerInfo": 92126829, + "PaymentType": "Debit Card" + }, + { + "Id": 13363, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-08-23T18:58:19", + "TransactionId": 37333123, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 412, + "CustomerInfo": 59790767, + "PaymentType": "Debit Card" + }, + { + "Id": 13364, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-02-16T17:02:24", + "TransactionId": 96741701, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 941, + "CustomerInfo": 92410380, + "PaymentType": "Debit Card" + }, + { + "Id": 13365, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-10-11T18:48:58", + "TransactionId": 97460251, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 925, + "CustomerInfo": 61102714, + "PaymentType": "Cash" + }, + { + "Id": 13366, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2019-08-10T15:05:37", + "TransactionId": 41918256, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 437, + "CustomerInfo": 34042565, + "PaymentType": "Cash" + }, + { + "Id": 13367, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2018-07-29T10:51:19", + "TransactionId": 2834318, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 723, + "CustomerInfo": 93968207, + "PaymentType": "Credit Card" + }, + { + "Id": 13368, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-07-30T15:17:25", + "TransactionId": 70361838, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 170, + "CustomerInfo": 42152724, + "PaymentType": "Debit Card" + }, + { + "Id": 13369, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2016-10-31T09:15:42", + "TransactionId": 83981150, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 95545312, + "PaymentType": "Cash" + }, + { + "Id": 13370, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-5", + "TransactionDate": "2018-11-16T18:04:45", + "TransactionId": 17633610, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 2, + "CustomerInfo": 33627177, + "PaymentType": "Cash" + }, + { + "Id": 13371, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-08-10T09:39:10", + "TransactionId": 76549311, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 655, + "CustomerInfo": 87337555, + "PaymentType": "Credit Card" + }, + { + "Id": 13372, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-12-08T12:00:09", + "TransactionId": 93444330, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 576, + "CustomerInfo": 82750772, + "PaymentType": "Debit Card" + }, + { + "Id": 13373, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2017-02-28T11:38:41", + "TransactionId": 72452796, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 400, + "CustomerInfo": 68767730, + "PaymentType": "Cash" + }, + { + "Id": 13374, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2018-06-01T15:25:12", + "TransactionId": 73621256, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 279, + "CustomerInfo": 39538097, + "PaymentType": "Cash" + }, + { + "Id": 13375, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-09-28T09:57:27", + "TransactionId": 44631294, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 434, + "CustomerInfo": 80733719, + "PaymentType": "Cash" + }, + { + "Id": 13376, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-04-12T16:41:14", + "TransactionId": 4822221, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 742, + "CustomerInfo": 41382878, + "PaymentType": "Credit Card" + }, + { + "Id": 13377, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2017-10-15T12:16:08", + "TransactionId": 2345535, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 73, + "CustomerInfo": 18556559, + "PaymentType": "Credit Card" + }, + { + "Id": 13378, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2017-09-09T18:10:31", + "TransactionId": 40601975, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 780, + "CustomerInfo": 6977701, + "PaymentType": "Credit Card" + }, + { + "Id": 13379, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-08-20T11:00:49", + "TransactionId": 57922961, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 672, + "CustomerInfo": 5210697, + "PaymentType": "Cash" + }, + { + "Id": 13380, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-09-15T07:44:50", + "TransactionId": 15987008, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 187, + "CustomerInfo": 6652160, + "PaymentType": "Debit Card" + }, + { + "Id": 13381, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2018-08-24T14:41:17", + "TransactionId": 80314167, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 212, + "CustomerInfo": 36428588, + "PaymentType": "Debit Card" + }, + { + "Id": 13382, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2016-12-11T09:53:43", + "TransactionId": 86343123, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 996, + "CustomerInfo": 63361474, + "PaymentType": "Debit Card" + }, + { + "Id": 13383, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2019-05-21T16:58:22", + "TransactionId": 4326109, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 64, + "CustomerInfo": 29050350, + "PaymentType": "Cash" + }, + { + "Id": 13384, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-05-17T10:47:08", + "TransactionId": 1436225, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 987, + "CustomerInfo": 17915798, + "PaymentType": "Debit Card" + }, + { + "Id": 13385, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2017-04-26T16:05:23", + "TransactionId": 80552366, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 878, + "CustomerInfo": 40034861, + "PaymentType": "Cash" + }, + { + "Id": 13386, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-07-20T19:30:52", + "TransactionId": 61467969, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 781, + "CustomerInfo": 62223977, + "PaymentType": "Credit Card" + }, + { + "Id": 13387, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-09-15T13:56:56", + "TransactionId": 34989572, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 24, + "CustomerInfo": 96276353, + "PaymentType": "Credit Card" + }, + { + "Id": 13388, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-07-09T16:53:02", + "TransactionId": 71907039, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 856, + "CustomerInfo": 36482929, + "PaymentType": "Debit Card" + }, + { + "Id": 13389, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2017-05-14T10:16:19", + "TransactionId": 59135062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 795, + "CustomerInfo": 83495554, + "PaymentType": "Cash" + }, + { + "Id": 13390, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-08-30T12:52:25", + "TransactionId": 44384932, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 608, + "CustomerInfo": 52098481, + "PaymentType": "Cash" + }, + { + "Id": 13391, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2016-05-13T14:31:03", + "TransactionId": 10561101, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 920, + "CustomerInfo": 29592172, + "PaymentType": "Cash" + }, + { + "Id": 13392, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2016-05-17T17:00:49", + "TransactionId": 47671825, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 769, + "CustomerInfo": 87365229, + "PaymentType": "Credit Card" + }, + { + "Id": 13393, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2016-04-05T11:48:03", + "TransactionId": 16415048, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 947, + "CustomerInfo": 93484242, + "PaymentType": "Cash" + }, + { + "Id": 13394, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-05-22T17:34:22", + "TransactionId": 60857602, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 549, + "CustomerInfo": 22758705, + "PaymentType": "Cash" + }, + { + "Id": 13395, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-09-09T09:07:38", + "TransactionId": 6692339, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 463, + "CustomerInfo": 91638269, + "PaymentType": "Credit Card" + }, + { + "Id": 13396, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2016-03-30T14:08:01", + "TransactionId": 962159, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 602, + "CustomerInfo": 39218546, + "PaymentType": "Debit Card" + }, + { + "Id": 13397, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-05-20T13:14:36", + "TransactionId": 58451304, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 92, + "CustomerInfo": 32702935, + "PaymentType": "Debit Card" + }, + { + "Id": 13398, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2019-07-14T11:59:25", + "TransactionId": 63763856, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 166, + "CustomerInfo": 61150664, + "PaymentType": "Cash" + }, + { + "Id": 13399, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2016-11-11T14:31:55", + "TransactionId": 87650343, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 164, + "CustomerInfo": 72280221, + "PaymentType": "Cash" + }, + { + "Id": 13400, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2019-05-29T17:55:49", + "TransactionId": 7632789, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 305, + "CustomerInfo": 33847131, + "PaymentType": "Credit Card" + }, + { + "Id": 13401, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-11-25T09:33:42", + "TransactionId": 50642875, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 698, + "CustomerInfo": 77110019, + "PaymentType": "Cash" + }, + { + "Id": 13402, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2017-05-19T08:08:36", + "TransactionId": 82831116, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 71, + "CustomerInfo": 45812739, + "PaymentType": "Cash" + }, + { + "Id": 13403, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2019-02-01T19:06:40", + "TransactionId": 39229946, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 857, + "CustomerInfo": 95588784, + "PaymentType": "Debit Card" + }, + { + "Id": 13404, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2018-05-17T17:59:51", + "TransactionId": 17735134, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 413, + "CustomerInfo": 82812078, + "PaymentType": "Cash" + }, + { + "Id": 13405, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2018-08-24T15:28:57", + "TransactionId": 70582113, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 794, + "CustomerInfo": 90297012, + "PaymentType": "Credit Card" + }, + { + "Id": 13406, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-12-01T11:54:32", + "TransactionId": 61306488, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 288, + "CustomerInfo": 1919251, + "PaymentType": "Cash" + }, + { + "Id": 13407, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-07-18T15:41:54", + "TransactionId": 17818950, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 508, + "CustomerInfo": 19896847, + "PaymentType": "Debit Card" + }, + { + "Id": 13408, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2017-09-21T12:01:52", + "TransactionId": 50402190, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 984, + "CustomerInfo": 70289466, + "PaymentType": "Cash" + }, + { + "Id": 13409, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-08-08T18:58:02", + "TransactionId": 42906853, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 53581546, + "PaymentType": "Credit Card" + }, + { + "Id": 13410, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-09-28T07:16:45", + "TransactionId": 54105730, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 253, + "CustomerInfo": 32565547, + "PaymentType": "Credit Card" + }, + { + "Id": 13411, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2017-04-06T08:20:50", + "TransactionId": 7261628, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 450, + "CustomerInfo": 57349551, + "PaymentType": "Debit Card" + }, + { + "Id": 13412, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2017-02-15T07:53:20", + "TransactionId": 51351995, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 233, + "CustomerInfo": 17991703, + "PaymentType": "Debit Card" + }, + { + "Id": 13413, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2019-03-30T14:20:59", + "TransactionId": 89646500, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 433, + "CustomerInfo": 23350791, + "PaymentType": "Credit Card" + }, + { + "Id": 13414, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2017-09-14T14:36:40", + "TransactionId": 44591612, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 624, + "CustomerInfo": 19394029, + "PaymentType": "Credit Card" + }, + { + "Id": 13415, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-10-15T14:19:24", + "TransactionId": 40804580, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 577, + "CustomerInfo": 83922483, + "PaymentType": "Cash" + }, + { + "Id": 13416, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-06-14T11:12:55", + "TransactionId": 81296989, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 772, + "CustomerInfo": 379472, + "PaymentType": "Credit Card" + }, + { + "Id": 13417, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-02-21T11:24:43", + "TransactionId": 64926705, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 176, + "CustomerInfo": 90189426, + "PaymentType": "Credit Card" + }, + { + "Id": 13418, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2017-09-24T18:37:09", + "TransactionId": 36671499, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 967, + "CustomerInfo": 43394683, + "PaymentType": "Credit Card" + }, + { + "Id": 13419, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2016-08-29T09:08:30", + "TransactionId": 95817101, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 758, + "CustomerInfo": 16964158, + "PaymentType": "Cash" + }, + { + "Id": 13420, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2018-12-27T12:00:52", + "TransactionId": 18676710, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 132, + "CustomerInfo": 26418089, + "PaymentType": "Credit Card" + }, + { + "Id": 13421, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2018-03-23T08:43:35", + "TransactionId": 69109970, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 843, + "CustomerInfo": 81365570, + "PaymentType": "Credit Card" + }, + { + "Id": 13422, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-11-12T16:04:05", + "TransactionId": 70595173, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 174, + "CustomerInfo": 8603334, + "PaymentType": "Debit Card" + }, + { + "Id": 13423, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-09-09T19:52:36", + "TransactionId": 83785487, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 70, + "CustomerInfo": 68179601, + "PaymentType": "Cash" + }, + { + "Id": 13424, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-08-21T19:40:05", + "TransactionId": 48519079, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 855, + "CustomerInfo": 53208157, + "PaymentType": "Credit Card" + }, + { + "Id": 13425, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-01-27T15:44:12", + "TransactionId": 76673754, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 505, + "CustomerInfo": 81552450, + "PaymentType": "Debit Card" + }, + { + "Id": 13426, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-11-13T16:08:59", + "TransactionId": 65466664, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 711, + "CustomerInfo": 92023743, + "PaymentType": "Credit Card" + }, + { + "Id": 13427, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-05-13T19:20:56", + "TransactionId": 25320814, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 562, + "CustomerInfo": 40090174, + "PaymentType": "Credit Card" + }, + { + "Id": 13428, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2018-02-17T07:13:09", + "TransactionId": 74752541, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 585, + "CustomerInfo": 23221531, + "PaymentType": "Credit Card" + }, + { + "Id": 13429, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2016-12-31T15:21:27", + "TransactionId": 9243633, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 171, + "CustomerInfo": 85295285, + "PaymentType": "Credit Card" + }, + { + "Id": 13430, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-01-11T12:14:24", + "TransactionId": 51721082, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 828, + "CustomerInfo": 74208061, + "PaymentType": "Debit Card" + }, + { + "Id": 13431, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2017-12-15T19:37:29", + "TransactionId": 26586395, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 605, + "CustomerInfo": 23581142, + "PaymentType": "Debit Card" + }, + { + "Id": 13432, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2019-10-26T07:19:21", + "TransactionId": 3069051, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 36, + "CustomerInfo": 7044485, + "PaymentType": "Debit Card" + }, + { + "Id": 13433, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-12-11T14:42:26", + "TransactionId": 8828160, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 46, + "CustomerInfo": 76561721, + "PaymentType": "Debit Card" + }, + { + "Id": 13434, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2016-09-01T10:03:30", + "TransactionId": 73610374, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 166, + "CustomerInfo": 52930940, + "PaymentType": "Cash" + }, + { + "Id": 13435, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2019-03-24T07:39:30", + "TransactionId": 8636571, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 875, + "CustomerInfo": 22146251, + "PaymentType": "Cash" + }, + { + "Id": 13436, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2018-01-18T16:42:49", + "TransactionId": 80643901, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 630, + "CustomerInfo": 30805415, + "PaymentType": "Cash" + }, + { + "Id": 13437, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2018-10-01T16:20:30", + "TransactionId": 66390237, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 162, + "CustomerInfo": 29076329, + "PaymentType": "Cash" + }, + { + "Id": 13438, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2019-01-22T18:27:48", + "TransactionId": 77445689, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 648, + "CustomerInfo": 49295126, + "PaymentType": "Debit Card" + }, + { + "Id": 13439, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-10-25T08:16:22", + "TransactionId": 35177283, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 967, + "CustomerInfo": 29893579, + "PaymentType": "Debit Card" + }, + { + "Id": 13440, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-04-20T13:22:39", + "TransactionId": 91827074, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 122, + "CustomerInfo": 42141810, + "PaymentType": "Credit Card" + }, + { + "Id": 13441, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2017-12-28T07:09:16", + "TransactionId": 68733152, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 636, + "CustomerInfo": 91844188, + "PaymentType": "Credit Card" + }, + { + "Id": 13442, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2016-02-05T10:18:20", + "TransactionId": 31650850, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 766, + "CustomerInfo": 88278301, + "PaymentType": "Debit Card" + }, + { + "Id": 13443, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2019-01-20T09:31:32", + "TransactionId": 73316690, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 954, + "CustomerInfo": 82451296, + "PaymentType": "Debit Card" + }, + { + "Id": 13444, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2017-04-19T07:10:25", + "TransactionId": 80058654, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 952, + "CustomerInfo": 69617958, + "PaymentType": "Debit Card" + }, + { + "Id": 13445, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2017-08-04T10:46:34", + "TransactionId": 29067462, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 498, + "CustomerInfo": 38669173, + "PaymentType": "Cash" + }, + { + "Id": 13446, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2019-09-16T09:32:24", + "TransactionId": 53419373, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 74, + "CustomerInfo": 32403408, + "PaymentType": "Cash" + }, + { + "Id": 13447, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-04-15T11:04:51", + "TransactionId": 28685800, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 73, + "CustomerInfo": 92335391, + "PaymentType": "Credit Card" + }, + { + "Id": 13448, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2016-02-09T18:31:58", + "TransactionId": 3028389, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 236, + "CustomerInfo": 71697112, + "PaymentType": "Credit Card" + }, + { + "Id": 13449, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2017-10-06T07:45:59", + "TransactionId": 17420411, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 744, + "CustomerInfo": 21888252, + "PaymentType": "Debit Card" + }, + { + "Id": 13450, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2017-04-17T11:41:25", + "TransactionId": 91651100, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 110, + "CustomerInfo": 6768043, + "PaymentType": "Credit Card" + }, + { + "Id": 13451, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2017-03-11T18:32:50", + "TransactionId": 35214247, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 513, + "CustomerInfo": 78287299, + "PaymentType": "Credit Card" + }, + { + "Id": 13452, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-04-17T16:11:08", + "TransactionId": 78050621, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 944, + "CustomerInfo": 55248050, + "PaymentType": "Debit Card" + }, + { + "Id": 13453, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2019-10-17T07:43:49", + "TransactionId": 3912394, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 922, + "CustomerInfo": 52047600, + "PaymentType": "Cash" + }, + { + "Id": 13454, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2016-03-16T12:39:27", + "TransactionId": 22031845, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 846, + "CustomerInfo": 42259129, + "PaymentType": "Debit Card" + }, + { + "Id": 13455, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2019-07-13T10:55:55", + "TransactionId": 13580740, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 233, + "CustomerInfo": 62604575, + "PaymentType": "Debit Card" + }, + { + "Id": 13456, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2018-03-10T09:29:48", + "TransactionId": 38508101, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 726, + "CustomerInfo": 55045923, + "PaymentType": "Credit Card" + }, + { + "Id": 13457, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-09-02T08:24:35", + "TransactionId": 86839289, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 356, + "CustomerInfo": 44833663, + "PaymentType": "Debit Card" + }, + { + "Id": 13458, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-03-01T14:54:32", + "TransactionId": 57342746, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 362, + "CustomerInfo": 48622236, + "PaymentType": "Cash" + }, + { + "Id": 13459, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2019-08-23T07:06:14", + "TransactionId": 47070126, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 682, + "CustomerInfo": 97381468, + "PaymentType": "Cash" + }, + { + "Id": 13460, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-2", + "TransactionDate": "2018-01-09T16:56:21", + "TransactionId": 17248222, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 71, + "CustomerInfo": 539369, + "PaymentType": "Debit Card" + }, + { + "Id": 13461, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2019-06-11T17:05:43", + "TransactionId": 21239427, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 81, + "CustomerInfo": 9417664, + "PaymentType": "Cash" + }, + { + "Id": 13462, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-08-09T11:06:26", + "TransactionId": 61671381, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 792, + "CustomerInfo": 69546668, + "PaymentType": "Debit Card" + }, + { + "Id": 13463, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2016-01-08T14:46:11", + "TransactionId": 8726472, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 217, + "CustomerInfo": 71011418, + "PaymentType": "Debit Card" + }, + { + "Id": 13464, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2016-10-25T12:38:18", + "TransactionId": 42506543, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 214, + "CustomerInfo": 57708201, + "PaymentType": "Cash" + }, + { + "Id": 13465, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2019-02-17T18:42:20", + "TransactionId": 6221766, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 350, + "CustomerInfo": 65807375, + "PaymentType": "Cash" + }, + { + "Id": 13466, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-03-07T11:32:47", + "TransactionId": 73662306, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 763, + "CustomerInfo": 26784078, + "PaymentType": "Credit Card" + }, + { + "Id": 13467, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-12-13T16:41:57", + "TransactionId": 35987893, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 474, + "CustomerInfo": 69277398, + "PaymentType": "Debit Card" + }, + { + "Id": 13468, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2019-03-15T08:46:11", + "TransactionId": 3931921, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 515, + "CustomerInfo": 93829402, + "PaymentType": "Cash" + }, + { + "Id": 13469, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2019-06-22T12:10:31", + "TransactionId": 60982530, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 252, + "CustomerInfo": 10605929, + "PaymentType": "Credit Card" + }, + { + "Id": 13470, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-09-02T07:09:42", + "TransactionId": 7147703, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 625, + "CustomerInfo": 29439337, + "PaymentType": "Cash" + }, + { + "Id": 13471, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2019-01-30T14:49:29", + "TransactionId": 3476935, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 366, + "CustomerInfo": 23089525, + "PaymentType": "Credit Card" + }, + { + "Id": 13472, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2018-12-30T10:14:44", + "TransactionId": 83237386, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 837, + "CustomerInfo": 71836767, + "PaymentType": "Credit Card" + }, + { + "Id": 13473, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-03-12T15:50:24", + "TransactionId": 42845078, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 52, + "CustomerInfo": 11370633, + "PaymentType": "Cash" + }, + { + "Id": 13474, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-07-11T19:03:04", + "TransactionId": 16802932, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 337, + "CustomerInfo": 78808621, + "PaymentType": "Credit Card" + }, + { + "Id": 13475, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2017-12-31T09:40:11", + "TransactionId": 97905978, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 640, + "CustomerInfo": 78131454, + "PaymentType": "Debit Card" + }, + { + "Id": 13476, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-01-11T12:30:49", + "TransactionId": 55957069, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 28, + "CustomerInfo": 95564325, + "PaymentType": "Debit Card" + }, + { + "Id": 13477, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-10-26T18:50:15", + "TransactionId": 47794893, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 757, + "CustomerInfo": 53395334, + "PaymentType": "Credit Card" + }, + { + "Id": 13478, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2018-11-19T09:07:47", + "TransactionId": 90722363, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 752, + "CustomerInfo": 25650083, + "PaymentType": "Cash" + }, + { + "Id": 13479, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2018-04-03T10:31:35", + "TransactionId": 39739623, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 395, + "CustomerInfo": 74786898, + "PaymentType": "Credit Card" + }, + { + "Id": 13480, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2016-11-03T12:15:33", + "TransactionId": 37884961, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 990, + "CustomerInfo": 34856583, + "PaymentType": "Cash" + }, + { + "Id": 13481, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2019-06-17T18:29:57", + "TransactionId": 66921277, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 177, + "CustomerInfo": 11548381, + "PaymentType": "Cash" + }, + { + "Id": 13482, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-06-11T17:12:20", + "TransactionId": 20933387, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 223, + "CustomerInfo": 34767618, + "PaymentType": "Debit Card" + }, + { + "Id": 13483, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-12-07T18:44:12", + "TransactionId": 3267357, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 861, + "CustomerInfo": 89056443, + "PaymentType": "Credit Card" + }, + { + "Id": 13484, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-07-17T18:27:48", + "TransactionId": 25588134, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 551, + "CustomerInfo": 54751086, + "PaymentType": "Cash" + }, + { + "Id": 13485, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-10-19T08:47:37", + "TransactionId": 67215115, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 357, + "CustomerInfo": 61782891, + "PaymentType": "Debit Card" + }, + { + "Id": 13486, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-01-23T11:53:05", + "TransactionId": 81965387, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 565, + "CustomerInfo": 17425707, + "PaymentType": "Credit Card" + }, + { + "Id": 13487, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2016-07-09T16:51:10", + "TransactionId": 29184443, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 86220524, + "PaymentType": "Debit Card" + }, + { + "Id": 13488, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2017-08-20T13:25:06", + "TransactionId": 3052453, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 38128336, + "PaymentType": "Debit Card" + }, + { + "Id": 13489, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2018-07-02T13:33:36", + "TransactionId": 97055223, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 233, + "CustomerInfo": 60903729, + "PaymentType": "Debit Card" + }, + { + "Id": 13490, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-06-01T08:47:20", + "TransactionId": 16679694, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 949, + "CustomerInfo": 15687056, + "PaymentType": "Credit Card" + }, + { + "Id": 13491, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-12-03T12:03:27", + "TransactionId": 91908438, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 549, + "CustomerInfo": 41023785, + "PaymentType": "Credit Card" + }, + { + "Id": 13492, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2018-12-11T07:41:48", + "TransactionId": 4208215, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 861, + "CustomerInfo": 99748902, + "PaymentType": "Cash" + }, + { + "Id": 13493, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-10-20T11:48:03", + "TransactionId": 22979648, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 792, + "CustomerInfo": 74517772, + "PaymentType": "Debit Card" + }, + { + "Id": 13494, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2017-02-02T13:49:35", + "TransactionId": 68812014, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 531, + "CustomerInfo": 2938620, + "PaymentType": "Cash" + }, + { + "Id": 13495, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2019-04-29T13:50:10", + "TransactionId": 14763194, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 130, + "CustomerInfo": 69681090, + "PaymentType": "Debit Card" + }, + { + "Id": 13496, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-04-15T12:24:55", + "TransactionId": 19117949, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 857, + "CustomerInfo": 73055373, + "PaymentType": "Debit Card" + }, + { + "Id": 13497, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-09-03T17:33:56", + "TransactionId": 87094091, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 166, + "CustomerInfo": 71686907, + "PaymentType": "Cash" + }, + { + "Id": 13498, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-12-20T08:18:40", + "TransactionId": 21966798, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 912, + "CustomerInfo": 33643657, + "PaymentType": "Cash" + }, + { + "Id": 13499, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-05-10T11:19:41", + "TransactionId": 85533292, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 629, + "CustomerInfo": 34785406, + "PaymentType": "Credit Card" + }, + { + "Id": 13500, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2016-09-21T08:19:49", + "TransactionId": 6458971, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 615, + "CustomerInfo": 21938296, + "PaymentType": "Cash" + }, + { + "Id": 13501, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2017-10-10T08:36:06", + "TransactionId": 67134259, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 824, + "CustomerInfo": 26265035, + "PaymentType": "Debit Card" + }, + { + "Id": 13502, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-02-12T08:08:10", + "TransactionId": 64616241, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 179, + "CustomerInfo": 88713389, + "PaymentType": "Credit Card" + }, + { + "Id": 13503, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-03-29T19:53:20", + "TransactionId": 86493398, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 801, + "CustomerInfo": 6415040, + "PaymentType": "Debit Card" + }, + { + "Id": 13504, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-02-09T16:40:05", + "TransactionId": 56259107, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 32, + "CustomerInfo": 27456729, + "PaymentType": "Credit Card" + }, + { + "Id": 13505, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-08-19T07:34:36", + "TransactionId": 47535323, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 549, + "CustomerInfo": 8713379, + "PaymentType": "Credit Card" + }, + { + "Id": 13506, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-07-04T15:33:33", + "TransactionId": 71411624, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 617, + "CustomerInfo": 91393430, + "PaymentType": "Debit Card" + }, + { + "Id": 13507, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-12-07T08:42:35", + "TransactionId": 75150764, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 246, + "CustomerInfo": 66513507, + "PaymentType": "Cash" + }, + { + "Id": 13508, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2019-07-20T18:03:10", + "TransactionId": 19828408, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 758, + "CustomerInfo": 99508931, + "PaymentType": "Credit Card" + }, + { + "Id": 13509, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2016-04-26T19:21:13", + "TransactionId": 951925, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 402, + "CustomerInfo": 84686833, + "PaymentType": "Debit Card" + }, + { + "Id": 13510, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2019-08-23T16:53:37", + "TransactionId": 27133868, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 705, + "CustomerInfo": 80275660, + "PaymentType": "Credit Card" + }, + { + "Id": 13511, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2018-02-25T09:35:25", + "TransactionId": 41916844, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 218, + "CustomerInfo": 96813223, + "PaymentType": "Cash" + }, + { + "Id": 13512, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2017-04-11T16:51:27", + "TransactionId": 1240432, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 575, + "CustomerInfo": 78702362, + "PaymentType": "Debit Card" + }, + { + "Id": 13513, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-06-19T07:52:36", + "TransactionId": 45200681, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 577, + "CustomerInfo": 68901323, + "PaymentType": "Credit Card" + }, + { + "Id": 13514, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-12-06T15:34:51", + "TransactionId": 85699175, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 57, + "CustomerInfo": 11848347, + "PaymentType": "Credit Card" + }, + { + "Id": 13515, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2017-03-10T13:35:20", + "TransactionId": 11498214, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 598, + "CustomerInfo": 13252062, + "PaymentType": "Cash" + }, + { + "Id": 13516, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2016-10-26T12:32:15", + "TransactionId": 30418638, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 834, + "CustomerInfo": 80511731, + "PaymentType": "Cash" + }, + { + "Id": 13517, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-01-13T16:32:53", + "TransactionId": 71843687, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 75527826, + "PaymentType": "Debit Card" + }, + { + "Id": 13518, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-12-31T12:07:12", + "TransactionId": 31288779, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 240, + "CustomerInfo": 98136989, + "PaymentType": "Credit Card" + }, + { + "Id": 13519, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-04-17T12:38:01", + "TransactionId": 92188188, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 38, + "CustomerInfo": 44377103, + "PaymentType": "Credit Card" + }, + { + "Id": 13520, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2018-02-16T18:07:47", + "TransactionId": 86298446, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 453, + "CustomerInfo": 90081233, + "PaymentType": "Credit Card" + }, + { + "Id": 13521, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-05-11T16:40:31", + "TransactionId": 59295225, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 947, + "CustomerInfo": 6130799, + "PaymentType": "Debit Card" + }, + { + "Id": 13522, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2017-07-26T18:43:55", + "TransactionId": 75637552, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 551, + "CustomerInfo": 87508066, + "PaymentType": "Debit Card" + }, + { + "Id": 13523, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2016-06-08T18:01:09", + "TransactionId": 14022289, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 469, + "CustomerInfo": 98632552, + "PaymentType": "Cash" + }, + { + "Id": 13524, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2018-02-04T19:44:07", + "TransactionId": 81776313, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 875, + "CustomerInfo": 61174561, + "PaymentType": "Credit Card" + }, + { + "Id": 13525, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2019-11-02T18:32:15", + "TransactionId": 12734008, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 689, + "CustomerInfo": 27028495, + "PaymentType": "Credit Card" + }, + { + "Id": 13526, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2017-12-26T16:37:29", + "TransactionId": 90774766, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 148, + "CustomerInfo": 17766676, + "PaymentType": "Credit Card" + }, + { + "Id": 13527, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2016-09-14T08:38:15", + "TransactionId": 37877484, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 618, + "CustomerInfo": 49547795, + "PaymentType": "Credit Card" + }, + { + "Id": 13528, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2017-06-01T12:21:01", + "TransactionId": 38977839, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 68, + "CustomerInfo": 45532072, + "PaymentType": "Debit Card" + }, + { + "Id": 13529, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2018-03-07T12:37:44", + "TransactionId": 92004098, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 187, + "CustomerInfo": 63823058, + "PaymentType": "Cash" + }, + { + "Id": 13530, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2019-03-19T07:34:45", + "TransactionId": 36824787, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 541, + "CustomerInfo": 66842841, + "PaymentType": "Debit Card" + }, + { + "Id": 13531, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-05-28T12:27:13", + "TransactionId": 73971216, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 932, + "CustomerInfo": 5828458, + "PaymentType": "Cash" + }, + { + "Id": 13532, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2018-06-08T09:33:16", + "TransactionId": 60628195, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 985, + "CustomerInfo": 22710538, + "PaymentType": "Debit Card" + }, + { + "Id": 13533, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-11-06T19:09:50", + "TransactionId": 6824616, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 963, + "CustomerInfo": 5937463, + "PaymentType": "Debit Card" + }, + { + "Id": 13534, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-03-06T18:29:57", + "TransactionId": 11097476, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 570, + "CustomerInfo": 15401054, + "PaymentType": "Debit Card" + }, + { + "Id": 13535, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2017-07-05T08:22:08", + "TransactionId": 83281448, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 979, + "CustomerInfo": 66999316, + "PaymentType": "Credit Card" + }, + { + "Id": 13536, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2017-06-20T13:30:26", + "TransactionId": 48859428, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 627, + "CustomerInfo": 1882985, + "PaymentType": "Debit Card" + }, + { + "Id": 13537, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2016-07-15T15:08:56", + "TransactionId": 9653017, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 43, + "CustomerInfo": 58689401, + "PaymentType": "Cash" + }, + { + "Id": 13538, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2017-01-22T17:35:23", + "TransactionId": 19005704, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 756, + "CustomerInfo": 26346196, + "PaymentType": "Debit Card" + }, + { + "Id": 13539, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-08-02T17:39:42", + "TransactionId": 79783815, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 980, + "CustomerInfo": 78350877, + "PaymentType": "Credit Card" + }, + { + "Id": 13540, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2017-10-03T11:23:08", + "TransactionId": 58844263, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 587, + "CustomerInfo": 7524932, + "PaymentType": "Debit Card" + }, + { + "Id": 13541, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2019-12-24T13:26:24", + "TransactionId": 58873778, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 480, + "CustomerInfo": 26350142, + "PaymentType": "Debit Card" + }, + { + "Id": 13542, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-12-01T12:05:46", + "TransactionId": 31053230, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 295, + "CustomerInfo": 84573728, + "PaymentType": "Credit Card" + }, + { + "Id": 13543, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2017-06-06T10:05:57", + "TransactionId": 1180615, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 653, + "CustomerInfo": 76063452, + "PaymentType": "Debit Card" + }, + { + "Id": 13544, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2018-08-30T12:09:13", + "TransactionId": 33864286, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 72984923, + "PaymentType": "Debit Card" + }, + { + "Id": 13545, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2016-07-25T14:05:08", + "TransactionId": 13170881, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 567, + "CustomerInfo": 68853140, + "PaymentType": "Debit Card" + }, + { + "Id": 13546, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-06-14T11:57:07", + "TransactionId": 19125450, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 744, + "CustomerInfo": 93687660, + "PaymentType": "Credit Card" + }, + { + "Id": 13547, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2018-10-12T10:37:38", + "TransactionId": 7490825, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 566, + "CustomerInfo": 83854596, + "PaymentType": "Debit Card" + }, + { + "Id": 13548, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-04-30T14:40:34", + "TransactionId": 2053676, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 361, + "CustomerInfo": 9167640, + "PaymentType": "Cash" + }, + { + "Id": 13549, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2016-03-20T16:07:15", + "TransactionId": 12384151, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 216, + "CustomerInfo": 83717734, + "PaymentType": "Debit Card" + }, + { + "Id": 13550, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2018-11-30T14:09:27", + "TransactionId": 89475921, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 930, + "CustomerInfo": 28653015, + "PaymentType": "Cash" + }, + { + "Id": 13551, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-12-22T11:07:18", + "TransactionId": 350854, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 757, + "CustomerInfo": 99442627, + "PaymentType": "Cash" + }, + { + "Id": 13552, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2018-09-22T10:28:34", + "TransactionId": 11007412, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 670, + "CustomerInfo": 72471333, + "PaymentType": "Cash" + }, + { + "Id": 13553, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2018-11-06T16:45:50", + "TransactionId": 35671162, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 712, + "CustomerInfo": 23278167, + "PaymentType": "Cash" + }, + { + "Id": 13554, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2016-01-29T13:17:46", + "TransactionId": 77912319, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 962, + "CustomerInfo": 8700785, + "PaymentType": "Cash" + }, + { + "Id": 13555, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2019-09-28T19:30:09", + "TransactionId": 58655586, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 678, + "CustomerInfo": 64478615, + "PaymentType": "Cash" + }, + { + "Id": 13556, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2016-05-20T14:44:53", + "TransactionId": 656909, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 463, + "CustomerInfo": 25586537, + "PaymentType": "Cash" + }, + { + "Id": 13557, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-06-21T10:12:43", + "TransactionId": 91590139, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 134, + "CustomerInfo": 86286815, + "PaymentType": "Credit Card" + }, + { + "Id": 13558, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-09-26T13:16:54", + "TransactionId": 17128863, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 53, + "CustomerInfo": 92076986, + "PaymentType": "Cash" + }, + { + "Id": 13559, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-03-14T19:13:18", + "TransactionId": 93767511, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 5, + "CustomerInfo": 73108805, + "PaymentType": "Credit Card" + }, + { + "Id": 13560, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-07-05T10:05:31", + "TransactionId": 12088283, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 632, + "CustomerInfo": 56687369, + "PaymentType": "Debit Card" + }, + { + "Id": 13561, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2016-01-16T14:50:04", + "TransactionId": 40969824, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 455, + "CustomerInfo": 94282115, + "PaymentType": "Credit Card" + }, + { + "Id": 13562, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2019-11-21T18:56:27", + "TransactionId": 99663591, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 195, + "CustomerInfo": 22096279, + "PaymentType": "Cash" + }, + { + "Id": 13563, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-02-20T18:21:01", + "TransactionId": 88235294, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 100, + "CustomerInfo": 464824, + "PaymentType": "Credit Card" + }, + { + "Id": 13564, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2018-04-03T11:54:23", + "TransactionId": 41147400, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 23, + "CustomerInfo": 15089570, + "PaymentType": "Credit Card" + }, + { + "Id": 13565, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-09-29T14:34:31", + "TransactionId": 37270791, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 436, + "CustomerInfo": 59585934, + "PaymentType": "Debit Card" + }, + { + "Id": 13566, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2016-08-07T10:44:15", + "TransactionId": 61837902, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 207, + "CustomerInfo": 8820891, + "PaymentType": "Cash" + }, + { + "Id": 13567, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2016-04-23T19:51:45", + "TransactionId": 41750884, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 882, + "CustomerInfo": 65719587, + "PaymentType": "Debit Card" + }, + { + "Id": 13568, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2016-01-03T19:15:45", + "TransactionId": 81867990, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 495, + "CustomerInfo": 94553070, + "PaymentType": "Credit Card" + }, + { + "Id": 13569, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2018-06-28T07:38:38", + "TransactionId": 29540753, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 801, + "CustomerInfo": 67635323, + "PaymentType": "Debit Card" + }, + { + "Id": 13570, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2019-03-25T10:14:27", + "TransactionId": 35434374, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 641, + "CustomerInfo": 67157602, + "PaymentType": "Credit Card" + }, + { + "Id": 13571, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-07-23T09:36:43", + "TransactionId": 65229433, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 708, + "CustomerInfo": 80041830, + "PaymentType": "Credit Card" + }, + { + "Id": 13572, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2019-05-08T07:54:20", + "TransactionId": 20696989, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 258, + "CustomerInfo": 77258134, + "PaymentType": "Cash" + }, + { + "Id": 13573, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-12-05T07:29:43", + "TransactionId": 11171934, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 388, + "CustomerInfo": 25675702, + "PaymentType": "Debit Card" + }, + { + "Id": 13574, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2016-10-27T14:15:22", + "TransactionId": 52258905, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 687, + "CustomerInfo": 34385022, + "PaymentType": "Credit Card" + }, + { + "Id": 13575, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2018-05-31T16:50:10", + "TransactionId": 61327243, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 207, + "CustomerInfo": 2994642, + "PaymentType": "Credit Card" + }, + { + "Id": 13576, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2018-04-06T16:25:15", + "TransactionId": 73504420, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 291, + "CustomerInfo": 68167915, + "PaymentType": "Credit Card" + }, + { + "Id": 13577, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-03-29T17:33:04", + "TransactionId": 79233515, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 806, + "CustomerInfo": 70785274, + "PaymentType": "Debit Card" + }, + { + "Id": 13578, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2016-08-24T09:18:52", + "TransactionId": 79425400, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 525, + "CustomerInfo": 62554641, + "PaymentType": "Cash" + }, + { + "Id": 13579, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2016-09-13T14:54:32", + "TransactionId": 99572748, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 949, + "CustomerInfo": 50157185, + "PaymentType": "Cash" + }, + { + "Id": 13580, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-02-06T17:11:54", + "TransactionId": 36066648, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 192, + "CustomerInfo": 25823106, + "PaymentType": "Cash" + }, + { + "Id": 13581, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2018-05-03T08:05:08", + "TransactionId": 12114943, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 56161997, + "PaymentType": "Cash" + }, + { + "Id": 13582, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2018-07-07T10:43:41", + "TransactionId": 47669550, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 791, + "CustomerInfo": 740756, + "PaymentType": "Credit Card" + }, + { + "Id": 13583, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2018-04-27T19:29:51", + "TransactionId": 91823331, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 405, + "CustomerInfo": 71812559, + "PaymentType": "Cash" + }, + { + "Id": 13584, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2018-08-08T07:11:43", + "TransactionId": 90471508, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 77984518, + "PaymentType": "Credit Card" + }, + { + "Id": 13585, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-04-10T16:52:54", + "TransactionId": 31980207, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 875, + "CustomerInfo": 33940582, + "PaymentType": "Debit Card" + }, + { + "Id": 13586, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2019-02-05T17:35:48", + "TransactionId": 20697438, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 187, + "CustomerInfo": 85877486, + "PaymentType": "Debit Card" + }, + { + "Id": 13587, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-07-16T11:13:29", + "TransactionId": 70881746, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 964, + "CustomerInfo": 94464830, + "PaymentType": "Credit Card" + }, + { + "Id": 13588, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-10-12T12:08:30", + "TransactionId": 53414974, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 756, + "CustomerInfo": 47626842, + "PaymentType": "Credit Card" + }, + { + "Id": 13589, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-08-13T14:46:11", + "TransactionId": 27603709, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 588, + "CustomerInfo": 31033367, + "PaymentType": "Credit Card" + }, + { + "Id": 13590, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2019-04-06T12:02:18", + "TransactionId": 56841491, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 360, + "CustomerInfo": 66008798, + "PaymentType": "Debit Card" + }, + { + "Id": 13591, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2018-01-04T19:35:37", + "TransactionId": 73486304, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 23488863, + "PaymentType": "Debit Card" + }, + { + "Id": 13592, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2017-01-10T17:12:46", + "TransactionId": 7642440, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 892, + "CustomerInfo": 5929997, + "PaymentType": "Debit Card" + }, + { + "Id": 13593, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2018-07-07T10:13:35", + "TransactionId": 87013659, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 514, + "CustomerInfo": 3585329, + "PaymentType": "Debit Card" + }, + { + "Id": 13594, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2018-07-18T12:37:44", + "TransactionId": 71612905, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 228, + "CustomerInfo": 48179992, + "PaymentType": "Cash" + }, + { + "Id": 13595, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-06-25T18:26:38", + "TransactionId": 95635560, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 823, + "CustomerInfo": 79234817, + "PaymentType": "Cash" + }, + { + "Id": 13596, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-07-09T08:52:05", + "TransactionId": 39994858, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 644, + "CustomerInfo": 51245958, + "PaymentType": "Cash" + }, + { + "Id": 13597, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2018-04-09T18:38:36", + "TransactionId": 23196451, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 209, + "CustomerInfo": 78883980, + "PaymentType": "Credit Card" + }, + { + "Id": 13598, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2017-05-29T17:22:34", + "TransactionId": 1900406, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 583, + "CustomerInfo": 25879134, + "PaymentType": "Credit Card" + }, + { + "Id": 13599, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-04-23T17:40:16", + "TransactionId": 63472217, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 448, + "CustomerInfo": 11622204, + "PaymentType": "Debit Card" + }, + { + "Id": 13600, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-08-28T11:01:58", + "TransactionId": 19424898, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 925, + "CustomerInfo": 21224090, + "PaymentType": "Credit Card" + }, + { + "Id": 13601, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2018-09-10T09:43:38", + "TransactionId": 43478715, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 875, + "CustomerInfo": 599693, + "PaymentType": "Cash" + }, + { + "Id": 13602, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2018-08-31T16:38:47", + "TransactionId": 29100547, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 63, + "CustomerInfo": 56550081, + "PaymentType": "Cash" + }, + { + "Id": 13603, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2016-07-26T14:00:49", + "TransactionId": 33487309, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 85, + "CustomerInfo": 86837183, + "PaymentType": "Debit Card" + }, + { + "Id": 13604, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2017-08-14T09:22:36", + "TransactionId": 63076403, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 265, + "CustomerInfo": 60045509, + "PaymentType": "Credit Card" + }, + { + "Id": 13605, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-06-06T16:04:57", + "TransactionId": 55269232, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 683, + "CustomerInfo": 22554024, + "PaymentType": "Credit Card" + }, + { + "Id": 13606, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-04-19T19:44:41", + "TransactionId": 94757540, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 572, + "CustomerInfo": 94297262, + "PaymentType": "Cash" + }, + { + "Id": 13607, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2019-09-21T07:33:10", + "TransactionId": 39243856, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 23, + "CustomerInfo": 58732067, + "PaymentType": "Credit Card" + }, + { + "Id": 13608, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2016-07-26T08:17:14", + "TransactionId": 53014564, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 709, + "CustomerInfo": 24983138, + "PaymentType": "Cash" + }, + { + "Id": 13609, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2018-06-20T09:23:02", + "TransactionId": 26531940, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 404, + "CustomerInfo": 47480050, + "PaymentType": "Credit Card" + }, + { + "Id": 13610, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-06-02T10:20:21", + "TransactionId": 89533135, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 999, + "CustomerInfo": 27756666, + "PaymentType": "Debit Card" + }, + { + "Id": 13611, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2019-11-06T11:21:42", + "TransactionId": 56815419, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 709, + "CustomerInfo": 71992917, + "PaymentType": "Debit Card" + }, + { + "Id": 13612, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2018-06-18T15:53:34", + "TransactionId": 61739279, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 37258356, + "PaymentType": "Cash" + }, + { + "Id": 13613, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2017-06-10T11:47:37", + "TransactionId": 62216713, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 480, + "CustomerInfo": 8598371, + "PaymentType": "Credit Card" + }, + { + "Id": 13614, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-05-28T19:47:08", + "TransactionId": 6701149, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 780, + "CustomerInfo": 94467993, + "PaymentType": "Debit Card" + }, + { + "Id": 13615, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-07-21T08:37:24", + "TransactionId": 84254974, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 987, + "CustomerInfo": 38895868, + "PaymentType": "Debit Card" + }, + { + "Id": 13616, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-10-09T09:48:58", + "TransactionId": 40168292, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 960, + "CustomerInfo": 83611439, + "PaymentType": "Debit Card" + }, + { + "Id": 13617, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-04-18T13:18:29", + "TransactionId": 28450641, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 511, + "CustomerInfo": 71742154, + "PaymentType": "Cash" + }, + { + "Id": 13618, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-04-30T07:59:57", + "TransactionId": 92636227, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 270, + "CustomerInfo": 70434786, + "PaymentType": "Cash" + }, + { + "Id": 13619, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2016-12-26T12:17:51", + "TransactionId": 29931615, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 458, + "CustomerInfo": 29000956, + "PaymentType": "Debit Card" + }, + { + "Id": 13620, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2019-03-05T17:45:10", + "TransactionId": 8660330, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 970, + "CustomerInfo": 5371320, + "PaymentType": "Cash" + }, + { + "Id": 13621, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2018-04-11T14:39:33", + "TransactionId": 35247026, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 88, + "CustomerInfo": 54362828, + "PaymentType": "Cash" + }, + { + "Id": 13622, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2018-06-11T15:38:18", + "TransactionId": 81085766, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 987, + "CustomerInfo": 69220460, + "PaymentType": "Debit Card" + }, + { + "Id": 13623, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2018-09-22T15:01:44", + "TransactionId": 60540137, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 558, + "CustomerInfo": 30629851, + "PaymentType": "Debit Card" + }, + { + "Id": 13624, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-11-29T15:30:40", + "TransactionId": 22881491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 129, + "CustomerInfo": 86644179, + "PaymentType": "Credit Card" + }, + { + "Id": 13625, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-01-26T11:29:28", + "TransactionId": 17876383, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 492, + "CustomerInfo": 64104516, + "PaymentType": "Debit Card" + }, + { + "Id": 13626, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-08-12T18:07:03", + "TransactionId": 9138644, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 655, + "CustomerInfo": 30420719, + "PaymentType": "Cash" + }, + { + "Id": 13627, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-01-15T13:09:24", + "TransactionId": 42543147, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 625, + "CustomerInfo": 2798265, + "PaymentType": "Cash" + }, + { + "Id": 13628, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2019-12-11T12:04:19", + "TransactionId": 78850251, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 438, + "CustomerInfo": 93506684, + "PaymentType": "Cash" + }, + { + "Id": 13629, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2016-09-24T16:07:58", + "TransactionId": 33970317, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 799, + "CustomerInfo": 58199596, + "PaymentType": "Cash" + }, + { + "Id": 13630, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2018-09-08T13:17:11", + "TransactionId": 9033905, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 75, + "CustomerInfo": 38556397, + "PaymentType": "Credit Card" + }, + { + "Id": 13631, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-04-26T17:52:05", + "TransactionId": 64628317, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 93, + "CustomerInfo": 7782830, + "PaymentType": "Debit Card" + }, + { + "Id": 13632, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-10-30T08:34:13", + "TransactionId": 77563373, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 44, + "CustomerInfo": 3361966, + "PaymentType": "Debit Card" + }, + { + "Id": 13633, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-10-29T14:51:48", + "TransactionId": 70717805, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 857, + "CustomerInfo": 83206039, + "PaymentType": "Credit Card" + }, + { + "Id": 13634, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2019-09-23T18:53:25", + "TransactionId": 34964407, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 575, + "CustomerInfo": 79311063, + "PaymentType": "Debit Card" + }, + { + "Id": 13635, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-09-07T16:55:29", + "TransactionId": 16553807, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 212, + "CustomerInfo": 71011291, + "PaymentType": "Cash" + }, + { + "Id": 13636, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2019-02-02T12:56:27", + "TransactionId": 19729364, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 249, + "CustomerInfo": 50799769, + "PaymentType": "Cash" + }, + { + "Id": 13637, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2016-06-19T07:50:36", + "TransactionId": 48156419, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 322, + "CustomerInfo": 49869598, + "PaymentType": "Cash" + }, + { + "Id": 13638, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2018-04-15T18:45:22", + "TransactionId": 1291609, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 439, + "CustomerInfo": 71303404, + "PaymentType": "Credit Card" + }, + { + "Id": 13639, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-05-20T18:04:02", + "TransactionId": 10310020, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 142, + "CustomerInfo": 76668905, + "PaymentType": "Debit Card" + }, + { + "Id": 13640, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2016-10-01T12:12:06", + "TransactionId": 44648165, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 17, + "CustomerInfo": 61197395, + "PaymentType": "Credit Card" + }, + { + "Id": 13641, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-04-02T16:49:00", + "TransactionId": 60422566, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 825, + "CustomerInfo": 84481558, + "PaymentType": "Cash" + }, + { + "Id": 13642, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2018-08-14T08:40:16", + "TransactionId": 33196166, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 107, + "CustomerInfo": 63666717, + "PaymentType": "Cash" + }, + { + "Id": 13643, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2017-01-07T16:39:04", + "TransactionId": 95824574, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 278, + "CustomerInfo": 20489256, + "PaymentType": "Cash" + }, + { + "Id": 13644, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-12-25T09:59:37", + "TransactionId": 33139672, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 172, + "CustomerInfo": 88929941, + "PaymentType": "Credit Card" + }, + { + "Id": 13645, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2016-08-21T10:58:57", + "TransactionId": 9799057, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 404, + "CustomerInfo": 33181140, + "PaymentType": "Debit Card" + }, + { + "Id": 13646, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2018-02-11T15:45:04", + "TransactionId": 19699746, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 794, + "CustomerInfo": 48253039, + "PaymentType": "Credit Card" + }, + { + "Id": 13647, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2017-09-05T07:39:30", + "TransactionId": 49002214, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 811, + "CustomerInfo": 75723539, + "PaymentType": "Cash" + }, + { + "Id": 13648, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2019-02-10T14:43:35", + "TransactionId": 82792755, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 252, + "CustomerInfo": 2417917, + "PaymentType": "Debit Card" + }, + { + "Id": 13649, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-09-01T13:46:51", + "TransactionId": 83570396, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 906, + "CustomerInfo": 6118722, + "PaymentType": "Credit Card" + }, + { + "Id": 13650, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-11-19T09:47:23", + "TransactionId": 45303570, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 295, + "CustomerInfo": 33193507, + "PaymentType": "Credit Card" + }, + { + "Id": 13651, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-03-02T09:25:03", + "TransactionId": 54221954, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 886, + "CustomerInfo": 38633701, + "PaymentType": "Credit Card" + }, + { + "Id": 13652, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2017-05-12T18:35:34", + "TransactionId": 74401125, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 626, + "CustomerInfo": 29750606, + "PaymentType": "Credit Card" + }, + { + "Id": 13653, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-07-10T15:39:45", + "TransactionId": 46888440, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 809, + "CustomerInfo": 36051029, + "PaymentType": "Credit Card" + }, + { + "Id": 13654, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2017-07-13T15:22:11", + "TransactionId": 82168389, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 141, + "CustomerInfo": 16605223, + "PaymentType": "Cash" + }, + { + "Id": 13655, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2019-01-23T19:56:38", + "TransactionId": 88126987, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 65, + "CustomerInfo": 20441775, + "PaymentType": "Cash" + }, + { + "Id": 13656, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2019-06-07T14:47:28", + "TransactionId": 63580052, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 985, + "CustomerInfo": 91720998, + "PaymentType": "Cash" + }, + { + "Id": 13657, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-01-24T10:42:23", + "TransactionId": 34233771, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 17, + "CustomerInfo": 37394631, + "PaymentType": "Credit Card" + }, + { + "Id": 13658, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-08-29T07:53:37", + "TransactionId": 88152307, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 55, + "CustomerInfo": 38299165, + "PaymentType": "Cash" + }, + { + "Id": 13659, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2019-11-08T14:10:19", + "TransactionId": 81989471, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 492, + "CustomerInfo": 63008271, + "PaymentType": "Credit Card" + }, + { + "Id": 13660, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-06-27T13:38:30", + "TransactionId": 4084968, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 652, + "CustomerInfo": 22589408, + "PaymentType": "Cash" + }, + { + "Id": 13661, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2017-11-18T16:49:09", + "TransactionId": 52617721, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 480, + "CustomerInfo": 73422186, + "PaymentType": "Credit Card" + }, + { + "Id": 13662, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-06-09T19:14:53", + "TransactionId": 31069475, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 619, + "CustomerInfo": 97780137, + "PaymentType": "Credit Card" + }, + { + "Id": 13663, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-03-09T14:41:51", + "TransactionId": 14494346, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 849, + "CustomerInfo": 34152019, + "PaymentType": "Debit Card" + }, + { + "Id": 13664, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-03-03T12:07:12", + "TransactionId": 34997203, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 890, + "CustomerInfo": 74562969, + "PaymentType": "Credit Card" + }, + { + "Id": 13665, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-04-25T18:34:51", + "TransactionId": 13743004, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 104, + "CustomerInfo": 95619926, + "PaymentType": "Credit Card" + }, + { + "Id": 13666, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2018-12-04T17:31:38", + "TransactionId": 6590818, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 215, + "CustomerInfo": 34027094, + "PaymentType": "Credit Card" + }, + { + "Id": 13667, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-02-13T08:43:18", + "TransactionId": 92953184, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 414, + "CustomerInfo": 29675578, + "PaymentType": "Debit Card" + }, + { + "Id": 13668, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-11-18T13:01:55", + "TransactionId": 37200323, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 457, + "CustomerInfo": 82639997, + "PaymentType": "Debit Card" + }, + { + "Id": 13669, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2016-06-04T14:12:20", + "TransactionId": 91517292, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 252, + "CustomerInfo": 3700660, + "PaymentType": "Credit Card" + }, + { + "Id": 13670, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2019-09-18T15:04:02", + "TransactionId": 11028930, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 484, + "CustomerInfo": 60222204, + "PaymentType": "Debit Card" + }, + { + "Id": 13671, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-05-07T15:34:42", + "TransactionId": 5498594, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 268, + "CustomerInfo": 21972457, + "PaymentType": "Cash" + }, + { + "Id": 13672, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-10-19T16:44:24", + "TransactionId": 33654816, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 799, + "CustomerInfo": 40394586, + "PaymentType": "Debit Card" + }, + { + "Id": 13673, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2016-12-19T19:23:05", + "TransactionId": 59491109, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 600, + "CustomerInfo": 7104200, + "PaymentType": "Cash" + }, + { + "Id": 13674, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2017-09-11T19:11:51", + "TransactionId": 35887926, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 107, + "CustomerInfo": 9840963, + "PaymentType": "Credit Card" + }, + { + "Id": 13675, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2018-08-03T11:02:33", + "TransactionId": 50021489, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 955, + "CustomerInfo": 2134116, + "PaymentType": "Cash" + }, + { + "Id": 13676, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-08-14T14:41:08", + "TransactionId": 18986288, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 875, + "CustomerInfo": 67533206, + "PaymentType": "Credit Card" + }, + { + "Id": 13677, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-08-07T09:41:20", + "TransactionId": 14847710, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 386, + "CustomerInfo": 51653385, + "PaymentType": "Debit Card" + }, + { + "Id": 13678, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-07-27T12:46:39", + "TransactionId": 23009626, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 421, + "CustomerInfo": 54652408, + "PaymentType": "Credit Card" + }, + { + "Id": 13679, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-10-15T08:54:06", + "TransactionId": 66232861, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 590, + "CustomerInfo": 23443530, + "PaymentType": "Cash" + }, + { + "Id": 13680, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2019-09-27T13:25:49", + "TransactionId": 84194308, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 130, + "CustomerInfo": 94818359, + "PaymentType": "Cash" + }, + { + "Id": 13681, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2017-09-12T16:27:07", + "TransactionId": 22072817, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 250, + "CustomerInfo": 96882895, + "PaymentType": "Debit Card" + }, + { + "Id": 13682, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-04-20T09:54:52", + "TransactionId": 96416934, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 91, + "CustomerInfo": 21748148, + "PaymentType": "Cash" + }, + { + "Id": 13683, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2019-09-02T14:16:05", + "TransactionId": 32381253, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 343, + "CustomerInfo": 55944703, + "PaymentType": "Credit Card" + }, + { + "Id": 13684, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2018-09-04T15:53:43", + "TransactionId": 1806746, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 171, + "CustomerInfo": 69495125, + "PaymentType": "Credit Card" + }, + { + "Id": 13685, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2019-12-24T13:24:14", + "TransactionId": 64333186, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 492, + "CustomerInfo": 8575076, + "PaymentType": "Debit Card" + }, + { + "Id": 13686, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2018-05-08T17:36:14", + "TransactionId": 13667091, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 338, + "CustomerInfo": 11058098, + "PaymentType": "Credit Card" + }, + { + "Id": 13687, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-09-23T19:04:48", + "TransactionId": 65425919, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 707, + "CustomerInfo": 72715299, + "PaymentType": "Credit Card" + }, + { + "Id": 13688, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-12-23T08:50:30", + "TransactionId": 72893749, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 286, + "CustomerInfo": 97851970, + "PaymentType": "Cash" + }, + { + "Id": 13689, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2019-06-01T09:40:28", + "TransactionId": 10069225, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 589, + "CustomerInfo": 47745589, + "PaymentType": "Debit Card" + }, + { + "Id": 13690, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-05-29T14:57:24", + "TransactionId": 33260623, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 200, + "CustomerInfo": 57997662, + "PaymentType": "Cash" + }, + { + "Id": 13691, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-08-28T18:18:17", + "TransactionId": 85726437, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 188, + "CustomerInfo": 47501442, + "PaymentType": "Cash" + }, + { + "Id": 13692, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-01-13T13:09:50", + "TransactionId": 30966408, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 496, + "CustomerInfo": 65039164, + "PaymentType": "Credit Card" + }, + { + "Id": 13693, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2016-05-17T09:21:10", + "TransactionId": 11436491, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 740, + "CustomerInfo": 60455322, + "PaymentType": "Cash" + }, + { + "Id": 13694, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-03-30T15:17:08", + "TransactionId": 73868395, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 275, + "CustomerInfo": 26023834, + "PaymentType": "Credit Card" + }, + { + "Id": 13695, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-03-14T11:54:14", + "TransactionId": 15992943, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 883, + "CustomerInfo": 38138355, + "PaymentType": "Debit Card" + }, + { + "Id": 13696, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2017-11-11T10:58:13", + "TransactionId": 57524204, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 413, + "CustomerInfo": 85220207, + "PaymentType": "Debit Card" + }, + { + "Id": 13697, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-04-03T15:47:14", + "TransactionId": 90564949, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 566, + "CustomerInfo": 34969798, + "PaymentType": "Cash" + }, + { + "Id": 13698, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2016-03-01T17:07:18", + "TransactionId": 38852483, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 894, + "CustomerInfo": 36317670, + "PaymentType": "Cash" + }, + { + "Id": 13699, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2019-07-14T08:35:23", + "TransactionId": 79309061, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 288, + "CustomerInfo": 70842745, + "PaymentType": "Cash" + }, + { + "Id": 13700, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-01-16T12:36:35", + "TransactionId": 67964551, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 767, + "CustomerInfo": 70623759, + "PaymentType": "Credit Card" + }, + { + "Id": 13701, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2018-04-26T07:49:44", + "TransactionId": 51428013, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 195, + "CustomerInfo": 3291045, + "PaymentType": "Cash" + }, + { + "Id": 13702, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-02-20T11:02:24", + "TransactionId": 42608092, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 391, + "CustomerInfo": 90234116, + "PaymentType": "Debit Card" + }, + { + "Id": 13703, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2017-03-30T12:45:30", + "TransactionId": 74874491, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 331, + "CustomerInfo": 93641687, + "PaymentType": "Debit Card" + }, + { + "Id": 13704, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2016-09-21T08:28:19", + "TransactionId": 48252957, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 354, + "CustomerInfo": 98612165, + "PaymentType": "Credit Card" + }, + { + "Id": 13705, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-03-31T10:32:53", + "TransactionId": 17902472, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 45, + "CustomerInfo": 51978941, + "PaymentType": "Credit Card" + }, + { + "Id": 13706, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-03-06T19:16:11", + "TransactionId": 74630554, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 406, + "CustomerInfo": 98908381, + "PaymentType": "Debit Card" + }, + { + "Id": 13707, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-05-27T19:19:12", + "TransactionId": 66811871, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 496, + "CustomerInfo": 46376693, + "PaymentType": "Credit Card" + }, + { + "Id": 13708, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-06-22T18:07:29", + "TransactionId": 52099627, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 194, + "CustomerInfo": 91225290, + "PaymentType": "Credit Card" + }, + { + "Id": 13709, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-01-24T12:11:48", + "TransactionId": 43727090, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 370, + "CustomerInfo": 35739230, + "PaymentType": "Cash" + }, + { + "Id": 13710, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2018-07-09T15:09:39", + "TransactionId": 63358835, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 565, + "CustomerInfo": 35665171, + "PaymentType": "Cash" + }, + { + "Id": 13711, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2019-10-31T13:26:33", + "TransactionId": 49680190, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 244, + "CustomerInfo": 95591958, + "PaymentType": "Cash" + }, + { + "Id": 13712, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2018-09-04T17:22:25", + "TransactionId": 67512093, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 529, + "CustomerInfo": 65499730, + "PaymentType": "Credit Card" + }, + { + "Id": 13713, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-04-28T19:20:04", + "TransactionId": 60925150, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 257, + "CustomerInfo": 56898720, + "PaymentType": "Cash" + }, + { + "Id": 13714, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-01-11T12:22:28", + "TransactionId": 6539438, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 418, + "CustomerInfo": 29656760, + "PaymentType": "Debit Card" + }, + { + "Id": 13715, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2017-10-06T09:02:18", + "TransactionId": 86297975, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 51, + "CustomerInfo": 38091068, + "PaymentType": "Debit Card" + }, + { + "Id": 13716, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2016-07-24T17:33:39", + "TransactionId": 55408009, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 687, + "CustomerInfo": 81965906, + "PaymentType": "Cash" + }, + { + "Id": 13717, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2018-06-28T19:32:44", + "TransactionId": 23237030, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 88, + "CustomerInfo": 22320147, + "PaymentType": "Credit Card" + }, + { + "Id": 13718, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-01-31T13:57:22", + "TransactionId": 90406862, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 285, + "CustomerInfo": 25831685, + "PaymentType": "Cash" + }, + { + "Id": 13719, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2019-11-09T17:52:22", + "TransactionId": 39253097, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 85831044, + "PaymentType": "Credit Card" + }, + { + "Id": 13720, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2016-08-22T18:47:14", + "TransactionId": 18864813, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 527, + "CustomerInfo": 38491068, + "PaymentType": "Debit Card" + }, + { + "Id": 13721, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-03-04T07:42:32", + "TransactionId": 39668086, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 539, + "CustomerInfo": 72051120, + "PaymentType": "Debit Card" + }, + { + "Id": 13722, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2016-10-27T10:49:44", + "TransactionId": 19922137, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 57, + "CustomerInfo": 91017688, + "PaymentType": "Debit Card" + }, + { + "Id": 13723, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2019-09-19T13:59:31", + "TransactionId": 32866489, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 2, + "CustomerInfo": 40017657, + "PaymentType": "Debit Card" + }, + { + "Id": 13724, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-12-12T10:52:11", + "TransactionId": 22393241, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 85, + "CustomerInfo": 40756015, + "PaymentType": "Cash" + }, + { + "Id": 13725, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-06-15T15:04:45", + "TransactionId": 81400962, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 574, + "CustomerInfo": 86890869, + "PaymentType": "Credit Card" + }, + { + "Id": 13726, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-12-11T11:17:57", + "TransactionId": 82937626, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 647, + "CustomerInfo": 29852819, + "PaymentType": "Debit Card" + }, + { + "Id": 13727, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2018-05-22T11:10:28", + "TransactionId": 85948681, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 643, + "CustomerInfo": 98737126, + "PaymentType": "Debit Card" + }, + { + "Id": 13728, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-01-28T12:51:16", + "TransactionId": 46258417, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 738, + "CustomerInfo": 95942227, + "PaymentType": "Debit Card" + }, + { + "Id": 13729, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2019-11-05T13:22:31", + "TransactionId": 96174943, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 261, + "CustomerInfo": 77968594, + "PaymentType": "Cash" + }, + { + "Id": 13730, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2016-01-26T18:09:22", + "TransactionId": 58429095, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 239, + "CustomerInfo": 40006903, + "PaymentType": "Debit Card" + }, + { + "Id": 13731, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2018-04-15T14:12:55", + "TransactionId": 85242297, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 669, + "CustomerInfo": 11690553, + "PaymentType": "Credit Card" + }, + { + "Id": 13732, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2017-03-30T16:59:14", + "TransactionId": 82872114, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 803, + "CustomerInfo": 17836011, + "PaymentType": "Cash" + }, + { + "Id": 13733, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2019-07-19T08:11:37", + "TransactionId": 48185745, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 532, + "CustomerInfo": 6863093, + "PaymentType": "Credit Card" + }, + { + "Id": 13734, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2017-11-13T19:25:24", + "TransactionId": 94402024, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 786, + "CustomerInfo": 35189102, + "PaymentType": "Debit Card" + }, + { + "Id": 13735, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-06-20T08:07:35", + "TransactionId": 77522919, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 99, + "CustomerInfo": 73588213, + "PaymentType": "Credit Card" + }, + { + "Id": 13736, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-12-26T17:36:14", + "TransactionId": 73959184, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 467, + "CustomerInfo": 83003349, + "PaymentType": "Credit Card" + }, + { + "Id": 13737, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2017-10-18T13:03:48", + "TransactionId": 44531465, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 967, + "CustomerInfo": 32113772, + "PaymentType": "Debit Card" + }, + { + "Id": 13738, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-03-27T19:10:34", + "TransactionId": 80618386, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 97, + "CustomerInfo": 52526381, + "PaymentType": "Credit Card" + }, + { + "Id": 13739, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-12-25T10:01:55", + "TransactionId": 97347669, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 671, + "CustomerInfo": 83866119, + "PaymentType": "Debit Card" + }, + { + "Id": 13740, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-03-04T07:44:59", + "TransactionId": 38127373, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 414, + "CustomerInfo": 43119035, + "PaymentType": "Credit Card" + }, + { + "Id": 13741, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2017-10-05T10:39:48", + "TransactionId": 96139762, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 636, + "CustomerInfo": 93469201, + "PaymentType": "Cash" + }, + { + "Id": 13742, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-12-23T16:29:25", + "TransactionId": 5102356, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 252, + "CustomerInfo": 12875199, + "PaymentType": "Credit Card" + }, + { + "Id": 13743, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2017-06-03T18:18:35", + "TransactionId": 23546601, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 597, + "CustomerInfo": 52303700, + "PaymentType": "Debit Card" + }, + { + "Id": 13744, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-10-01T08:06:43", + "TransactionId": 61477863, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 380, + "CustomerInfo": 83984295, + "PaymentType": "Debit Card" + }, + { + "Id": 13745, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-09-23T12:14:15", + "TransactionId": 17573839, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 822, + "CustomerInfo": 60413486, + "PaymentType": "Credit Card" + }, + { + "Id": 13746, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2017-09-08T11:03:59", + "TransactionId": 2604554, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 468, + "CustomerInfo": 88170842, + "PaymentType": "Credit Card" + }, + { + "Id": 13747, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-02-13T16:31:52", + "TransactionId": 77874780, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 557, + "CustomerInfo": 96029619, + "PaymentType": "Credit Card" + }, + { + "Id": 13748, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-03-17T10:08:15", + "TransactionId": 8503429, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 169, + "CustomerInfo": 60422783, + "PaymentType": "Credit Card" + }, + { + "Id": 13749, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2018-05-28T14:58:08", + "TransactionId": 55781629, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 364, + "CustomerInfo": 88542794, + "PaymentType": "Cash" + }, + { + "Id": 13750, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2017-06-25T15:02:27", + "TransactionId": 47607867, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 20, + "CustomerInfo": 35586354, + "PaymentType": "Credit Card" + }, + { + "Id": 13751, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2016-08-15T14:48:55", + "TransactionId": 27267550, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 621, + "CustomerInfo": 93743577, + "PaymentType": "Cash" + }, + { + "Id": 13752, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2019-10-07T08:57:07", + "TransactionId": 12049483, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 756, + "CustomerInfo": 2370479, + "PaymentType": "Debit Card" + }, + { + "Id": 13753, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-05-15T13:15:19", + "TransactionId": 60962705, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 608, + "CustomerInfo": 48156980, + "PaymentType": "Cash" + }, + { + "Id": 13754, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-08-08T17:11:02", + "TransactionId": 7037650, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 570, + "CustomerInfo": 87636791, + "PaymentType": "Credit Card" + }, + { + "Id": 13755, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2017-08-12T16:14:18", + "TransactionId": 33452335, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 559, + "CustomerInfo": 40534150, + "PaymentType": "Debit Card" + }, + { + "Id": 13756, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2018-04-12T18:05:28", + "TransactionId": 72275623, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 419, + "CustomerInfo": 75870214, + "PaymentType": "Cash" + }, + { + "Id": 13757, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-11-06T18:14:41", + "TransactionId": 87823354, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 408, + "CustomerInfo": 71081440, + "PaymentType": "Debit Card" + }, + { + "Id": 13758, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2016-03-03T08:27:10", + "TransactionId": 22740010, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 406, + "CustomerInfo": 74700290, + "PaymentType": "Cash" + }, + { + "Id": 13759, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-02-07T11:39:07", + "TransactionId": 16435627, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 965, + "CustomerInfo": 63843397, + "PaymentType": "Cash" + }, + { + "Id": 13760, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-07-04T16:39:48", + "TransactionId": 16937801, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 511, + "CustomerInfo": 84116182, + "PaymentType": "Cash" + }, + { + "Id": 13761, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2019-03-13T18:57:36", + "TransactionId": 74812967, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 768, + "CustomerInfo": 13803941, + "PaymentType": "Debit Card" + }, + { + "Id": 13762, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-06-13T12:58:54", + "TransactionId": 265256, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 53, + "CustomerInfo": 76029846, + "PaymentType": "Debit Card" + }, + { + "Id": 13763, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-09-16T10:43:15", + "TransactionId": 19154870, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 865, + "CustomerInfo": 42041002, + "PaymentType": "Credit Card" + }, + { + "Id": 13764, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2016-05-03T07:45:59", + "TransactionId": 69848277, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 852, + "CustomerInfo": 97664169, + "PaymentType": "Cash" + }, + { + "Id": 13765, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2019-10-14T15:59:02", + "TransactionId": 30895619, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 789, + "CustomerInfo": 27592721, + "PaymentType": "Cash" + }, + { + "Id": 13766, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-10-07T15:42:29", + "TransactionId": 48156938, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 760, + "CustomerInfo": 21338486, + "PaymentType": "Cash" + }, + { + "Id": 13767, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-10-22T07:43:49", + "TransactionId": 42931729, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 758, + "CustomerInfo": 84002143, + "PaymentType": "Debit Card" + }, + { + "Id": 13768, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2018-11-25T11:16:31", + "TransactionId": 7539802, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 985, + "CustomerInfo": 1311649, + "PaymentType": "Cash" + }, + { + "Id": 13769, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2016-10-01T19:45:07", + "TransactionId": 77137786, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 194, + "CustomerInfo": 59704334, + "PaymentType": "Debit Card" + }, + { + "Id": 13770, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2017-11-04T08:57:16", + "TransactionId": 559153, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 554, + "CustomerInfo": 11554253, + "PaymentType": "Debit Card" + }, + { + "Id": 13771, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2017-05-21T13:20:47", + "TransactionId": 11409805, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 404, + "CustomerInfo": 29493581, + "PaymentType": "Credit Card" + }, + { + "Id": 13772, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2016-11-15T08:32:47", + "TransactionId": 63789219, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 75, + "CustomerInfo": 10167326, + "PaymentType": "Credit Card" + }, + { + "Id": 13773, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-05-16T09:40:19", + "TransactionId": 62219065, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 931, + "CustomerInfo": 1228380, + "PaymentType": "Debit Card" + }, + { + "Id": 13774, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-03-05T19:02:04", + "TransactionId": 77377890, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 14, + "CustomerInfo": 93583165, + "PaymentType": "Cash" + }, + { + "Id": 13775, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-12-04T12:30:23", + "TransactionId": 46176097, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 956, + "CustomerInfo": 98760626, + "PaymentType": "Debit Card" + }, + { + "Id": 13776, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-04-08T19:24:40", + "TransactionId": 7510298, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 206, + "CustomerInfo": 26696327, + "PaymentType": "Debit Card" + }, + { + "Id": 13777, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2019-07-21T18:15:50", + "TransactionId": 5414206, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 810, + "CustomerInfo": 48322214, + "PaymentType": "Credit Card" + }, + { + "Id": 13778, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-06-16T17:35:05", + "TransactionId": 75916091, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 209, + "CustomerInfo": 72981797, + "PaymentType": "Cash" + }, + { + "Id": 13779, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-12-14T12:23:11", + "TransactionId": 26446307, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 927, + "CustomerInfo": 10822344, + "PaymentType": "Credit Card" + }, + { + "Id": 13780, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2019-05-16T10:33:19", + "TransactionId": 20797052, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 83262782, + "PaymentType": "Credit Card" + }, + { + "Id": 13781, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2018-08-02T07:34:54", + "TransactionId": 26352706, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 197, + "CustomerInfo": 47988475, + "PaymentType": "Cash" + }, + { + "Id": 13782, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-04-20T09:38:53", + "TransactionId": 4641341, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 187, + "CustomerInfo": 89891731, + "PaymentType": "Credit Card" + }, + { + "Id": 13783, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-03-25T15:00:17", + "TransactionId": 82186206, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 606, + "CustomerInfo": 68863624, + "PaymentType": "Cash" + }, + { + "Id": 13784, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-12-22T18:17:25", + "TransactionId": 64720058, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 751, + "CustomerInfo": 25088076, + "PaymentType": "Cash" + }, + { + "Id": 13785, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2018-11-16T14:03:50", + "TransactionId": 89382919, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 585, + "CustomerInfo": 62078706, + "PaymentType": "Debit Card" + }, + { + "Id": 13786, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-03-30T11:09:36", + "TransactionId": 81675743, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 528, + "CustomerInfo": 2875285, + "PaymentType": "Cash" + }, + { + "Id": 13787, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2017-03-06T09:51:24", + "TransactionId": 75189837, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 362, + "CustomerInfo": 71235518, + "PaymentType": "Debit Card" + }, + { + "Id": 13788, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-08-09T12:00:52", + "TransactionId": 66663803, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 564, + "CustomerInfo": 38830560, + "PaymentType": "Credit Card" + }, + { + "Id": 13789, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2016-10-16T09:38:18", + "TransactionId": 70905256, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 108, + "CustomerInfo": 64247975, + "PaymentType": "Credit Card" + }, + { + "Id": 13790, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2017-10-07T16:14:01", + "TransactionId": 34470030, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 775, + "CustomerInfo": 92981543, + "PaymentType": "Cash" + }, + { + "Id": 13791, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-01-31T14:37:41", + "TransactionId": 74350737, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 397, + "CustomerInfo": 52695281, + "PaymentType": "Debit Card" + }, + { + "Id": 13792, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2019-08-27T07:07:24", + "TransactionId": 48235717, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 921, + "CustomerInfo": 97263243, + "PaymentType": "Debit Card" + }, + { + "Id": 13793, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-03-17T07:46:51", + "TransactionId": 47373190, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 892, + "CustomerInfo": 43827670, + "PaymentType": "Cash" + }, + { + "Id": 13794, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-09-01T17:40:08", + "TransactionId": 27922400, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 39, + "CustomerInfo": 15153211, + "PaymentType": "Credit Card" + }, + { + "Id": 13795, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2019-06-19T19:31:44", + "TransactionId": 82751675, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 222, + "CustomerInfo": 29734657, + "PaymentType": "Cash" + }, + { + "Id": 13796, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2018-01-02T14:16:13", + "TransactionId": 19116193, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 506, + "CustomerInfo": 82401108, + "PaymentType": "Cash" + }, + { + "Id": 13797, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2018-08-14T19:55:12", + "TransactionId": 66929873, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 732, + "CustomerInfo": 18273621, + "PaymentType": "Credit Card" + }, + { + "Id": 13798, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-05-06T16:56:21", + "TransactionId": 35129104, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 886, + "CustomerInfo": 94609753, + "PaymentType": "Debit Card" + }, + { + "Id": 13799, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2018-11-06T12:32:59", + "TransactionId": 76909020, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 489, + "CustomerInfo": 76978067, + "PaymentType": "Credit Card" + }, + { + "Id": 13800, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2018-11-16T10:31:44", + "TransactionId": 89716579, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 39, + "CustomerInfo": 60494819, + "PaymentType": "Debit Card" + }, + { + "Id": 13801, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-09-13T07:20:04", + "TransactionId": 39351588, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 169, + "CustomerInfo": 51895730, + "PaymentType": "Cash" + }, + { + "Id": 13802, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2019-10-26T13:02:21", + "TransactionId": 46661987, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 700, + "CustomerInfo": 3384333, + "PaymentType": "Credit Card" + }, + { + "Id": 13803, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2019-01-04T09:02:10", + "TransactionId": 29378041, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 20, + "CustomerInfo": 85289813, + "PaymentType": "Cash" + }, + { + "Id": 13804, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2019-12-14T13:54:12", + "TransactionId": 75531616, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 522, + "CustomerInfo": 86043875, + "PaymentType": "Cash" + }, + { + "Id": 13805, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2016-11-28T15:45:30", + "TransactionId": 53107463, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 145, + "CustomerInfo": 5929047, + "PaymentType": "Credit Card" + }, + { + "Id": 13806, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-03-15T10:46:25", + "TransactionId": 94818750, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 179, + "CustomerInfo": 17166873, + "PaymentType": "Debit Card" + }, + { + "Id": 13807, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-12-16T07:05:14", + "TransactionId": 19826106, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 222, + "CustomerInfo": 16969856, + "PaymentType": "Credit Card" + }, + { + "Id": 13808, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-09-15T15:17:43", + "TransactionId": 40923510, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 504, + "CustomerInfo": 44498017, + "PaymentType": "Cash" + }, + { + "Id": 13809, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2019-01-28T18:21:53", + "TransactionId": 98791333, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 288, + "CustomerInfo": 44054192, + "PaymentType": "Cash" + }, + { + "Id": 13810, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2017-08-17T14:21:33", + "TransactionId": 71005015, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 185, + "CustomerInfo": 50087067, + "PaymentType": "Credit Card" + }, + { + "Id": 13811, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2016-01-29T15:42:12", + "TransactionId": 55027288, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 149, + "CustomerInfo": 17562187, + "PaymentType": "Debit Card" + }, + { + "Id": 13812, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-03-16T08:11:02", + "TransactionId": 16062170, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 957, + "CustomerInfo": 69299654, + "PaymentType": "Debit Card" + }, + { + "Id": 13813, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-06-16T17:30:55", + "TransactionId": 87400930, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 689, + "CustomerInfo": 82137336, + "PaymentType": "Credit Card" + }, + { + "Id": 13814, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2017-05-27T17:51:56", + "TransactionId": 71096131, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 769, + "CustomerInfo": 63145956, + "PaymentType": "Debit Card" + }, + { + "Id": 13815, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-12-14T15:13:58", + "TransactionId": 57744254, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 415, + "CustomerInfo": 16708955, + "PaymentType": "Debit Card" + }, + { + "Id": 13816, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2016-02-27T10:05:40", + "TransactionId": 87714405, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 146, + "CustomerInfo": 15848364, + "PaymentType": "Credit Card" + }, + { + "Id": 13817, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2019-07-25T18:38:44", + "TransactionId": 92098525, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 852, + "CustomerInfo": 94495533, + "PaymentType": "Debit Card" + }, + { + "Id": 13818, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2016-04-11T18:01:26", + "TransactionId": 44420228, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 539, + "CustomerInfo": 81045383, + "PaymentType": "Debit Card" + }, + { + "Id": 13819, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-09-02T14:54:23", + "TransactionId": 28884157, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 611, + "CustomerInfo": 97979959, + "PaymentType": "Cash" + }, + { + "Id": 13820, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-05-12T07:24:49", + "TransactionId": 54468689, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 458, + "CustomerInfo": 79706814, + "PaymentType": "Debit Card" + }, + { + "Id": 13821, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2017-07-17T17:00:40", + "TransactionId": 17339353, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 840, + "CustomerInfo": 62806556, + "PaymentType": "Cash" + }, + { + "Id": 13822, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2016-02-13T17:34:05", + "TransactionId": 56496848, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 968, + "CustomerInfo": 64871924, + "PaymentType": "Cash" + }, + { + "Id": 13823, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-09-16T13:47:25", + "TransactionId": 96629061, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 43031420, + "PaymentType": "Debit Card" + }, + { + "Id": 13824, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2017-02-20T10:46:16", + "TransactionId": 20644842, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 595, + "CustomerInfo": 20761419, + "PaymentType": "Debit Card" + }, + { + "Id": 13825, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2018-06-30T15:57:53", + "TransactionId": 76657718, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 50350273, + "PaymentType": "Credit Card" + }, + { + "Id": 13826, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2019-11-25T18:15:24", + "TransactionId": 50101799, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 661, + "CustomerInfo": 1518927, + "PaymentType": "Debit Card" + }, + { + "Id": 13827, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-01-09T17:56:33", + "TransactionId": 99062698, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 72, + "CustomerInfo": 47266227, + "PaymentType": "Credit Card" + }, + { + "Id": 13828, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2016-09-27T07:24:49", + "TransactionId": 86871630, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 738, + "CustomerInfo": 48158626, + "PaymentType": "Credit Card" + }, + { + "Id": 13829, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2016-09-15T09:37:35", + "TransactionId": 43405137, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 342, + "CustomerInfo": 40912305, + "PaymentType": "Debit Card" + }, + { + "Id": 13830, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2016-05-07T09:26:56", + "TransactionId": 21135780, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 238, + "CustomerInfo": 97161202, + "PaymentType": "Credit Card" + }, + { + "Id": 13831, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-11-21T11:01:41", + "TransactionId": 10112055, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 431, + "CustomerInfo": 32964686, + "PaymentType": "Credit Card" + }, + { + "Id": 13832, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2017-11-07T19:59:31", + "TransactionId": 47132081, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 434, + "CustomerInfo": 76171290, + "PaymentType": "Cash" + }, + { + "Id": 13833, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2017-01-10T13:31:35", + "TransactionId": 36628074, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 419, + "CustomerInfo": 27402099, + "PaymentType": "Cash" + }, + { + "Id": 13834, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-03-28T17:21:50", + "TransactionId": 47701528, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 757, + "CustomerInfo": 87018421, + "PaymentType": "Debit Card" + }, + { + "Id": 13835, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-05-11T07:46:51", + "TransactionId": 50143561, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 878, + "CustomerInfo": 19531569, + "PaymentType": "Debit Card" + }, + { + "Id": 13836, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-06-19T10:29:08", + "TransactionId": 23028446, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 828, + "CustomerInfo": 77799808, + "PaymentType": "Debit Card" + }, + { + "Id": 13837, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2017-12-10T11:32:04", + "TransactionId": 81137040, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 886, + "CustomerInfo": 5614313, + "PaymentType": "Cash" + }, + { + "Id": 13838, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2019-04-30T19:55:55", + "TransactionId": 46408171, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 367, + "CustomerInfo": 43165440, + "PaymentType": "Credit Card" + }, + { + "Id": 13839, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2019-10-12T17:43:52", + "TransactionId": 52623140, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 434, + "CustomerInfo": 50910390, + "PaymentType": "Credit Card" + }, + { + "Id": 13840, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2019-10-12T19:31:00", + "TransactionId": 902369, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 312, + "CustomerInfo": 53283074, + "PaymentType": "Cash" + }, + { + "Id": 13841, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-04-05T10:31:26", + "TransactionId": 94399258, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 759, + "CustomerInfo": 62837853, + "PaymentType": "Credit Card" + }, + { + "Id": 13842, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2017-10-02T16:16:36", + "TransactionId": 7527416, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 164, + "CustomerInfo": 97022557, + "PaymentType": "Debit Card" + }, + { + "Id": 13843, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-10-24T07:14:27", + "TransactionId": 50987532, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 537, + "CustomerInfo": 51218921, + "PaymentType": "Debit Card" + }, + { + "Id": 13844, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2019-09-24T16:53:54", + "TransactionId": 64044516, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 121, + "CustomerInfo": 70566948, + "PaymentType": "Cash" + }, + { + "Id": 13845, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2019-08-07T10:44:07", + "TransactionId": 63621557, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 352, + "CustomerInfo": 91644246, + "PaymentType": "Cash" + }, + { + "Id": 13846, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-10-05T08:07:09", + "TransactionId": 21358595, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 171, + "CustomerInfo": 14020251, + "PaymentType": "Cash" + }, + { + "Id": 13847, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-10-26T18:08:56", + "TransactionId": 9096240, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 342, + "CustomerInfo": 76723068, + "PaymentType": "Cash" + }, + { + "Id": 13848, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-05-16T13:01:38", + "TransactionId": 72947470, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 722, + "CustomerInfo": 36853277, + "PaymentType": "Credit Card" + }, + { + "Id": 13849, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-09-12T08:21:42", + "TransactionId": 92438717, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 593, + "CustomerInfo": 27020193, + "PaymentType": "Debit Card" + }, + { + "Id": 13850, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-03-19T15:11:23", + "TransactionId": 50818792, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 576, + "CustomerInfo": 86472903, + "PaymentType": "Cash" + }, + { + "Id": 13851, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2018-10-12T15:31:49", + "TransactionId": 79410650, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 551, + "CustomerInfo": 8345512, + "PaymentType": "Debit Card" + }, + { + "Id": 13852, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2016-05-10T14:04:51", + "TransactionId": 99610564, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 254, + "CustomerInfo": 95932652, + "PaymentType": "Credit Card" + }, + { + "Id": 13853, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-03-14T11:24:52", + "TransactionId": 36369075, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 59322179, + "PaymentType": "Credit Card" + }, + { + "Id": 13854, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-11-18T16:36:12", + "TransactionId": 63892151, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 512, + "CustomerInfo": 36421571, + "PaymentType": "Credit Card" + }, + { + "Id": 13855, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2017-09-05T08:45:53", + "TransactionId": 56151545, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 228, + "CustomerInfo": 5910347, + "PaymentType": "Credit Card" + }, + { + "Id": 13856, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2019-01-18T19:03:22", + "TransactionId": 38179584, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 660, + "CustomerInfo": 71111622, + "PaymentType": "Debit Card" + }, + { + "Id": 13857, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2018-06-29T14:12:12", + "TransactionId": 56185373, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 40, + "CustomerInfo": 72670586, + "PaymentType": "Debit Card" + }, + { + "Id": 13858, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2018-09-06T13:23:23", + "TransactionId": 15521435, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 621, + "CustomerInfo": 74225634, + "PaymentType": "Debit Card" + }, + { + "Id": 13859, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-04-23T15:04:11", + "TransactionId": 82339284, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 327, + "CustomerInfo": 8464673, + "PaymentType": "Cash" + }, + { + "Id": 13860, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2019-09-27T19:39:56", + "TransactionId": 72009467, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 78, + "CustomerInfo": 59476058, + "PaymentType": "Cash" + }, + { + "Id": 13861, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-04-03T19:05:05", + "TransactionId": 47993310, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 199, + "CustomerInfo": 57277307, + "PaymentType": "Debit Card" + }, + { + "Id": 13862, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-09-02T13:21:22", + "TransactionId": 17277276, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 897, + "CustomerInfo": 94683636, + "PaymentType": "Credit Card" + }, + { + "Id": 13863, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2017-12-17T16:02:56", + "TransactionId": 49045231, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 453, + "CustomerInfo": 217918, + "PaymentType": "Debit Card" + }, + { + "Id": 13864, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-03-17T13:13:52", + "TransactionId": 57619105, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 892, + "CustomerInfo": 3184445, + "PaymentType": "Debit Card" + }, + { + "Id": 13865, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-08-19T08:18:32", + "TransactionId": 39357872, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 213, + "CustomerInfo": 74281068, + "PaymentType": "Debit Card" + }, + { + "Id": 13866, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2018-10-20T07:16:02", + "TransactionId": 73325347, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 746, + "CustomerInfo": 40501589, + "PaymentType": "Debit Card" + }, + { + "Id": 13867, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-03-01T18:42:12", + "TransactionId": 4542277, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 680, + "CustomerInfo": 96791549, + "PaymentType": "Debit Card" + }, + { + "Id": 13868, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-02-18T11:36:06", + "TransactionId": 90618839, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 920, + "CustomerInfo": 8268534, + "PaymentType": "Cash" + }, + { + "Id": 13869, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-02-08T18:22:28", + "TransactionId": 93218728, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 735, + "CustomerInfo": 54218342, + "PaymentType": "Credit Card" + }, + { + "Id": 13870, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2016-08-24T13:30:17", + "TransactionId": 34024013, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 392, + "CustomerInfo": 28396126, + "PaymentType": "Cash" + }, + { + "Id": 13871, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2019-04-08T13:40:48", + "TransactionId": 12263773, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 891, + "CustomerInfo": 29158119, + "PaymentType": "Credit Card" + }, + { + "Id": 13872, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2016-08-12T19:22:48", + "TransactionId": 6967852, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 820, + "CustomerInfo": 94821691, + "PaymentType": "Credit Card" + }, + { + "Id": 13873, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-11-15T11:16:57", + "TransactionId": 84588400, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 134, + "CustomerInfo": 59235163, + "PaymentType": "Debit Card" + }, + { + "Id": 13874, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-12-16T09:40:36", + "TransactionId": 5367096, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 958, + "CustomerInfo": 74498785, + "PaymentType": "Credit Card" + }, + { + "Id": 13875, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2017-07-06T16:09:42", + "TransactionId": 44506957, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 342, + "CustomerInfo": 87293860, + "PaymentType": "Cash" + }, + { + "Id": 13876, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-09-02T08:11:20", + "TransactionId": 6132064, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 207, + "CustomerInfo": 14456735, + "PaymentType": "Cash" + }, + { + "Id": 13877, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2017-05-09T17:01:41", + "TransactionId": 89242735, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 837, + "CustomerInfo": 16137784, + "PaymentType": "Credit Card" + }, + { + "Id": 13878, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2016-06-28T12:38:01", + "TransactionId": 17611495, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 161, + "CustomerInfo": 30279578, + "PaymentType": "Debit Card" + }, + { + "Id": 13879, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2016-02-28T13:00:12", + "TransactionId": 49066183, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 360, + "CustomerInfo": 57607432, + "PaymentType": "Credit Card" + }, + { + "Id": 13880, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-05-29T11:27:27", + "TransactionId": 57684748, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 706, + "CustomerInfo": 73725228, + "PaymentType": "Cash" + }, + { + "Id": 13881, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2017-09-30T15:54:17", + "TransactionId": 31309528, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 511, + "CustomerInfo": 92902054, + "PaymentType": "Debit Card" + }, + { + "Id": 13882, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-03-20T17:38:15", + "TransactionId": 21714695, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 874, + "CustomerInfo": 95183450, + "PaymentType": "Debit Card" + }, + { + "Id": 13883, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2016-07-21T18:10:48", + "TransactionId": 7784858, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 452, + "CustomerInfo": 5207915, + "PaymentType": "Cash" + }, + { + "Id": 13884, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-09-05T12:10:57", + "TransactionId": 29572153, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 46, + "CustomerInfo": 69797179, + "PaymentType": "Cash" + }, + { + "Id": 13885, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-10-12T14:26:36", + "TransactionId": 25076368, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 362, + "CustomerInfo": 52829903, + "PaymentType": "Cash" + }, + { + "Id": 13886, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2018-11-08T07:21:04", + "TransactionId": 7079114, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 359, + "CustomerInfo": 14922052, + "PaymentType": "Credit Card" + }, + { + "Id": 13887, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-09-08T14:07:00", + "TransactionId": 52949883, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 414, + "CustomerInfo": 65264006, + "PaymentType": "Credit Card" + }, + { + "Id": 13888, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2016-04-04T15:13:41", + "TransactionId": 88353836, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 66, + "CustomerInfo": 59875695, + "PaymentType": "Cash" + }, + { + "Id": 13889, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2017-12-14T08:12:20", + "TransactionId": 12940468, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 805, + "CustomerInfo": 1856873, + "PaymentType": "Credit Card" + }, + { + "Id": 13890, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2018-12-27T15:24:03", + "TransactionId": 36294789, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 873, + "CustomerInfo": 7634396, + "PaymentType": "Credit Card" + }, + { + "Id": 13891, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2019-11-18T19:27:59", + "TransactionId": 83366141, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 333, + "CustomerInfo": 49894030, + "PaymentType": "Cash" + }, + { + "Id": 13892, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-10-02T17:08:53", + "TransactionId": 46478968, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 938, + "CustomerInfo": 35997486, + "PaymentType": "Cash" + }, + { + "Id": 13893, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2019-03-18T07:09:16", + "TransactionId": 24640381, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 855, + "CustomerInfo": 6195793, + "PaymentType": "Debit Card" + }, + { + "Id": 13894, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-05-17T07:54:55", + "TransactionId": 1023661, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 388, + "CustomerInfo": 52444180, + "PaymentType": "Debit Card" + }, + { + "Id": 13895, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2018-06-17T10:42:49", + "TransactionId": 97662737, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 606, + "CustomerInfo": 85074950, + "PaymentType": "Debit Card" + }, + { + "Id": 13896, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2016-10-12T08:00:14", + "TransactionId": 1402943, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 430, + "CustomerInfo": 1621795, + "PaymentType": "Debit Card" + }, + { + "Id": 13897, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-11-29T19:20:21", + "TransactionId": 40660257, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 526, + "CustomerInfo": 82783952, + "PaymentType": "Cash" + }, + { + "Id": 13898, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-11-23T15:37:35", + "TransactionId": 24497571, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 590, + "CustomerInfo": 89335976, + "PaymentType": "Debit Card" + }, + { + "Id": 13899, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2019-09-03T12:49:06", + "TransactionId": 43859899, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 989, + "CustomerInfo": 75703055, + "PaymentType": "Credit Card" + }, + { + "Id": 13900, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-09-05T15:39:19", + "TransactionId": 74236863, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 594, + "CustomerInfo": 41492273, + "PaymentType": "Credit Card" + }, + { + "Id": 13901, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-11-07T17:36:40", + "TransactionId": 11202508, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 1000, + "CustomerInfo": 64219426, + "PaymentType": "Credit Card" + }, + { + "Id": 13902, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-04-25T14:43:09", + "TransactionId": 85498998, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 883, + "CustomerInfo": 53263101, + "PaymentType": "Credit Card" + }, + { + "Id": 13903, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2018-10-24T09:00:09", + "TransactionId": 88302728, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 661, + "CustomerInfo": 60085260, + "PaymentType": "Debit Card" + }, + { + "Id": 13904, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2017-07-17T15:53:25", + "TransactionId": 89430732, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 257, + "CustomerInfo": 66270036, + "PaymentType": "Credit Card" + }, + { + "Id": 13905, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2018-10-11T17:39:42", + "TransactionId": 42172837, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 516, + "CustomerInfo": 42945350, + "PaymentType": "Credit Card" + }, + { + "Id": 13906, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-07-27T17:11:46", + "TransactionId": 58472656, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 263, + "CustomerInfo": 8370525, + "PaymentType": "Debit Card" + }, + { + "Id": 13907, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-01-16T15:42:29", + "TransactionId": 26333133, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 700, + "CustomerInfo": 34081382, + "PaymentType": "Credit Card" + }, + { + "Id": 13908, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2018-10-31T08:12:12", + "TransactionId": 88333005, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 575, + "CustomerInfo": 82419535, + "PaymentType": "Credit Card" + }, + { + "Id": 13909, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2019-12-28T12:32:59", + "TransactionId": 98561213, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 855, + "CustomerInfo": 39539641, + "PaymentType": "Debit Card" + }, + { + "Id": 13910, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2019-06-09T10:23:23", + "TransactionId": 40170907, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 746, + "CustomerInfo": 24259980, + "PaymentType": "Cash" + }, + { + "Id": 13911, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-04-24T17:29:20", + "TransactionId": 5671970, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 120, + "CustomerInfo": 44200029, + "PaymentType": "Debit Card" + }, + { + "Id": 13912, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2017-01-08T16:15:19", + "TransactionId": 80548571, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 247, + "CustomerInfo": 89822776, + "PaymentType": "Cash" + }, + { + "Id": 13913, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2018-04-19T12:41:20", + "TransactionId": 98499437, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 730, + "CustomerInfo": 76958556, + "PaymentType": "Credit Card" + }, + { + "Id": 13914, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2017-07-12T13:52:11", + "TransactionId": 48731988, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 545, + "CustomerInfo": 91873452, + "PaymentType": "Credit Card" + }, + { + "Id": 13915, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2018-10-20T14:25:35", + "TransactionId": 3412615, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 88, + "CustomerInfo": 4486128, + "PaymentType": "Credit Card" + }, + { + "Id": 13916, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2017-03-07T13:27:59", + "TransactionId": 55762531, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 748, + "CustomerInfo": 75261454, + "PaymentType": "Debit Card" + }, + { + "Id": 13917, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-01-07T09:23:28", + "TransactionId": 30618922, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 111, + "CustomerInfo": 60717383, + "PaymentType": "Cash" + }, + { + "Id": 13918, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-12-20T19:19:03", + "TransactionId": 33852100, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 312, + "CustomerInfo": 58345586, + "PaymentType": "Credit Card" + }, + { + "Id": 13919, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-07-09T12:08:56", + "TransactionId": 27220966, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 931, + "CustomerInfo": 82615792, + "PaymentType": "Cash" + }, + { + "Id": 13920, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-12-30T19:29:34", + "TransactionId": 77735694, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 497, + "CustomerInfo": 18302284, + "PaymentType": "Cash" + }, + { + "Id": 13921, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2016-02-03T17:59:25", + "TransactionId": 78778206, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 495, + "CustomerInfo": 42344499, + "PaymentType": "Cash" + }, + { + "Id": 13922, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-09-23T12:28:22", + "TransactionId": 51997793, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 277, + "CustomerInfo": 823519, + "PaymentType": "Debit Card" + }, + { + "Id": 13923, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2019-12-22T13:09:16", + "TransactionId": 58963753, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 871, + "CustomerInfo": 10081903, + "PaymentType": "Credit Card" + }, + { + "Id": 13924, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2018-07-29T07:22:57", + "TransactionId": 97940848, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 569, + "CustomerInfo": 19622781, + "PaymentType": "Cash" + }, + { + "Id": 13925, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2018-05-09T07:07:58", + "TransactionId": 82969873, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 549, + "CustomerInfo": 70043664, + "PaymentType": "Credit Card" + }, + { + "Id": 13926, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2016-03-30T07:11:34", + "TransactionId": 84540752, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 838, + "CustomerInfo": 33790299, + "PaymentType": "Credit Card" + }, + { + "Id": 13927, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-07-19T11:25:18", + "TransactionId": 38527036, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 891, + "CustomerInfo": 13631168, + "PaymentType": "Credit Card" + }, + { + "Id": 13928, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2019-05-15T10:09:33", + "TransactionId": 81721921, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 721, + "CustomerInfo": 59852626, + "PaymentType": "Cash" + }, + { + "Id": 13929, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2018-03-28T07:36:03", + "TransactionId": 8011366, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 773, + "CustomerInfo": 32813898, + "PaymentType": "Debit Card" + }, + { + "Id": 13930, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2016-08-12T11:43:18", + "TransactionId": 87260991, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 370, + "CustomerInfo": 63301659, + "PaymentType": "Credit Card" + }, + { + "Id": 13931, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-01-04T15:33:42", + "TransactionId": 55301618, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 810, + "CustomerInfo": 35972905, + "PaymentType": "Cash" + }, + { + "Id": 13932, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-05-25T10:12:26", + "TransactionId": 33191199, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 143, + "CustomerInfo": 92551074, + "PaymentType": "Cash" + }, + { + "Id": 13933, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2016-04-18T18:29:57", + "TransactionId": 79550678, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 324, + "CustomerInfo": 76191586, + "PaymentType": "Debit Card" + }, + { + "Id": 13934, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-07-20T13:16:45", + "TransactionId": 29243597, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 873, + "CustomerInfo": 52758022, + "PaymentType": "Debit Card" + }, + { + "Id": 13935, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2018-04-14T18:44:12", + "TransactionId": 26396829, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 69, + "CustomerInfo": 39785716, + "PaymentType": "Cash" + }, + { + "Id": 13936, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2018-08-04T18:41:37", + "TransactionId": 55999778, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 7, + "CustomerInfo": 42084529, + "PaymentType": "Cash" + }, + { + "Id": 13937, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2019-06-15T11:31:21", + "TransactionId": 95845261, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 929, + "CustomerInfo": 23837539, + "PaymentType": "Debit Card" + }, + { + "Id": 13938, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2019-10-04T09:20:36", + "TransactionId": 60866953, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 470, + "CustomerInfo": 3768387, + "PaymentType": "Cash" + }, + { + "Id": 13939, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-03-19T13:00:03", + "TransactionId": 29339178, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 64, + "CustomerInfo": 78345156, + "PaymentType": "Credit Card" + }, + { + "Id": 13940, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2016-07-25T18:52:08", + "TransactionId": 35422264, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 195, + "CustomerInfo": 76384689, + "PaymentType": "Cash" + }, + { + "Id": 13941, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2017-04-02T10:26:07", + "TransactionId": 89146332, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 800, + "CustomerInfo": 88170650, + "PaymentType": "Debit Card" + }, + { + "Id": 13942, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2018-10-20T15:17:25", + "TransactionId": 49333818, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 553, + "CustomerInfo": 55161580, + "PaymentType": "Credit Card" + }, + { + "Id": 13943, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2017-08-19T18:56:36", + "TransactionId": 65226238, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 389, + "CustomerInfo": 75655415, + "PaymentType": "Debit Card" + }, + { + "Id": 13944, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2018-07-12T17:23:00", + "TransactionId": 97092424, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 980, + "CustomerInfo": 9208621, + "PaymentType": "Credit Card" + }, + { + "Id": 13945, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-10-19T10:08:50", + "TransactionId": 93575552, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 802, + "CustomerInfo": 19273401, + "PaymentType": "Debit Card" + }, + { + "Id": 13946, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2019-12-04T07:56:56", + "TransactionId": 96582436, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 441, + "CustomerInfo": 1886512, + "PaymentType": "Debit Card" + }, + { + "Id": 13947, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-10-11T16:40:05", + "TransactionId": 70876425, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 883, + "CustomerInfo": 24242415, + "PaymentType": "Credit Card" + }, + { + "Id": 13948, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2018-10-21T17:35:23", + "TransactionId": 25909269, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 505, + "CustomerInfo": 34607871, + "PaymentType": "Cash" + }, + { + "Id": 13949, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-02-18T12:36:52", + "TransactionId": 83771960, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 771, + "CustomerInfo": 14488870, + "PaymentType": "Credit Card" + }, + { + "Id": 13950, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2017-07-13T11:32:21", + "TransactionId": 33300722, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 493, + "CustomerInfo": 73573691, + "PaymentType": "Cash" + }, + { + "Id": 13951, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-08-31T18:54:26", + "TransactionId": 71226406, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 699, + "CustomerInfo": 8400553, + "PaymentType": "Debit Card" + }, + { + "Id": 13952, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-03-16T07:33:53", + "TransactionId": 61120995, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 8, + "CustomerInfo": 66511009, + "PaymentType": "Credit Card" + }, + { + "Id": 13953, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-06-17T11:52:31", + "TransactionId": 70561374, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 752, + "CustomerInfo": 89348681, + "PaymentType": "Cash" + }, + { + "Id": 13954, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-10-14T11:36:32", + "TransactionId": 14164133, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 939, + "CustomerInfo": 8507428, + "PaymentType": "Credit Card" + }, + { + "Id": 13955, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-10-22T09:36:17", + "TransactionId": 8350877, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 888, + "CustomerInfo": 68702356, + "PaymentType": "Cash" + }, + { + "Id": 13956, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2016-02-27T15:39:36", + "TransactionId": 13313009, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 367, + "CustomerInfo": 69768491, + "PaymentType": "Cash" + }, + { + "Id": 13957, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2018-06-27T15:52:16", + "TransactionId": 77324899, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 943, + "CustomerInfo": 34822692, + "PaymentType": "Credit Card" + }, + { + "Id": 13958, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-12-08T08:45:45", + "TransactionId": 34677857, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 554, + "CustomerInfo": 58859834, + "PaymentType": "Debit Card" + }, + { + "Id": 13959, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-01-10T19:50:53", + "TransactionId": 44628864, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 425, + "CustomerInfo": 73984998, + "PaymentType": "Debit Card" + }, + { + "Id": 13960, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-07-04T15:31:32", + "TransactionId": 58236047, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 398, + "CustomerInfo": 60645136, + "PaymentType": "Credit Card" + }, + { + "Id": 13961, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2019-08-25T19:26:41", + "TransactionId": 28254824, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 871, + "CustomerInfo": 13867323, + "PaymentType": "Debit Card" + }, + { + "Id": 13962, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2017-10-12T18:36:35", + "TransactionId": 80937016, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 711, + "CustomerInfo": 32259949, + "PaymentType": "Debit Card" + }, + { + "Id": 13963, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-07-26T13:04:31", + "TransactionId": 86677959, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 164, + "CustomerInfo": 15370154, + "PaymentType": "Cash" + }, + { + "Id": 13964, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2019-11-07T11:16:48", + "TransactionId": 70974074, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 201, + "CustomerInfo": 28898707, + "PaymentType": "Debit Card" + }, + { + "Id": 13965, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2019-07-07T09:00:09", + "TransactionId": 91303326, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 142, + "CustomerInfo": 30042971, + "PaymentType": "Debit Card" + }, + { + "Id": 13966, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2016-11-11T13:20:56", + "TransactionId": 514206, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 396, + "CustomerInfo": 49510024, + "PaymentType": "Debit Card" + }, + { + "Id": 13967, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2017-12-12T17:51:04", + "TransactionId": 73066522, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 575, + "CustomerInfo": 59507971, + "PaymentType": "Cash" + }, + { + "Id": 13968, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2016-11-30T18:08:47", + "TransactionId": 84686072, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 607, + "CustomerInfo": 83557999, + "PaymentType": "Debit Card" + }, + { + "Id": 13969, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2019-11-26T10:33:01", + "TransactionId": 10105982, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 449, + "CustomerInfo": 20439392, + "PaymentType": "Cash" + }, + { + "Id": 13970, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-08-07T17:26:27", + "TransactionId": 53917739, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 747, + "CustomerInfo": 42543097, + "PaymentType": "Credit Card" + }, + { + "Id": 13971, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2017-10-07T11:54:40", + "TransactionId": 22217618, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 613, + "CustomerInfo": 13797995, + "PaymentType": "Credit Card" + }, + { + "Id": 13972, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-08-23T13:26:15", + "TransactionId": 70429748, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 51, + "CustomerInfo": 55675094, + "PaymentType": "Debit Card" + }, + { + "Id": 13973, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2019-08-09T13:45:50", + "TransactionId": 72282342, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 108, + "CustomerInfo": 43150450, + "PaymentType": "Credit Card" + }, + { + "Id": 13974, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-03-13T08:45:10", + "TransactionId": 89977491, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 740, + "CustomerInfo": 40443445, + "PaymentType": "Debit Card" + }, + { + "Id": 13975, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-02-25T14:33:22", + "TransactionId": 93673567, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 875, + "CustomerInfo": 78230262, + "PaymentType": "Cash" + }, + { + "Id": 13976, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2017-06-28T09:46:39", + "TransactionId": 47069072, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 11, + "CustomerInfo": 845885, + "PaymentType": "Debit Card" + }, + { + "Id": 13977, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2016-01-16T16:35:20", + "TransactionId": 94698801, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 521, + "CustomerInfo": 5735415, + "PaymentType": "Credit Card" + }, + { + "Id": 13978, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2017-02-24T10:06:58", + "TransactionId": 69876751, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 825, + "CustomerInfo": 47388750, + "PaymentType": "Cash" + }, + { + "Id": 13979, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2019-11-08T18:59:11", + "TransactionId": 15272614, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 996, + "CustomerInfo": 60278990, + "PaymentType": "Credit Card" + }, + { + "Id": 13980, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-11-03T13:43:15", + "TransactionId": 56095518, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 357, + "CustomerInfo": 37472682, + "PaymentType": "Debit Card" + }, + { + "Id": 13981, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-09-30T19:40:22", + "TransactionId": 53767277, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 471, + "CustomerInfo": 95562260, + "PaymentType": "Cash" + }, + { + "Id": 13982, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2019-06-02T10:15:01", + "TransactionId": 3141559, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 33233941, + "PaymentType": "Debit Card" + }, + { + "Id": 13983, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2019-10-31T19:18:12", + "TransactionId": 6394509, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 311, + "CustomerInfo": 9094193, + "PaymentType": "Debit Card" + }, + { + "Id": 13984, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2017-12-02T14:04:25", + "TransactionId": 42720421, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 529, + "CustomerInfo": 31735863, + "PaymentType": "Cash" + }, + { + "Id": 13985, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2016-05-27T16:47:51", + "TransactionId": 45389213, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 374, + "CustomerInfo": 34946554, + "PaymentType": "Credit Card" + }, + { + "Id": 13986, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2016-09-01T10:04:22", + "TransactionId": 80545677, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 412, + "CustomerInfo": 24228668, + "PaymentType": "Debit Card" + }, + { + "Id": 13987, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-11-21T09:44:04", + "TransactionId": 30377074, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 843, + "CustomerInfo": 96838956, + "PaymentType": "Debit Card" + }, + { + "Id": 13988, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2018-02-10T09:35:43", + "TransactionId": 11029819, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 766, + "CustomerInfo": 37225366, + "PaymentType": "Cash" + }, + { + "Id": 13989, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-01-17T12:06:12", + "TransactionId": 14304634, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 899, + "CustomerInfo": 15936787, + "PaymentType": "Credit Card" + }, + { + "Id": 13990, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2019-02-23T13:25:58", + "TransactionId": 17815896, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 978, + "CustomerInfo": 17807407, + "PaymentType": "Credit Card" + }, + { + "Id": 13991, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-11-17T09:27:22", + "TransactionId": 60840535, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 82, + "CustomerInfo": 35630634, + "PaymentType": "Debit Card" + }, + { + "Id": 13992, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-07-09T09:49:06", + "TransactionId": 78563363, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 309, + "CustomerInfo": 47685360, + "PaymentType": "Credit Card" + }, + { + "Id": 13993, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2018-02-24T19:36:46", + "TransactionId": 41777642, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 26, + "CustomerInfo": 72814738, + "PaymentType": "Debit Card" + }, + { + "Id": 13994, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2016-05-12T17:00:14", + "TransactionId": 35828706, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 116, + "CustomerInfo": 63908598, + "PaymentType": "Debit Card" + }, + { + "Id": 13995, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-01-15T15:55:52", + "TransactionId": 65650141, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 452, + "CustomerInfo": 77570692, + "PaymentType": "Credit Card" + }, + { + "Id": 13996, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2018-08-29T08:53:14", + "TransactionId": 49258438, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 31, + "CustomerInfo": 4288681, + "PaymentType": "Cash" + }, + { + "Id": 13997, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2018-10-14T07:35:11", + "TransactionId": 17438396, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 153, + "CustomerInfo": 6275922, + "PaymentType": "Cash" + }, + { + "Id": 13998, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2017-07-20T10:01:12", + "TransactionId": 45837891, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 713, + "CustomerInfo": 36602447, + "PaymentType": "Credit Card" + }, + { + "Id": 13999, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2017-10-24T08:45:45", + "TransactionId": 11529858, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 226, + "CustomerInfo": 56797100, + "PaymentType": "Cash" + }, + { + "Id": 14000, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2017-07-09T12:18:35", + "TransactionId": 69531534, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 948, + "CustomerInfo": 94388743, + "PaymentType": "Debit Card" + }, + { + "Id": 14001, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-04-15T15:31:32", + "TransactionId": 34074845, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 591, + "CustomerInfo": 53511211, + "PaymentType": "Cash" + }, + { + "Id": 14002, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2017-07-26T13:27:07", + "TransactionId": 9217431, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 88, + "CustomerInfo": 62269898, + "PaymentType": "Credit Card" + }, + { + "Id": 14003, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-11-12T12:53:34", + "TransactionId": 37980859, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 82, + "CustomerInfo": 25973601, + "PaymentType": "Credit Card" + }, + { + "Id": 14004, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-07-02T13:46:08", + "TransactionId": 23438296, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 971, + "CustomerInfo": 42326831, + "PaymentType": "Debit Card" + }, + { + "Id": 14005, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-03-18T11:54:23", + "TransactionId": 39657259, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 525, + "CustomerInfo": 50851947, + "PaymentType": "Credit Card" + }, + { + "Id": 14006, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-02-03T08:29:37", + "TransactionId": 57234887, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 49, + "CustomerInfo": 38563884, + "PaymentType": "Debit Card" + }, + { + "Id": 14007, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2017-11-26T11:33:48", + "TransactionId": 79799409, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 994, + "CustomerInfo": 6963801, + "PaymentType": "Debit Card" + }, + { + "Id": 14008, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2016-11-10T12:00:43", + "TransactionId": 31778209, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 151, + "CustomerInfo": 1327693, + "PaymentType": "Credit Card" + }, + { + "Id": 14009, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2018-02-03T07:53:46", + "TransactionId": 68826176, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 64, + "CustomerInfo": 60965249, + "PaymentType": "Credit Card" + }, + { + "Id": 14010, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2019-07-13T16:00:03", + "TransactionId": 98140639, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 892, + "CustomerInfo": 17629005, + "PaymentType": "Debit Card" + }, + { + "Id": 14011, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2019-11-24T15:54:52", + "TransactionId": 18492111, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 834, + "CustomerInfo": 71635734, + "PaymentType": "Cash" + }, + { + "Id": 14012, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2019-10-19T09:43:29", + "TransactionId": 21015534, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 740, + "CustomerInfo": 48836779, + "PaymentType": "Credit Card" + }, + { + "Id": 14013, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-04-03T07:44:33", + "TransactionId": 68041855, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 805, + "CustomerInfo": 6130349, + "PaymentType": "Credit Card" + }, + { + "Id": 14014, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2017-10-14T07:05:05", + "TransactionId": 12867698, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 918, + "CustomerInfo": 79358227, + "PaymentType": "Cash" + }, + { + "Id": 14015, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2016-11-06T17:10:28", + "TransactionId": 37958028, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 938, + "CustomerInfo": 33734245, + "PaymentType": "Credit Card" + }, + { + "Id": 14016, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-10-20T07:25:15", + "TransactionId": 46441049, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 923, + "CustomerInfo": 19890813, + "PaymentType": "Credit Card" + }, + { + "Id": 14017, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2018-03-08T16:17:11", + "TransactionId": 50194890, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 951, + "CustomerInfo": 60407632, + "PaymentType": "Credit Card" + }, + { + "Id": 14018, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-10-09T11:44:10", + "TransactionId": 71646973, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 950, + "CustomerInfo": 78618552, + "PaymentType": "Credit Card" + }, + { + "Id": 14019, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-02-21T15:11:23", + "TransactionId": 69124228, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 478, + "CustomerInfo": 47961081, + "PaymentType": "Debit Card" + }, + { + "Id": 14020, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-05-14T16:25:15", + "TransactionId": 50643425, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 475, + "CustomerInfo": 95924173, + "PaymentType": "Credit Card" + }, + { + "Id": 14021, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-06-22T13:42:32", + "TransactionId": 31929110, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 948, + "CustomerInfo": 15620356, + "PaymentType": "Credit Card" + }, + { + "Id": 14022, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2017-02-19T13:09:24", + "TransactionId": 57460098, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 623, + "CustomerInfo": 48847914, + "PaymentType": "Cash" + }, + { + "Id": 14023, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-05-24T17:21:33", + "TransactionId": 45330856, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 253, + "CustomerInfo": 72885914, + "PaymentType": "Debit Card" + }, + { + "Id": 14024, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-05-05T08:40:08", + "TransactionId": 40202441, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 900, + "CustomerInfo": 19881791, + "PaymentType": "Credit Card" + }, + { + "Id": 14025, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-11-23T09:57:36", + "TransactionId": 41464569, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 17, + "CustomerInfo": 67282357, + "PaymentType": "Credit Card" + }, + { + "Id": 14026, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-01-31T08:53:14", + "TransactionId": 83666551, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 221, + "CustomerInfo": 13635664, + "PaymentType": "Cash" + }, + { + "Id": 14027, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2018-12-17T16:40:48", + "TransactionId": 3843906, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 10, + "CustomerInfo": 86613141, + "PaymentType": "Credit Card" + }, + { + "Id": 14028, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2019-01-12T10:13:44", + "TransactionId": 65279057, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 878, + "CustomerInfo": 2342987, + "PaymentType": "Debit Card" + }, + { + "Id": 14029, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-04-05T16:41:14", + "TransactionId": 18376984, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 606, + "CustomerInfo": 16760125, + "PaymentType": "Debit Card" + }, + { + "Id": 14030, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2016-07-07T19:56:12", + "TransactionId": 62231038, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 189, + "CustomerInfo": 21292148, + "PaymentType": "Cash" + }, + { + "Id": 14031, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-10-04T08:40:34", + "TransactionId": 77051089, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 962, + "CustomerInfo": 5138487, + "PaymentType": "Cash" + }, + { + "Id": 14032, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-04-28T18:55:09", + "TransactionId": 67994080, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 781, + "CustomerInfo": 39243657, + "PaymentType": "Credit Card" + }, + { + "Id": 14033, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2016-08-11T09:35:17", + "TransactionId": 56257300, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 582, + "CustomerInfo": 68298723, + "PaymentType": "Cash" + }, + { + "Id": 14034, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2017-03-01T10:37:55", + "TransactionId": 19619489, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 749, + "CustomerInfo": 4584551, + "PaymentType": "Cash" + }, + { + "Id": 14035, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-01-15T10:00:03", + "TransactionId": 23160661, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 348, + "CustomerInfo": 17627237, + "PaymentType": "Credit Card" + }, + { + "Id": 14036, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2018-05-10T13:39:48", + "TransactionId": 27759766, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 299, + "CustomerInfo": 35684492, + "PaymentType": "Debit Card" + }, + { + "Id": 14037, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-08-23T17:22:51", + "TransactionId": 56736360, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 894, + "CustomerInfo": 89791428, + "PaymentType": "Credit Card" + }, + { + "Id": 14038, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-05-09T16:43:49", + "TransactionId": 62047685, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 481, + "CustomerInfo": 70867328, + "PaymentType": "Credit Card" + }, + { + "Id": 14039, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2017-07-21T19:20:56", + "TransactionId": 23391763, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 124, + "CustomerInfo": 3974185, + "PaymentType": "Credit Card" + }, + { + "Id": 14040, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-05-13T09:23:20", + "TransactionId": 50582199, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 963, + "CustomerInfo": 35491403, + "PaymentType": "Cash" + }, + { + "Id": 14041, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-12-13T17:13:21", + "TransactionId": 87171648, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 98676677, + "PaymentType": "Debit Card" + }, + { + "Id": 14042, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-02-28T15:56:27", + "TransactionId": 26618566, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 170, + "CustomerInfo": 99170971, + "PaymentType": "Debit Card" + }, + { + "Id": 14043, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2019-06-23T19:49:35", + "TransactionId": 83733993, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 962, + "CustomerInfo": 985368, + "PaymentType": "Debit Card" + }, + { + "Id": 14044, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2019-06-13T12:53:08", + "TransactionId": 68837683, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 357, + "CustomerInfo": 58277658, + "PaymentType": "Cash" + }, + { + "Id": 14045, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2017-10-02T13:04:22", + "TransactionId": 78507772, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 445, + "CustomerInfo": 6164352, + "PaymentType": "Cash" + }, + { + "Id": 14046, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-05-30T12:28:48", + "TransactionId": 22057250, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 433, + "CustomerInfo": 79662064, + "PaymentType": "Credit Card" + }, + { + "Id": 14047, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2019-06-16T14:02:15", + "TransactionId": 904918, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 399, + "CustomerInfo": 77080873, + "PaymentType": "Cash" + }, + { + "Id": 14048, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2016-07-13T18:59:28", + "TransactionId": 82444202, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 374, + "CustomerInfo": 65027587, + "PaymentType": "Cash" + }, + { + "Id": 14049, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2019-10-15T15:38:53", + "TransactionId": 23761247, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 737, + "CustomerInfo": 49786580, + "PaymentType": "Credit Card" + }, + { + "Id": 14050, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2016-03-07T12:36:43", + "TransactionId": 8993361, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 983, + "CustomerInfo": 8097051, + "PaymentType": "Credit Card" + }, + { + "Id": 14051, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2018-03-21T12:18:26", + "TransactionId": 6636935, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 24, + "CustomerInfo": 76114225, + "PaymentType": "Credit Card" + }, + { + "Id": 14052, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-01-04T09:01:35", + "TransactionId": 79687535, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 889, + "CustomerInfo": 94320878, + "PaymentType": "Debit Card" + }, + { + "Id": 14053, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2017-12-26T07:23:31", + "TransactionId": 16148809, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 545, + "CustomerInfo": 20465413, + "PaymentType": "Credit Card" + }, + { + "Id": 14054, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-06-05T12:11:14", + "TransactionId": 12985675, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 974, + "CustomerInfo": 25229168, + "PaymentType": "Cash" + }, + { + "Id": 14055, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-12-23T14:08:36", + "TransactionId": 72977517, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 403, + "CustomerInfo": 77202601, + "PaymentType": "Credit Card" + }, + { + "Id": 14056, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2017-06-13T14:58:42", + "TransactionId": 46236069, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 345, + "CustomerInfo": 72797168, + "PaymentType": "Credit Card" + }, + { + "Id": 14057, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-03-24T15:38:18", + "TransactionId": 43683617, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 63963101, + "PaymentType": "Cash" + }, + { + "Id": 14058, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2017-10-17T10:09:42", + "TransactionId": 48630350, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 693, + "CustomerInfo": 53585988, + "PaymentType": "Cash" + }, + { + "Id": 14059, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2019-10-12T10:21:13", + "TransactionId": 80515899, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 964, + "CustomerInfo": 81261603, + "PaymentType": "Cash" + }, + { + "Id": 14060, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2018-09-05T10:57:30", + "TransactionId": 93333593, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 70114999, + "PaymentType": "Cash" + }, + { + "Id": 14061, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2016-08-16T18:59:28", + "TransactionId": 30206125, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 871, + "CustomerInfo": 59072887, + "PaymentType": "Credit Card" + }, + { + "Id": 14062, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2018-12-24T09:50:59", + "TransactionId": 91183215, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 794, + "CustomerInfo": 16366547, + "PaymentType": "Cash" + }, + { + "Id": 14063, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2016-09-04T07:46:16", + "TransactionId": 21194712, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 609, + "CustomerInfo": 98103554, + "PaymentType": "Cash" + }, + { + "Id": 14064, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-08-19T11:16:05", + "TransactionId": 91772119, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 8, + "CustomerInfo": 61984171, + "PaymentType": "Credit Card" + }, + { + "Id": 14065, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2018-04-08T18:49:49", + "TransactionId": 70764125, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 764, + "CustomerInfo": 86415585, + "PaymentType": "Debit Card" + }, + { + "Id": 14066, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-03-19T18:10:22", + "TransactionId": 46965644, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 295, + "CustomerInfo": 98151419, + "PaymentType": "Debit Card" + }, + { + "Id": 14067, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2016-10-21T18:45:13", + "TransactionId": 47861708, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 665, + "CustomerInfo": 84579399, + "PaymentType": "Cash" + }, + { + "Id": 14068, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2019-09-18T15:25:47", + "TransactionId": 57688877, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 549, + "CustomerInfo": 84861239, + "PaymentType": "Cash" + }, + { + "Id": 14069, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-01-16T08:28:45", + "TransactionId": 22316754, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 86, + "CustomerInfo": 33016196, + "PaymentType": "Credit Card" + }, + { + "Id": 14070, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2018-07-18T19:22:48", + "TransactionId": 14969899, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 731, + "CustomerInfo": 47489450, + "PaymentType": "Cash" + }, + { + "Id": 14071, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2016-05-31T19:56:21", + "TransactionId": 98212558, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 888, + "CustomerInfo": 13442328, + "PaymentType": "Credit Card" + }, + { + "Id": 14072, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-09-23T17:02:07", + "TransactionId": 73339356, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 960, + "CustomerInfo": 26708271, + "PaymentType": "Credit Card" + }, + { + "Id": 14073, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-03-16T18:03:36", + "TransactionId": 82345956, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 493, + "CustomerInfo": 90466535, + "PaymentType": "Credit Card" + }, + { + "Id": 14074, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2018-02-19T15:41:11", + "TransactionId": 88957488, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 281, + "CustomerInfo": 19670576, + "PaymentType": "Cash" + }, + { + "Id": 14075, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-08-03T16:02:30", + "TransactionId": 37327935, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 97, + "CustomerInfo": 66422382, + "PaymentType": "Cash" + }, + { + "Id": 14076, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2016-08-31T12:23:20", + "TransactionId": 76181753, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 610, + "CustomerInfo": 54075989, + "PaymentType": "Debit Card" + }, + { + "Id": 14077, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-11-10T12:16:42", + "TransactionId": 38986665, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 439, + "CustomerInfo": 49564463, + "PaymentType": "Credit Card" + }, + { + "Id": 14078, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-05-26T09:06:12", + "TransactionId": 23620702, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 451, + "CustomerInfo": 54263167, + "PaymentType": "Cash" + }, + { + "Id": 14079, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2019-06-25T15:29:40", + "TransactionId": 6291590, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 752, + "CustomerInfo": 98968506, + "PaymentType": "Credit Card" + }, + { + "Id": 14080, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-05-06T13:59:14", + "TransactionId": 17238659, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 296, + "CustomerInfo": 4764344, + "PaymentType": "Credit Card" + }, + { + "Id": 14081, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2017-10-18T19:15:01", + "TransactionId": 55913169, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 301, + "CustomerInfo": 41590122, + "PaymentType": "Cash" + }, + { + "Id": 14082, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-01-26T14:15:48", + "TransactionId": 48586722, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 702, + "CustomerInfo": 59169787, + "PaymentType": "Cash" + }, + { + "Id": 14083, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2019-07-16T14:32:38", + "TransactionId": 40449343, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 975, + "CustomerInfo": 65564538, + "PaymentType": "Cash" + }, + { + "Id": 14084, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2016-10-08T18:12:49", + "TransactionId": 28556847, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 67, + "CustomerInfo": 29245948, + "PaymentType": "Debit Card" + }, + { + "Id": 14085, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2019-11-19T16:52:36", + "TransactionId": 26860871, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 208, + "CustomerInfo": 32331477, + "PaymentType": "Cash" + }, + { + "Id": 14086, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2018-08-01T12:22:54", + "TransactionId": 34530411, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 413, + "CustomerInfo": 51756245, + "PaymentType": "Cash" + }, + { + "Id": 14087, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-12-23T10:03:04", + "TransactionId": 9815268, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 5, + "CustomerInfo": 71930664, + "PaymentType": "Debit Card" + }, + { + "Id": 14088, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2017-03-12T14:30:20", + "TransactionId": 41742682, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 82, + "CustomerInfo": 871066, + "PaymentType": "Debit Card" + }, + { + "Id": 14089, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-11-17T19:48:52", + "TransactionId": 19668292, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 21, + "CustomerInfo": 33639429, + "PaymentType": "Debit Card" + }, + { + "Id": 14090, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2019-08-05T09:31:41", + "TransactionId": 28752975, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 309, + "CustomerInfo": 71500930, + "PaymentType": "Credit Card" + }, + { + "Id": 14091, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2018-10-09T17:00:58", + "TransactionId": 47353042, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 925, + "CustomerInfo": 98783954, + "PaymentType": "Cash" + }, + { + "Id": 14092, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-12-30T09:24:29", + "TransactionId": 32434877, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 226, + "CustomerInfo": 63265297, + "PaymentType": "Debit Card" + }, + { + "Id": 14093, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2016-03-14T19:05:40", + "TransactionId": 78446148, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 646, + "CustomerInfo": 67162011, + "PaymentType": "Debit Card" + }, + { + "Id": 14094, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2017-10-03T09:06:03", + "TransactionId": 65938050, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 596, + "CustomerInfo": 93639741, + "PaymentType": "Debit Card" + }, + { + "Id": 14095, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2016-07-13T15:17:08", + "TransactionId": 36711625, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 84, + "CustomerInfo": 42309603, + "PaymentType": "Debit Card" + }, + { + "Id": 14096, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2016-06-03T08:23:43", + "TransactionId": 61200524, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 601, + "CustomerInfo": 2938296, + "PaymentType": "Cash" + }, + { + "Id": 14097, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2017-01-31T18:14:33", + "TransactionId": 22204112, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 154, + "CustomerInfo": 90875666, + "PaymentType": "Debit Card" + }, + { + "Id": 14098, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2016-09-06T15:23:02", + "TransactionId": 7906193, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 687, + "CustomerInfo": 46860888, + "PaymentType": "Cash" + }, + { + "Id": 14099, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2016-12-17T10:08:15", + "TransactionId": 69264097, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 725, + "CustomerInfo": 5498930, + "PaymentType": "Cash" + }, + { + "Id": 14100, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2019-10-19T17:21:07", + "TransactionId": 79663690, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 602, + "CustomerInfo": 9887176, + "PaymentType": "Cash" + }, + { + "Id": 14101, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2018-05-25T15:40:54", + "TransactionId": 27420571, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 705, + "CustomerInfo": 89393165, + "PaymentType": "Debit Card" + }, + { + "Id": 14102, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-10-28T14:38:33", + "TransactionId": 27994406, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 117, + "CustomerInfo": 50592063, + "PaymentType": "Debit Card" + }, + { + "Id": 14103, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2019-08-10T09:13:24", + "TransactionId": 57926306, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 780, + "CustomerInfo": 31347190, + "PaymentType": "Credit Card" + }, + { + "Id": 14104, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2019-03-23T16:49:00", + "TransactionId": 45958034, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 291, + "CustomerInfo": 7551563, + "PaymentType": "Debit Card" + }, + { + "Id": 14105, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2018-06-10T11:35:23", + "TransactionId": 40587833, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 242, + "CustomerInfo": 84654810, + "PaymentType": "Debit Card" + }, + { + "Id": 14106, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2016-03-24T09:09:30", + "TransactionId": 97396497, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 854, + "CustomerInfo": 14505634, + "PaymentType": "Debit Card" + }, + { + "Id": 14107, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2019-05-23T11:15:48", + "TransactionId": 73747535, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 208, + "CustomerInfo": 55720771, + "PaymentType": "Credit Card" + }, + { + "Id": 14108, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2018-11-20T13:15:27", + "TransactionId": 68036134, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 7, + "CustomerInfo": 24561113, + "PaymentType": "Credit Card" + }, + { + "Id": 14109, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2017-07-15T18:50:59", + "TransactionId": 55911319, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 954, + "CustomerInfo": 22289140, + "PaymentType": "Credit Card" + }, + { + "Id": 14110, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-06-23T08:15:56", + "TransactionId": 4386183, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 877, + "CustomerInfo": 69659852, + "PaymentType": "Debit Card" + }, + { + "Id": 14111, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-05-11T11:50:04", + "TransactionId": 95182406, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 101, + "CustomerInfo": 43900870, + "PaymentType": "Cash" + }, + { + "Id": 14112, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-10-24T11:17:14", + "TransactionId": 59203674, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 375, + "CustomerInfo": 35194140, + "PaymentType": "Debit Card" + }, + { + "Id": 14113, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2016-01-24T07:05:23", + "TransactionId": 805153, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 22, + "CustomerInfo": 850620, + "PaymentType": "Credit Card" + }, + { + "Id": 14114, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2017-06-02T19:36:46", + "TransactionId": 78859096, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 462, + "CustomerInfo": 61583844, + "PaymentType": "Cash" + }, + { + "Id": 14115, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2016-06-24T09:29:14", + "TransactionId": 31389890, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 713, + "CustomerInfo": 11161635, + "PaymentType": "Debit Card" + }, + { + "Id": 14116, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2019-07-09T11:17:57", + "TransactionId": 89484058, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 174, + "CustomerInfo": 59989489, + "PaymentType": "Debit Card" + }, + { + "Id": 14117, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2016-02-19T14:59:43", + "TransactionId": 16182088, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 676, + "CustomerInfo": 37487732, + "PaymentType": "Debit Card" + }, + { + "Id": 14118, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2018-03-04T18:43:29", + "TransactionId": 19698737, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 406, + "CustomerInfo": 62843458, + "PaymentType": "Cash" + }, + { + "Id": 14119, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2016-01-15T14:20:50", + "TransactionId": 93609374, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 869, + "CustomerInfo": 82601315, + "PaymentType": "Cash" + }, + { + "Id": 14120, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2017-07-07T15:48:49", + "TransactionId": 58489590, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 422, + "CustomerInfo": 24622420, + "PaymentType": "Credit Card" + }, + { + "Id": 14121, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2017-03-24T08:06:09", + "TransactionId": 77249533, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 535, + "CustomerInfo": 26770564, + "PaymentType": "Debit Card" + }, + { + "Id": 14122, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2016-06-26T17:07:35", + "TransactionId": 17474001, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 554, + "CustomerInfo": 78228066, + "PaymentType": "Debit Card" + }, + { + "Id": 14123, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-11-23T16:00:37", + "TransactionId": 9014079, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 8445988, + "PaymentType": "Debit Card" + }, + { + "Id": 14124, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2017-09-28T09:00:17", + "TransactionId": 20502608, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 6325565, + "PaymentType": "Credit Card" + }, + { + "Id": 14125, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-08-01T15:56:01", + "TransactionId": 96637838, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 598, + "CustomerInfo": 94473977, + "PaymentType": "Debit Card" + }, + { + "Id": 14126, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-09-22T15:37:26", + "TransactionId": 5214728, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 854, + "CustomerInfo": 70334184, + "PaymentType": "Debit Card" + }, + { + "Id": 14127, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2019-06-27T15:48:14", + "TransactionId": 97479753, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 668, + "CustomerInfo": 43084203, + "PaymentType": "Debit Card" + }, + { + "Id": 14128, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2016-11-25T19:38:38", + "TransactionId": 87966569, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 71124607, + "PaymentType": "Credit Card" + }, + { + "Id": 14129, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2016-10-15T14:44:36", + "TransactionId": 33286923, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 670, + "CustomerInfo": 36823504, + "PaymentType": "Cash" + }, + { + "Id": 14130, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-04-17T15:56:53", + "TransactionId": 21379522, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 634, + "CustomerInfo": 30438868, + "PaymentType": "Debit Card" + }, + { + "Id": 14131, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-12-21T19:41:14", + "TransactionId": 11581972, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 675, + "CustomerInfo": 59288241, + "PaymentType": "Debit Card" + }, + { + "Id": 14132, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-04-27T18:24:37", + "TransactionId": 68254878, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 997, + "CustomerInfo": 93706645, + "PaymentType": "Cash" + }, + { + "Id": 14133, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-07-13T17:49:47", + "TransactionId": 630096, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 558, + "CustomerInfo": 43424380, + "PaymentType": "Cash" + }, + { + "Id": 14134, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-05-15T18:20:36", + "TransactionId": 76921956, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 99, + "CustomerInfo": 21881900, + "PaymentType": "Debit Card" + }, + { + "Id": 14135, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-04-12T09:29:48", + "TransactionId": 62310392, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 711, + "CustomerInfo": 12462396, + "PaymentType": "Credit Card" + }, + { + "Id": 14136, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2017-03-19T07:00:29", + "TransactionId": 31465343, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 228, + "CustomerInfo": 7327086, + "PaymentType": "Debit Card" + }, + { + "Id": 14137, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-01-23T12:55:52", + "TransactionId": 73150652, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 747, + "CustomerInfo": 43192496, + "PaymentType": "Debit Card" + }, + { + "Id": 14138, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2019-03-19T12:19:44", + "TransactionId": 87590592, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 627, + "CustomerInfo": 28281640, + "PaymentType": "Credit Card" + }, + { + "Id": 14139, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2017-04-09T13:18:29", + "TransactionId": 91844117, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 666, + "CustomerInfo": 24140332, + "PaymentType": "Cash" + }, + { + "Id": 14140, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2019-04-13T11:49:21", + "TransactionId": 26373617, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 908, + "CustomerInfo": 44270321, + "PaymentType": "Debit Card" + }, + { + "Id": 14141, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2017-11-06T09:21:36", + "TransactionId": 72286275, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 103, + "CustomerInfo": 56472097, + "PaymentType": "Credit Card" + }, + { + "Id": 14142, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-11-10T11:18:23", + "TransactionId": 67552839, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 750, + "CustomerInfo": 62389809, + "PaymentType": "Debit Card" + }, + { + "Id": 14143, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-05-29T18:40:28", + "TransactionId": 97429436, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 458, + "CustomerInfo": 54948097, + "PaymentType": "Debit Card" + }, + { + "Id": 14144, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-01-08T13:31:35", + "TransactionId": 85839954, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 224, + "CustomerInfo": 36481122, + "PaymentType": "Credit Card" + }, + { + "Id": 14145, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2017-05-19T11:36:40", + "TransactionId": 46055322, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 365, + "CustomerInfo": 39396298, + "PaymentType": "Cash" + }, + { + "Id": 14146, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2016-05-26T16:31:26", + "TransactionId": 87688268, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 170, + "CustomerInfo": 8193661, + "PaymentType": "Credit Card" + }, + { + "Id": 14147, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-07-10T08:12:29", + "TransactionId": 93881742, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 513, + "CustomerInfo": 34785823, + "PaymentType": "Credit Card" + }, + { + "Id": 14148, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2017-10-26T09:05:11", + "TransactionId": 147880, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 707, + "CustomerInfo": 18631911, + "PaymentType": "Debit Card" + }, + { + "Id": 14149, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2018-10-15T11:21:59", + "TransactionId": 73786912, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 634, + "CustomerInfo": 68059641, + "PaymentType": "Credit Card" + }, + { + "Id": 14150, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-08-01T19:17:02", + "TransactionId": 81273812, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 186, + "CustomerInfo": 34947735, + "PaymentType": "Cash" + }, + { + "Id": 14151, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2018-11-05T10:13:52", + "TransactionId": 56827052, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 84419422, + "PaymentType": "Credit Card" + }, + { + "Id": 14152, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2016-01-05T10:52:36", + "TransactionId": 15909080, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 649, + "CustomerInfo": 98495481, + "PaymentType": "Cash" + }, + { + "Id": 14153, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2017-01-16T10:21:22", + "TransactionId": 24645224, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 640, + "CustomerInfo": 32911577, + "PaymentType": "Debit Card" + }, + { + "Id": 14154, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-10-13T16:24:32", + "TransactionId": 25225253, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 608, + "CustomerInfo": 12174923, + "PaymentType": "Cash" + }, + { + "Id": 14155, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-11-04T11:32:30", + "TransactionId": 7221299, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 174, + "CustomerInfo": 3891503, + "PaymentType": "Cash" + }, + { + "Id": 14156, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2019-10-01T16:32:27", + "TransactionId": 49775025, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 718, + "CustomerInfo": 33282865, + "PaymentType": "Credit Card" + }, + { + "Id": 14157, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2017-08-28T19:30:52", + "TransactionId": 79100553, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 101, + "CustomerInfo": 59774547, + "PaymentType": "Debit Card" + }, + { + "Id": 14158, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2016-04-01T09:08:56", + "TransactionId": 937491, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 576, + "CustomerInfo": 54530440, + "PaymentType": "Credit Card" + }, + { + "Id": 14159, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2018-12-16T15:13:41", + "TransactionId": 16169716, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 479, + "CustomerInfo": 11059648, + "PaymentType": "Credit Card" + }, + { + "Id": 14160, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2018-02-02T10:01:03", + "TransactionId": 95355989, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 713, + "CustomerInfo": 45327072, + "PaymentType": "Credit Card" + }, + { + "Id": 14161, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-03-20T07:12:43", + "TransactionId": 94270651, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 460, + "CustomerInfo": 78351485, + "PaymentType": "Credit Card" + }, + { + "Id": 14162, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-03-24T16:31:52", + "TransactionId": 77827553, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 630, + "CustomerInfo": 90824661, + "PaymentType": "Cash" + }, + { + "Id": 14163, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2018-05-14T15:01:26", + "TransactionId": 38817937, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 270, + "CustomerInfo": 92091438, + "PaymentType": "Credit Card" + }, + { + "Id": 14164, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2019-04-01T14:29:37", + "TransactionId": 27289525, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 61, + "CustomerInfo": 72638730, + "PaymentType": "Credit Card" + }, + { + "Id": 14165, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2017-06-30T08:31:55", + "TransactionId": 65713307, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 700, + "CustomerInfo": 50524629, + "PaymentType": "Cash" + }, + { + "Id": 14166, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2018-05-22T15:26:38", + "TransactionId": 53315150, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 25247226, + "PaymentType": "Debit Card" + }, + { + "Id": 14167, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-07-24T09:39:01", + "TransactionId": 64300459, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 860, + "CustomerInfo": 95955015, + "PaymentType": "Credit Card" + }, + { + "Id": 14168, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2019-06-17T10:37:38", + "TransactionId": 57757416, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 17, + "CustomerInfo": 38239861, + "PaymentType": "Cash" + }, + { + "Id": 14169, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2019-01-22T09:29:40", + "TransactionId": 40116185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 735, + "CustomerInfo": 28997173, + "PaymentType": "Debit Card" + }, + { + "Id": 14170, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2017-02-24T15:13:15", + "TransactionId": 34939296, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 492, + "CustomerInfo": 18968881, + "PaymentType": "Debit Card" + }, + { + "Id": 14171, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2018-01-05T07:35:20", + "TransactionId": 15775254, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 946, + "CustomerInfo": 41910355, + "PaymentType": "Credit Card" + }, + { + "Id": 14172, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2016-03-30T11:20:50", + "TransactionId": 19956530, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 796, + "CustomerInfo": 84088270, + "PaymentType": "Cash" + }, + { + "Id": 14173, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2018-08-19T19:45:50", + "TransactionId": 45965414, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 40, + "CustomerInfo": 74740938, + "PaymentType": "Debit Card" + }, + { + "Id": 14174, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2016-12-09T10:49:26", + "TransactionId": 300362, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 590, + "CustomerInfo": 98133327, + "PaymentType": "Debit Card" + }, + { + "Id": 14175, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2019-04-09T13:24:14", + "TransactionId": 90837946, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 128, + "CustomerInfo": 62173535, + "PaymentType": "Debit Card" + }, + { + "Id": 14176, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2018-11-28T12:36:17", + "TransactionId": 88369438, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 810, + "CustomerInfo": 22959540, + "PaymentType": "Cash" + }, + { + "Id": 14177, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2018-06-11T12:16:42", + "TransactionId": 44738995, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 208, + "CustomerInfo": 47215924, + "PaymentType": "Debit Card" + }, + { + "Id": 14178, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2016-05-05T08:17:23", + "TransactionId": 44367318, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 516, + "CustomerInfo": 27374085, + "PaymentType": "Cash" + }, + { + "Id": 14179, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2016-11-03T17:49:21", + "TransactionId": 64939531, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 262, + "CustomerInfo": 74286728, + "PaymentType": "Credit Card" + }, + { + "Id": 14180, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2018-06-21T07:55:29", + "TransactionId": 70470888, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 591, + "CustomerInfo": 52902491, + "PaymentType": "Credit Card" + }, + { + "Id": 14181, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-06-02T07:31:52", + "TransactionId": 81687651, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 135, + "CustomerInfo": 67876520, + "PaymentType": "Credit Card" + }, + { + "Id": 14182, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2019-04-04T14:59:25", + "TransactionId": 63831719, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 625, + "CustomerInfo": 52381571, + "PaymentType": "Cash" + }, + { + "Id": 14183, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-04-10T18:49:06", + "TransactionId": 40381803, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 384, + "CustomerInfo": 78680388, + "PaymentType": "Credit Card" + }, + { + "Id": 14184, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-01-29T09:26:47", + "TransactionId": 59871817, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 890, + "CustomerInfo": 36616769, + "PaymentType": "Debit Card" + }, + { + "Id": 14185, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-01-11T19:05:31", + "TransactionId": 63786414, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 71, + "CustomerInfo": 15007002, + "PaymentType": "Cash" + }, + { + "Id": 14186, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2016-09-16T19:34:45", + "TransactionId": 50219852, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 841, + "CustomerInfo": 53470215, + "PaymentType": "Credit Card" + }, + { + "Id": 14187, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2017-04-17T19:14:27", + "TransactionId": 79480275, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 246, + "CustomerInfo": 6379942, + "PaymentType": "Cash" + }, + { + "Id": 14188, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2017-04-13T13:52:28", + "TransactionId": 86727540, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 457, + "CustomerInfo": 92642461, + "PaymentType": "Cash" + }, + { + "Id": 14189, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2017-03-22T09:08:38", + "TransactionId": 34410855, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 844, + "CustomerInfo": 23695282, + "PaymentType": "Debit Card" + }, + { + "Id": 14190, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2018-09-27T07:36:55", + "TransactionId": 76982898, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 797, + "CustomerInfo": 87708103, + "PaymentType": "Cash" + }, + { + "Id": 14191, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-06-17T17:10:54", + "TransactionId": 62203759, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 345, + "CustomerInfo": 59994197, + "PaymentType": "Credit Card" + }, + { + "Id": 14192, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-09-03T07:51:27", + "TransactionId": 43740117, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 18, + "CustomerInfo": 40048517, + "PaymentType": "Cash" + }, + { + "Id": 14193, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-12-23T13:58:39", + "TransactionId": 71923182, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 331, + "CustomerInfo": 60415552, + "PaymentType": "Credit Card" + }, + { + "Id": 14194, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2018-05-08T07:40:48", + "TransactionId": 4079265, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 151, + "CustomerInfo": 44260941, + "PaymentType": "Cash" + }, + { + "Id": 14195, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-12-19T17:05:51", + "TransactionId": 67097601, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 789, + "CustomerInfo": 78855274, + "PaymentType": "Cash" + }, + { + "Id": 14196, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2016-03-05T16:14:44", + "TransactionId": 96557356, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 628, + "CustomerInfo": 96294367, + "PaymentType": "Debit Card" + }, + { + "Id": 14197, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-03-17T16:42:06", + "TransactionId": 62186185, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 768, + "CustomerInfo": 14598004, + "PaymentType": "Cash" + }, + { + "Id": 14198, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2017-08-25T15:58:19", + "TransactionId": 59344622, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 324, + "CustomerInfo": 45414532, + "PaymentType": "Debit Card" + }, + { + "Id": 14199, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2017-04-18T13:10:42", + "TransactionId": 47891687, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 650, + "CustomerInfo": 54118046, + "PaymentType": "Cash" + }, + { + "Id": 14200, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2016-11-27T14:20:24", + "TransactionId": 51070347, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 851, + "CustomerInfo": 24310014, + "PaymentType": "Credit Card" + }, + { + "Id": 14201, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-08-30T14:58:51", + "TransactionId": 2449524, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 71597122, + "PaymentType": "Credit Card" + }, + { + "Id": 14202, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2019-06-18T10:01:55", + "TransactionId": 25120170, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 234, + "CustomerInfo": 69765564, + "PaymentType": "Credit Card" + }, + { + "Id": 14203, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-07-15T08:07:52", + "TransactionId": 40833533, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 779, + "CustomerInfo": 2982637, + "PaymentType": "Debit Card" + }, + { + "Id": 14204, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-02-29T11:36:49", + "TransactionId": 75947097, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 642, + "CustomerInfo": 74277310, + "PaymentType": "Credit Card" + }, + { + "Id": 14205, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2019-01-15T13:45:07", + "TransactionId": 50420922, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 507, + "CustomerInfo": 96915900, + "PaymentType": "Credit Card" + }, + { + "Id": 14206, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-12-19T12:24:46", + "TransactionId": 69818363, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 214, + "CustomerInfo": 55550422, + "PaymentType": "Debit Card" + }, + { + "Id": 14207, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2018-04-27T17:15:30", + "TransactionId": 90666741, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 446, + "CustomerInfo": 76601190, + "PaymentType": "Credit Card" + }, + { + "Id": 14208, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-11-24T18:43:21", + "TransactionId": 90427555, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 764, + "CustomerInfo": 25421757, + "PaymentType": "Credit Card" + }, + { + "Id": 14209, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2017-11-24T15:24:29", + "TransactionId": 21805684, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 926, + "CustomerInfo": 13828760, + "PaymentType": "Credit Card" + }, + { + "Id": 14210, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-05-07T13:32:01", + "TransactionId": 7248416, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 28, + "CustomerInfo": 50576775, + "PaymentType": "Debit Card" + }, + { + "Id": 14211, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2018-06-05T17:17:57", + "TransactionId": 51793670, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 633, + "CustomerInfo": 55934161, + "PaymentType": "Debit Card" + }, + { + "Id": 14212, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2017-05-18T15:22:54", + "TransactionId": 44304591, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 247, + "CustomerInfo": 43796416, + "PaymentType": "Credit Card" + }, + { + "Id": 14213, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-12-13T11:28:28", + "TransactionId": 57944480, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 802, + "CustomerInfo": 32513571, + "PaymentType": "Debit Card" + }, + { + "Id": 14214, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-08-31T18:23:37", + "TransactionId": 94048856, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 695, + "CustomerInfo": 86153224, + "PaymentType": "Debit Card" + }, + { + "Id": 14215, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-05-27T07:54:55", + "TransactionId": 16947307, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 187, + "CustomerInfo": 138751, + "PaymentType": "Credit Card" + }, + { + "Id": 14216, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2019-12-02T08:39:42", + "TransactionId": 8178840, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 235, + "CustomerInfo": 14412291, + "PaymentType": "Debit Card" + }, + { + "Id": 14217, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-09-13T15:22:36", + "TransactionId": 61033864, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 150, + "CustomerInfo": 95033855, + "PaymentType": "Credit Card" + }, + { + "Id": 14218, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2019-03-04T16:22:22", + "TransactionId": 66565340, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 468, + "CustomerInfo": 66315585, + "PaymentType": "Debit Card" + }, + { + "Id": 14219, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2018-07-08T14:10:19", + "TransactionId": 70711064, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 26, + "CustomerInfo": 90012141, + "PaymentType": "Credit Card" + }, + { + "Id": 14220, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2016-02-28T14:49:47", + "TransactionId": 95022515, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 696, + "CustomerInfo": 92366233, + "PaymentType": "Credit Card" + }, + { + "Id": 14221, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-03-05T09:02:01", + "TransactionId": 95612920, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 215, + "CustomerInfo": 23766144, + "PaymentType": "Credit Card" + }, + { + "Id": 14222, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2019-04-25T19:40:57", + "TransactionId": 71625616, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 725, + "CustomerInfo": 22225017, + "PaymentType": "Cash" + }, + { + "Id": 14223, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-06-03T16:27:50", + "TransactionId": 25464365, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 191, + "CustomerInfo": 79026563, + "PaymentType": "Debit Card" + }, + { + "Id": 14224, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2017-05-09T10:37:12", + "TransactionId": 27694093, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 470, + "CustomerInfo": 88660971, + "PaymentType": "Debit Card" + }, + { + "Id": 14225, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2016-09-29T10:05:23", + "TransactionId": 8485823, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 287, + "CustomerInfo": 19318394, + "PaymentType": "Cash" + }, + { + "Id": 14226, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-11-04T17:39:33", + "TransactionId": 63281050, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 172, + "CustomerInfo": 65415673, + "PaymentType": "Credit Card" + }, + { + "Id": 14227, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-03-08T09:02:10", + "TransactionId": 9437347, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 161, + "CustomerInfo": 78821651, + "PaymentType": "Credit Card" + }, + { + "Id": 14228, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-07-14T07:59:05", + "TransactionId": 66944348, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 110, + "CustomerInfo": 97667554, + "PaymentType": "Debit Card" + }, + { + "Id": 14229, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2019-10-13T17:45:36", + "TransactionId": 51741853, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 203, + "CustomerInfo": 69648435, + "PaymentType": "Cash" + }, + { + "Id": 14230, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-08-29T13:35:20", + "TransactionId": 11870616, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 523, + "CustomerInfo": 22485211, + "PaymentType": "Debit Card" + }, + { + "Id": 14231, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-01-20T14:24:17", + "TransactionId": 63452095, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 892, + "CustomerInfo": 51478281, + "PaymentType": "Credit Card" + }, + { + "Id": 14232, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2018-06-22T14:32:47", + "TransactionId": 69138570, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 100, + "CustomerInfo": 94662646, + "PaymentType": "Credit Card" + }, + { + "Id": 14233, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2019-11-02T19:51:27", + "TransactionId": 488998, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 89, + "CustomerInfo": 86662839, + "PaymentType": "Cash" + }, + { + "Id": 14234, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2017-07-10T10:06:40", + "TransactionId": 61555523, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 592, + "CustomerInfo": 99363258, + "PaymentType": "Debit Card" + }, + { + "Id": 14235, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2016-01-27T15:30:14", + "TransactionId": 87744230, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 51, + "CustomerInfo": 84999260, + "PaymentType": "Credit Card" + }, + { + "Id": 14236, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2017-06-02T10:05:14", + "TransactionId": 54714941, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 341, + "CustomerInfo": 21986599, + "PaymentType": "Debit Card" + }, + { + "Id": 14237, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-01-22T11:07:52", + "TransactionId": 79772734, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 134, + "CustomerInfo": 33511877, + "PaymentType": "Credit Card" + }, + { + "Id": 14238, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-02-12T11:49:03", + "TransactionId": 51097476, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 771, + "CustomerInfo": 20713881, + "PaymentType": "Cash" + }, + { + "Id": 14239, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-08-01T12:51:16", + "TransactionId": 43119353, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 283, + "CustomerInfo": 30147740, + "PaymentType": "Credit Card" + }, + { + "Id": 14240, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2016-04-25T15:28:31", + "TransactionId": 59439338, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 563, + "CustomerInfo": 68860046, + "PaymentType": "Credit Card" + }, + { + "Id": 14241, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-05-24T16:19:03", + "TransactionId": 21524166, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 118, + "CustomerInfo": 2221741, + "PaymentType": "Debit Card" + }, + { + "Id": 14242, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-09-10T18:39:53", + "TransactionId": 1718108, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 477, + "CustomerInfo": 15160011, + "PaymentType": "Credit Card" + }, + { + "Id": 14243, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-07-22T13:06:06", + "TransactionId": 36732786, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 43, + "CustomerInfo": 90147949, + "PaymentType": "Debit Card" + }, + { + "Id": 14244, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2018-09-22T13:16:28", + "TransactionId": 7784428, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 747, + "CustomerInfo": 84590376, + "PaymentType": "Debit Card" + }, + { + "Id": 14245, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2016-09-14T12:16:42", + "TransactionId": 79628713, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 68, + "CustomerInfo": 76612924, + "PaymentType": "Cash" + }, + { + "Id": 14246, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-05-03T12:46:05", + "TransactionId": 60076188, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 354, + "CustomerInfo": 77747473, + "PaymentType": "Debit Card" + }, + { + "Id": 14247, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-12-31T10:40:31", + "TransactionId": 51742262, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 60, + "CustomerInfo": 96091081, + "PaymentType": "Cash" + }, + { + "Id": 14248, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2018-11-21T07:51:53", + "TransactionId": 47889149, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 671, + "CustomerInfo": 99884669, + "PaymentType": "Credit Card" + }, + { + "Id": 14249, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2018-04-23T09:46:13", + "TransactionId": 32554170, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 901, + "CustomerInfo": 60219068, + "PaymentType": "Debit Card" + }, + { + "Id": 14250, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-09-01T10:49:44", + "TransactionId": 22856098, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 865, + "CustomerInfo": 37374952, + "PaymentType": "Cash" + }, + { + "Id": 14251, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2018-09-09T12:12:06", + "TransactionId": 77874362, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 285, + "CustomerInfo": 7587280, + "PaymentType": "Debit Card" + }, + { + "Id": 14252, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2018-03-13T16:53:46", + "TransactionId": 35106613, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 786, + "CustomerInfo": 5128159, + "PaymentType": "Cash" + }, + { + "Id": 14253, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-09-05T19:33:10", + "TransactionId": 48738072, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 134, + "CustomerInfo": 45959017, + "PaymentType": "Debit Card" + }, + { + "Id": 14254, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-01-02T19:37:12", + "TransactionId": 67474561, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 75, + "CustomerInfo": 42845828, + "PaymentType": "Credit Card" + }, + { + "Id": 14255, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2016-05-07T13:02:12", + "TransactionId": 12558904, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 263, + "CustomerInfo": 75886490, + "PaymentType": "Credit Card" + }, + { + "Id": 14256, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2017-06-03T07:57:39", + "TransactionId": 93712886, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 719, + "CustomerInfo": 56556712, + "PaymentType": "Cash" + }, + { + "Id": 14257, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-09-17T11:12:37", + "TransactionId": 61059748, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 329, + "CustomerInfo": 3975774, + "PaymentType": "Cash" + }, + { + "Id": 14258, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2016-01-12T19:21:39", + "TransactionId": 45959948, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 989, + "CustomerInfo": 38021165, + "PaymentType": "Debit Card" + }, + { + "Id": 14259, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-07-05T18:14:41", + "TransactionId": 87789829, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 520, + "CustomerInfo": 38455903, + "PaymentType": "Cash" + }, + { + "Id": 14260, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-08-31T15:29:05", + "TransactionId": 27750619, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 486, + "CustomerInfo": 25756087, + "PaymentType": "Credit Card" + }, + { + "Id": 14261, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2019-03-11T13:24:32", + "TransactionId": 97176980, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 510, + "CustomerInfo": 75160553, + "PaymentType": "Debit Card" + }, + { + "Id": 14262, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-02-17T15:45:30", + "TransactionId": 65449797, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 354, + "CustomerInfo": 63453818, + "PaymentType": "Cash" + }, + { + "Id": 14263, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2017-06-08T12:58:28", + "TransactionId": 70690668, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 73491877, + "PaymentType": "Credit Card" + }, + { + "Id": 14264, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-01-17T14:16:57", + "TransactionId": 72299258, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 7089674, + "PaymentType": "Cash" + }, + { + "Id": 14265, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-03-19T16:11:43", + "TransactionId": 12191509, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 542, + "CustomerInfo": 88073707, + "PaymentType": "Credit Card" + }, + { + "Id": 14266, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2016-01-25T09:30:40", + "TransactionId": 92239682, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 913, + "CustomerInfo": 51457594, + "PaymentType": "Credit Card" + }, + { + "Id": 14267, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-06-08T07:19:55", + "TransactionId": 10240583, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 852, + "CustomerInfo": 94557292, + "PaymentType": "Credit Card" + }, + { + "Id": 14268, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-01-14T16:54:37", + "TransactionId": 20899858, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 7720314, + "PaymentType": "Credit Card" + }, + { + "Id": 14269, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-11-15T12:50:41", + "TransactionId": 63827985, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 414, + "CustomerInfo": 45049859, + "PaymentType": "Credit Card" + }, + { + "Id": 14270, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-04-04T17:01:15", + "TransactionId": 17099203, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 941, + "CustomerInfo": 25850581, + "PaymentType": "Debit Card" + }, + { + "Id": 14271, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2016-10-26T15:01:44", + "TransactionId": 84703035, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 96, + "CustomerInfo": 15823320, + "PaymentType": "Credit Card" + }, + { + "Id": 14272, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2016-07-02T11:49:03", + "TransactionId": 96236363, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 664, + "CustomerInfo": 78873725, + "PaymentType": "Debit Card" + }, + { + "Id": 14273, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-02-01T17:49:38", + "TransactionId": 78271103, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 905, + "CustomerInfo": 3634273, + "PaymentType": "Debit Card" + }, + { + "Id": 14274, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2017-09-06T13:52:11", + "TransactionId": 89130253, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 66, + "CustomerInfo": 58558320, + "PaymentType": "Debit Card" + }, + { + "Id": 14275, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-03-04T14:07:09", + "TransactionId": 20330186, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 719, + "CustomerInfo": 5795317, + "PaymentType": "Debit Card" + }, + { + "Id": 14276, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-06-10T10:39:56", + "TransactionId": 33320559, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 689, + "CustomerInfo": 96980628, + "PaymentType": "Debit Card" + }, + { + "Id": 14277, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-09-08T15:28:31", + "TransactionId": 84528538, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 497, + "CustomerInfo": 8277355, + "PaymentType": "Cash" + }, + { + "Id": 14278, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2016-05-26T19:15:27", + "TransactionId": 73041488, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 68, + "CustomerInfo": 90748549, + "PaymentType": "Debit Card" + }, + { + "Id": 14279, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2019-06-16T13:18:55", + "TransactionId": 92633087, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 195, + "CustomerInfo": 79321209, + "PaymentType": "Debit Card" + }, + { + "Id": 14280, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-08-03T17:24:35", + "TransactionId": 5792889, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 943, + "CustomerInfo": 38577491, + "PaymentType": "Debit Card" + }, + { + "Id": 14281, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-08-11T11:22:42", + "TransactionId": 93295554, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 130, + "CustomerInfo": 54675332, + "PaymentType": "Debit Card" + }, + { + "Id": 14282, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-11-22T13:29:08", + "TransactionId": 8874344, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 960, + "CustomerInfo": 294324, + "PaymentType": "Debit Card" + }, + { + "Id": 14283, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2018-02-26T13:17:37", + "TransactionId": 56072307, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 330, + "CustomerInfo": 25940281, + "PaymentType": "Debit Card" + }, + { + "Id": 14284, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-07-13T08:42:35", + "TransactionId": 42827877, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 39, + "CustomerInfo": 72485870, + "PaymentType": "Cash" + }, + { + "Id": 14285, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2016-12-05T19:00:20", + "TransactionId": 59287398, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 382, + "CustomerInfo": 12646224, + "PaymentType": "Cash" + }, + { + "Id": 14286, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2016-11-17T18:46:31", + "TransactionId": 35534265, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 437, + "CustomerInfo": 7940914, + "PaymentType": "Cash" + }, + { + "Id": 14287, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2019-09-22T08:04:42", + "TransactionId": 15378439, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 679, + "CustomerInfo": 45277013, + "PaymentType": "Cash" + }, + { + "Id": 14288, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-07-08T18:27:04", + "TransactionId": 5668196, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 623, + "CustomerInfo": 35809626, + "PaymentType": "Credit Card" + }, + { + "Id": 14289, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2019-06-09T09:16:25", + "TransactionId": 28475001, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 50, + "CustomerInfo": 43157612, + "PaymentType": "Cash" + }, + { + "Id": 14290, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-07-24T11:33:22", + "TransactionId": 80841308, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 863, + "CustomerInfo": 38142776, + "PaymentType": "Debit Card" + }, + { + "Id": 14291, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2018-03-06T14:14:47", + "TransactionId": 12293331, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 334, + "CustomerInfo": 21783478, + "PaymentType": "Debit Card" + }, + { + "Id": 14292, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2019-12-13T09:26:21", + "TransactionId": 23429364, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 899, + "CustomerInfo": 90650334, + "PaymentType": "Debit Card" + }, + { + "Id": 14293, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2016-03-03T11:19:32", + "TransactionId": 26573223, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 689, + "CustomerInfo": 16234364, + "PaymentType": "Credit Card" + }, + { + "Id": 14294, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-12-26T15:42:03", + "TransactionId": 81783198, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 248, + "CustomerInfo": 68111180, + "PaymentType": "Cash" + }, + { + "Id": 14295, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2016-04-23T16:26:15", + "TransactionId": 9129388, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 429, + "CustomerInfo": 97756536, + "PaymentType": "Credit Card" + }, + { + "Id": 14296, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2017-09-24T13:09:50", + "TransactionId": 35446813, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 143, + "CustomerInfo": 27335675, + "PaymentType": "Debit Card" + }, + { + "Id": 14297, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-12-23T08:26:18", + "TransactionId": 78764590, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 86, + "CustomerInfo": 84019684, + "PaymentType": "Debit Card" + }, + { + "Id": 14298, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2018-04-16T16:02:21", + "TransactionId": 3602694, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 439, + "CustomerInfo": 77288684, + "PaymentType": "Cash" + }, + { + "Id": 14299, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2017-09-29T09:01:00", + "TransactionId": 77669273, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 33251372, + "PaymentType": "Cash" + }, + { + "Id": 14300, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2019-07-26T07:22:48", + "TransactionId": 59609804, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 899, + "CustomerInfo": 26378667, + "PaymentType": "Debit Card" + }, + { + "Id": 14301, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2016-07-10T08:54:06", + "TransactionId": 63335103, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 106, + "CustomerInfo": 15538953, + "PaymentType": "Debit Card" + }, + { + "Id": 14302, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2016-04-25T10:44:15", + "TransactionId": 59862875, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 416, + "CustomerInfo": 61718684, + "PaymentType": "Cash" + }, + { + "Id": 14303, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2019-11-05T18:20:27", + "TransactionId": 7449482, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 218, + "CustomerInfo": 38220448, + "PaymentType": "Cash" + }, + { + "Id": 14304, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2016-03-05T19:09:33", + "TransactionId": 27684173, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 839, + "CustomerInfo": 99161786, + "PaymentType": "Debit Card" + }, + { + "Id": 14305, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2018-03-08T15:46:05", + "TransactionId": 32439934, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 290, + "CustomerInfo": 89510511, + "PaymentType": "Credit Card" + }, + { + "Id": 14306, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2016-09-23T13:50:53", + "TransactionId": 63405968, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 35, + "CustomerInfo": 45994182, + "PaymentType": "Debit Card" + }, + { + "Id": 14307, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2018-03-28T13:50:10", + "TransactionId": 6233570, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 358, + "CustomerInfo": 52426833, + "PaymentType": "Debit Card" + }, + { + "Id": 14308, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-09-29T17:20:15", + "TransactionId": 78965380, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 341, + "CustomerInfo": 43986390, + "PaymentType": "Debit Card" + }, + { + "Id": 14309, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2017-02-10T12:40:28", + "TransactionId": 34970123, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 945, + "CustomerInfo": 76978484, + "PaymentType": "Cash" + }, + { + "Id": 14310, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-07-05T10:38:21", + "TransactionId": 39674716, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 926, + "CustomerInfo": 98594619, + "PaymentType": "Debit Card" + }, + { + "Id": 14311, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2017-04-01T17:46:54", + "TransactionId": 69720032, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 358, + "CustomerInfo": 93865034, + "PaymentType": "Debit Card" + }, + { + "Id": 14312, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-12-11T19:15:53", + "TransactionId": 40067909, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 432, + "CustomerInfo": 89940126, + "PaymentType": "Cash" + }, + { + "Id": 14313, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2016-05-23T11:20:24", + "TransactionId": 44210093, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 721, + "CustomerInfo": 43200829, + "PaymentType": "Credit Card" + }, + { + "Id": 14314, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-07-01T15:33:24", + "TransactionId": 24211910, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 563, + "CustomerInfo": 70625477, + "PaymentType": "Debit Card" + }, + { + "Id": 14315, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2019-11-24T14:54:06", + "TransactionId": 91741804, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 105, + "CustomerInfo": 28620078, + "PaymentType": "Cash" + }, + { + "Id": 14316, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-10-03T12:20:18", + "TransactionId": 8747325, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 999, + "CustomerInfo": 83669512, + "PaymentType": "Cash" + }, + { + "Id": 14317, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2018-03-22T09:10:57", + "TransactionId": 18714386, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 511, + "CustomerInfo": 74460969, + "PaymentType": "Credit Card" + }, + { + "Id": 14318, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-09-02T11:27:27", + "TransactionId": 74767781, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 521, + "CustomerInfo": 24592849, + "PaymentType": "Debit Card" + }, + { + "Id": 14319, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-03-13T14:52:48", + "TransactionId": 26429824, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 469, + "CustomerInfo": 83383697, + "PaymentType": "Credit Card" + }, + { + "Id": 14320, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-05-10T19:49:26", + "TransactionId": 7858964, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 201, + "CustomerInfo": 53997423, + "PaymentType": "Credit Card" + }, + { + "Id": 14321, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-12-03T16:28:51", + "TransactionId": 97898721, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 273, + "CustomerInfo": 34098265, + "PaymentType": "Credit Card" + }, + { + "Id": 14322, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2018-11-11T15:33:16", + "TransactionId": 74043627, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 47, + "CustomerInfo": 24452397, + "PaymentType": "Credit Card" + }, + { + "Id": 14323, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2017-03-18T09:14:59", + "TransactionId": 75984873, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 161, + "CustomerInfo": 92822493, + "PaymentType": "Cash" + }, + { + "Id": 14324, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2018-06-21T18:03:53", + "TransactionId": 47708375, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 967, + "CustomerInfo": 76638340, + "PaymentType": "Debit Card" + }, + { + "Id": 14325, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2019-08-05T15:58:45", + "TransactionId": 59098593, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 887, + "CustomerInfo": 57737502, + "PaymentType": "Cash" + }, + { + "Id": 14326, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2016-12-22T09:47:31", + "TransactionId": 49316785, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 614, + "CustomerInfo": 1846757, + "PaymentType": "Cash" + }, + { + "Id": 14327, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2016-10-13T19:28:16", + "TransactionId": 92402777, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 80329146, + "PaymentType": "Cash" + }, + { + "Id": 14328, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-04-28T08:53:14", + "TransactionId": 73456558, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 377, + "CustomerInfo": 67073466, + "PaymentType": "Credit Card" + }, + { + "Id": 14329, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2017-04-03T11:25:18", + "TransactionId": 3897884, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 246, + "CustomerInfo": 27647218, + "PaymentType": "Credit Card" + }, + { + "Id": 14330, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2018-03-09T10:21:30", + "TransactionId": 98220370, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 66, + "CustomerInfo": 16375371, + "PaymentType": "Cash" + }, + { + "Id": 14331, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2018-05-06T10:27:24", + "TransactionId": 38099111, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 186, + "CustomerInfo": 59385716, + "PaymentType": "Debit Card" + }, + { + "Id": 14332, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2016-05-23T10:20:12", + "TransactionId": 44325646, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 376, + "CustomerInfo": 4802640, + "PaymentType": "Credit Card" + }, + { + "Id": 14333, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-08-04T17:07:09", + "TransactionId": 15803691, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 313, + "CustomerInfo": 51674130, + "PaymentType": "Debit Card" + }, + { + "Id": 14334, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-06-14T16:34:54", + "TransactionId": 69307152, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 481, + "CustomerInfo": 69582126, + "PaymentType": "Cash" + }, + { + "Id": 14335, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2016-08-10T10:36:12", + "TransactionId": 44804566, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 624, + "CustomerInfo": 18017847, + "PaymentType": "Cash" + }, + { + "Id": 14336, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2019-02-11T07:02:38", + "TransactionId": 81840986, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 710, + "CustomerInfo": 48589352, + "PaymentType": "Debit Card" + }, + { + "Id": 14337, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2016-02-12T09:13:49", + "TransactionId": 67642544, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 3, + "CustomerInfo": 13021136, + "PaymentType": "Debit Card" + }, + { + "Id": 14338, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2016-01-06T14:22:34", + "TransactionId": 31926332, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 13216714, + "PaymentType": "Cash" + }, + { + "Id": 14339, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-04-21T14:07:44", + "TransactionId": 4871308, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 851, + "CustomerInfo": 65301765, + "PaymentType": "Credit Card" + }, + { + "Id": 14340, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2016-05-29T18:24:20", + "TransactionId": 97829391, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 92702614, + "PaymentType": "Credit Card" + }, + { + "Id": 14341, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2017-11-30T17:39:16", + "TransactionId": 63745740, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 626, + "CustomerInfo": 12881196, + "PaymentType": "Cash" + }, + { + "Id": 14342, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2019-03-03T12:02:53", + "TransactionId": 60290596, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 297, + "CustomerInfo": 17212174, + "PaymentType": "Debit Card" + }, + { + "Id": 14343, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2018-01-29T18:31:32", + "TransactionId": 34936163, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 219, + "CustomerInfo": 8892495, + "PaymentType": "Cash" + }, + { + "Id": 14344, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-10-21T13:19:55", + "TransactionId": 21347884, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 168, + "CustomerInfo": 91242384, + "PaymentType": "Credit Card" + }, + { + "Id": 14345, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2016-10-19T12:02:10", + "TransactionId": 32120186, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 274, + "CustomerInfo": 92723920, + "PaymentType": "Debit Card" + }, + { + "Id": 14346, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2017-05-13T15:50:33", + "TransactionId": 95799516, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 553, + "CustomerInfo": 90711323, + "PaymentType": "Cash" + }, + { + "Id": 14347, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-09-27T09:17:51", + "TransactionId": 83265074, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 185, + "CustomerInfo": 10210593, + "PaymentType": "Debit Card" + }, + { + "Id": 14348, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-07-05T15:32:24", + "TransactionId": 47807821, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 512, + "CustomerInfo": 3964887, + "PaymentType": "Debit Card" + }, + { + "Id": 14349, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2019-03-22T07:44:07", + "TransactionId": 38248646, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 262, + "CustomerInfo": 97234317, + "PaymentType": "Cash" + }, + { + "Id": 14350, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-11-10T08:19:58", + "TransactionId": 95866748, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 611, + "CustomerInfo": 69310291, + "PaymentType": "Debit Card" + }, + { + "Id": 14351, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2017-09-10T12:14:41", + "TransactionId": 55150907, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 461, + "CustomerInfo": 51171450, + "PaymentType": "Cash" + }, + { + "Id": 14352, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2016-08-27T07:51:45", + "TransactionId": 86568828, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 579, + "CustomerInfo": 66078128, + "PaymentType": "Cash" + }, + { + "Id": 14353, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-07-30T19:54:37", + "TransactionId": 25615435, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 377, + "CustomerInfo": 3548032, + "PaymentType": "Debit Card" + }, + { + "Id": 14354, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-04-26T15:07:38", + "TransactionId": 78910218, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 469, + "CustomerInfo": 97002469, + "PaymentType": "Debit Card" + }, + { + "Id": 14355, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2019-10-08T10:13:26", + "TransactionId": 96520576, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 623, + "CustomerInfo": 83063236, + "PaymentType": "Credit Card" + }, + { + "Id": 14356, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-12-17T10:36:46", + "TransactionId": 83215233, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 174, + "CustomerInfo": 16856568, + "PaymentType": "Credit Card" + }, + { + "Id": 14357, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2016-12-08T19:26:50", + "TransactionId": 68240878, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 11, + "CustomerInfo": 84670791, + "PaymentType": "Debit Card" + }, + { + "Id": 14358, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2016-09-10T10:11:25", + "TransactionId": 8010413, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 678, + "CustomerInfo": 47251151, + "PaymentType": "Credit Card" + }, + { + "Id": 14359, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2018-03-17T10:40:22", + "TransactionId": 76679555, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 100, + "CustomerInfo": 40408099, + "PaymentType": "Credit Card" + }, + { + "Id": 14360, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-04-07T07:49:00", + "TransactionId": 60172557, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 533, + "CustomerInfo": 35434539, + "PaymentType": "Credit Card" + }, + { + "Id": 14361, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2016-11-29T17:05:43", + "TransactionId": 21999045, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 291, + "CustomerInfo": 42461374, + "PaymentType": "Debit Card" + }, + { + "Id": 14362, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2019-02-14T14:47:11", + "TransactionId": 73690184, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 147, + "CustomerInfo": 56519979, + "PaymentType": "Cash" + }, + { + "Id": 14363, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-10-15T18:45:56", + "TransactionId": 54674337, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 693, + "CustomerInfo": 55883019, + "PaymentType": "Debit Card" + }, + { + "Id": 14364, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-02-19T19:43:49", + "TransactionId": 89382123, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 790, + "CustomerInfo": 77716476, + "PaymentType": "Cash" + }, + { + "Id": 14365, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2018-07-05T09:28:13", + "TransactionId": 91450087, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 583, + "CustomerInfo": 56825833, + "PaymentType": "Credit Card" + }, + { + "Id": 14366, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2017-11-26T13:45:50", + "TransactionId": 9215612, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 862, + "CustomerInfo": 9127060, + "PaymentType": "Cash" + }, + { + "Id": 14367, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2018-05-09T10:38:21", + "TransactionId": 25850097, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 348, + "CustomerInfo": 81150240, + "PaymentType": "Debit Card" + }, + { + "Id": 14368, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-10-29T13:18:55", + "TransactionId": 51383687, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 61609637, + "PaymentType": "Debit Card" + }, + { + "Id": 14369, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2016-11-24T07:29:43", + "TransactionId": 65587639, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 989, + "CustomerInfo": 16765011, + "PaymentType": "Debit Card" + }, + { + "Id": 14370, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-06-30T19:28:08", + "TransactionId": 23489283, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 398, + "CustomerInfo": 7923805, + "PaymentType": "Credit Card" + }, + { + "Id": 14371, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2017-11-03T17:50:56", + "TransactionId": 18009169, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 457, + "CustomerInfo": 49389654, + "PaymentType": "Debit Card" + }, + { + "Id": 14372, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2017-01-28T08:22:51", + "TransactionId": 61538496, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 265, + "CustomerInfo": 598226, + "PaymentType": "Debit Card" + }, + { + "Id": 14373, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2017-07-08T13:03:48", + "TransactionId": 4021179, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 402, + "CustomerInfo": 22975812, + "PaymentType": "Debit Card" + }, + { + "Id": 14374, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-09-27T11:30:55", + "TransactionId": 49334801, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 625, + "CustomerInfo": 19900297, + "PaymentType": "Credit Card" + }, + { + "Id": 14375, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-05-14T13:51:19", + "TransactionId": 53181554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 375, + "CustomerInfo": 72448270, + "PaymentType": "Debit Card" + }, + { + "Id": 14376, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2018-11-23T17:00:14", + "TransactionId": 18129386, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 255, + "CustomerInfo": 79665078, + "PaymentType": "Debit Card" + }, + { + "Id": 14377, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2016-09-09T12:42:55", + "TransactionId": 90747454, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 708, + "CustomerInfo": 29086567, + "PaymentType": "Debit Card" + }, + { + "Id": 14378, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2018-09-23T16:49:44", + "TransactionId": 4039779, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 89, + "CustomerInfo": 91599255, + "PaymentType": "Cash" + }, + { + "Id": 14379, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2019-05-26T14:09:10", + "TransactionId": 82130926, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 427, + "CustomerInfo": 17307515, + "PaymentType": "Debit Card" + }, + { + "Id": 14380, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-12-16T17:00:06", + "TransactionId": 39550870, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 607, + "CustomerInfo": 40550740, + "PaymentType": "Debit Card" + }, + { + "Id": 14381, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2018-02-19T10:09:50", + "TransactionId": 97719949, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 335, + "CustomerInfo": 74366073, + "PaymentType": "Debit Card" + }, + { + "Id": 14382, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-12-17T17:44:44", + "TransactionId": 91016181, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 624, + "CustomerInfo": 32428827, + "PaymentType": "Credit Card" + }, + { + "Id": 14383, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2018-09-13T18:48:23", + "TransactionId": 35065745, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 293, + "CustomerInfo": 86146688, + "PaymentType": "Cash" + }, + { + "Id": 14384, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2019-10-16T17:47:46", + "TransactionId": 30068100, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 937, + "CustomerInfo": 45014080, + "PaymentType": "Credit Card" + }, + { + "Id": 14385, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2018-05-03T18:38:01", + "TransactionId": 16309068, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 471, + "CustomerInfo": 78351875, + "PaymentType": "Cash" + }, + { + "Id": 14386, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2019-12-28T10:06:23", + "TransactionId": 1685633, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 28, + "CustomerInfo": 37665818, + "PaymentType": "Debit Card" + }, + { + "Id": 14387, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2016-06-09T15:00:43", + "TransactionId": 97027763, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 715, + "CustomerInfo": 38396538, + "PaymentType": "Credit Card" + }, + { + "Id": 14388, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2016-03-11T08:01:32", + "TransactionId": 28342519, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 439, + "CustomerInfo": 25770728, + "PaymentType": "Credit Card" + }, + { + "Id": 14389, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-12-28T18:17:51", + "TransactionId": 20584980, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 777, + "CustomerInfo": 1471318, + "PaymentType": "Debit Card" + }, + { + "Id": 14390, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2019-06-18T17:28:54", + "TransactionId": 74048134, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 245, + "CustomerInfo": 51983135, + "PaymentType": "Credit Card" + }, + { + "Id": 14391, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-03-22T19:13:00", + "TransactionId": 97393214, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 387, + "CustomerInfo": 23689214, + "PaymentType": "Debit Card" + }, + { + "Id": 14392, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-05-08T09:33:16", + "TransactionId": 78254174, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 276, + "CustomerInfo": 91229495, + "PaymentType": "Debit Card" + }, + { + "Id": 14393, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2018-07-31T14:39:42", + "TransactionId": 46717174, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 353, + "CustomerInfo": 71264646, + "PaymentType": "Credit Card" + }, + { + "Id": 14394, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-11-20T19:17:37", + "TransactionId": 12578011, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 452, + "CustomerInfo": 99133966, + "PaymentType": "Credit Card" + }, + { + "Id": 14395, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2018-04-10T12:27:04", + "TransactionId": 25074891, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 605, + "CustomerInfo": 69560676, + "PaymentType": "Credit Card" + }, + { + "Id": 14396, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-01-02T15:11:48", + "TransactionId": 20230716, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 266, + "CustomerInfo": 74041806, + "PaymentType": "Credit Card" + }, + { + "Id": 14397, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2016-06-19T08:29:20", + "TransactionId": 35432830, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 83415330, + "PaymentType": "Credit Card" + }, + { + "Id": 14398, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2017-12-27T16:53:37", + "TransactionId": 34871505, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 552, + "CustomerInfo": 60026687, + "PaymentType": "Debit Card" + }, + { + "Id": 14399, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2019-02-03T18:03:10", + "TransactionId": 50738269, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 461, + "CustomerInfo": 32918966, + "PaymentType": "Credit Card" + }, + { + "Id": 14400, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2016-07-05T16:50:10", + "TransactionId": 60399992, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 279, + "CustomerInfo": 41320971, + "PaymentType": "Cash" + }, + { + "Id": 14401, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-10-13T07:31:44", + "TransactionId": 97704493, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 464, + "CustomerInfo": 15487941, + "PaymentType": "Credit Card" + }, + { + "Id": 14402, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-05-17T09:50:41", + "TransactionId": 26192704, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 179, + "CustomerInfo": 37602225, + "PaymentType": "Debit Card" + }, + { + "Id": 14403, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-03-06T14:33:39", + "TransactionId": 17909826, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 911, + "CustomerInfo": 81082261, + "PaymentType": "Credit Card" + }, + { + "Id": 14404, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-09-20T19:14:10", + "TransactionId": 17988984, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 911, + "CustomerInfo": 18855305, + "PaymentType": "Debit Card" + }, + { + "Id": 14405, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2018-12-28T07:14:27", + "TransactionId": 90481963, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 828, + "CustomerInfo": 98414222, + "PaymentType": "Credit Card" + }, + { + "Id": 14406, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-08-27T15:16:42", + "TransactionId": 52183180, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 621, + "CustomerInfo": 97775817, + "PaymentType": "Debit Card" + }, + { + "Id": 14407, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2018-01-11T13:33:01", + "TransactionId": 24841395, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 175, + "CustomerInfo": 44397521, + "PaymentType": "Credit Card" + }, + { + "Id": 14408, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-01-02T19:28:34", + "TransactionId": 72908401, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 336, + "CustomerInfo": 34629012, + "PaymentType": "Credit Card" + }, + { + "Id": 14409, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-10-09T15:37:18", + "TransactionId": 81296581, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 17, + "CustomerInfo": 4737852, + "PaymentType": "Credit Card" + }, + { + "Id": 14410, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2018-03-19T08:47:37", + "TransactionId": 76996976, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 416, + "CustomerInfo": 58961439, + "PaymentType": "Cash" + }, + { + "Id": 14411, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2017-04-24T14:53:57", + "TransactionId": 37758630, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 671, + "CustomerInfo": 17445782, + "PaymentType": "Cash" + }, + { + "Id": 14412, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-12-26T18:06:03", + "TransactionId": 40947433, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 774, + "CustomerInfo": 83336749, + "PaymentType": "Debit Card" + }, + { + "Id": 14413, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2016-04-21T10:19:12", + "TransactionId": 51545904, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 923, + "CustomerInfo": 16622132, + "PaymentType": "Credit Card" + }, + { + "Id": 14414, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-10-13T19:15:01", + "TransactionId": 68680603, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 380, + "CustomerInfo": 84628797, + "PaymentType": "Credit Card" + }, + { + "Id": 14415, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2018-04-12T09:26:21", + "TransactionId": 34520788, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 282, + "CustomerInfo": 23369194, + "PaymentType": "Cash" + }, + { + "Id": 14416, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2019-06-20T09:22:19", + "TransactionId": 78889032, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 340, + "CustomerInfo": 14562972, + "PaymentType": "Credit Card" + }, + { + "Id": 14417, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2016-12-08T14:48:03", + "TransactionId": 58932591, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 667, + "CustomerInfo": 86083783, + "PaymentType": "Debit Card" + }, + { + "Id": 14418, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2019-05-04T13:52:36", + "TransactionId": 67213624, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 599, + "CustomerInfo": 32391267, + "PaymentType": "Credit Card" + }, + { + "Id": 14419, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-10-25T10:40:57", + "TransactionId": 67827663, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 987, + "CustomerInfo": 16256189, + "PaymentType": "Credit Card" + }, + { + "Id": 14420, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2016-06-24T18:01:44", + "TransactionId": 9286386, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 3133100, + "PaymentType": "Debit Card" + }, + { + "Id": 14421, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2017-05-15T10:15:53", + "TransactionId": 61171118, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 72600518, + "PaymentType": "Credit Card" + }, + { + "Id": 14422, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2017-09-25T08:11:02", + "TransactionId": 95619047, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 343, + "CustomerInfo": 98078511, + "PaymentType": "Credit Card" + }, + { + "Id": 14423, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-11-15T08:58:08", + "TransactionId": 49798030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 740, + "CustomerInfo": 94803718, + "PaymentType": "Debit Card" + }, + { + "Id": 14424, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2019-08-01T13:00:29", + "TransactionId": 48156276, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 107, + "CustomerInfo": 1253538, + "PaymentType": "Cash" + }, + { + "Id": 14425, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-10-16T12:22:11", + "TransactionId": 16006051, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 556, + "CustomerInfo": 36662090, + "PaymentType": "Credit Card" + }, + { + "Id": 14426, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2019-10-12T15:47:05", + "TransactionId": 69696645, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 309, + "CustomerInfo": 21290973, + "PaymentType": "Cash" + }, + { + "Id": 14427, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-12-24T07:20:04", + "TransactionId": 93330308, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 649, + "CustomerInfo": 98921346, + "PaymentType": "Cash" + }, + { + "Id": 14428, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2017-10-06T08:27:27", + "TransactionId": 43270225, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 491, + "CustomerInfo": 41646729, + "PaymentType": "Credit Card" + }, + { + "Id": 14429, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-02-19T13:04:48", + "TransactionId": 87548087, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 159, + "CustomerInfo": 74140928, + "PaymentType": "Debit Card" + }, + { + "Id": 14430, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-03-26T11:31:55", + "TransactionId": 87791068, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 334, + "CustomerInfo": 801874, + "PaymentType": "Debit Card" + }, + { + "Id": 14431, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-03-11T17:08:53", + "TransactionId": 52850261, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 921, + "CustomerInfo": 3944405, + "PaymentType": "Credit Card" + }, + { + "Id": 14432, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2019-07-31T07:40:22", + "TransactionId": 59994712, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 349, + "CustomerInfo": 96781061, + "PaymentType": "Debit Card" + }, + { + "Id": 14433, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2016-03-14T09:51:42", + "TransactionId": 97405309, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 957, + "CustomerInfo": 87314933, + "PaymentType": "Cash" + }, + { + "Id": 14434, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-06-24T15:14:07", + "TransactionId": 57894142, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 817, + "CustomerInfo": 42377316, + "PaymentType": "Credit Card" + }, + { + "Id": 14435, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2018-07-10T10:39:39", + "TransactionId": 52939801, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 39, + "CustomerInfo": 89758212, + "PaymentType": "Credit Card" + }, + { + "Id": 14436, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-05-18T17:32:56", + "TransactionId": 97657762, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 740, + "CustomerInfo": 86944618, + "PaymentType": "Credit Card" + }, + { + "Id": 14437, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2017-01-25T13:31:00", + "TransactionId": 60225940, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 770, + "CustomerInfo": 10590420, + "PaymentType": "Cash" + }, + { + "Id": 14438, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-05-26T16:15:45", + "TransactionId": 48734913, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 957, + "CustomerInfo": 11154221, + "PaymentType": "Cash" + }, + { + "Id": 14439, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2018-12-10T14:21:24", + "TransactionId": 8757805, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 643, + "CustomerInfo": 81924563, + "PaymentType": "Credit Card" + }, + { + "Id": 14440, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-06-09T13:34:36", + "TransactionId": 33063303, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 230, + "CustomerInfo": 50194481, + "PaymentType": "Debit Card" + }, + { + "Id": 14441, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-09-14T19:14:18", + "TransactionId": 44394892, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 640, + "CustomerInfo": 30808885, + "PaymentType": "Debit Card" + }, + { + "Id": 14442, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2017-07-06T15:20:27", + "TransactionId": 99368107, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 192, + "CustomerInfo": 4178729, + "PaymentType": "Cash" + }, + { + "Id": 14443, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2019-05-04T07:11:00", + "TransactionId": 59811661, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 678, + "CustomerInfo": 88588161, + "PaymentType": "Cash" + }, + { + "Id": 14444, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-02-23T07:28:25", + "TransactionId": 94845309, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 126, + "CustomerInfo": 27407307, + "PaymentType": "Cash" + }, + { + "Id": 14445, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-03-11T15:37:09", + "TransactionId": 63756348, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 490, + "CustomerInfo": 15887669, + "PaymentType": "Credit Card" + }, + { + "Id": 14446, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2018-11-11T11:48:29", + "TransactionId": 24651401, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 151, + "CustomerInfo": 92713391, + "PaymentType": "Cash" + }, + { + "Id": 14447, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2019-08-18T16:08:50", + "TransactionId": 55167194, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 465, + "CustomerInfo": 93430622, + "PaymentType": "Cash" + }, + { + "Id": 14448, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2016-08-29T12:15:16", + "TransactionId": 66573450, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 290, + "CustomerInfo": 37119875, + "PaymentType": "Debit Card" + }, + { + "Id": 14449, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-08-09T12:17:08", + "TransactionId": 7654335, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 225, + "CustomerInfo": 2016857, + "PaymentType": "Cash" + }, + { + "Id": 14450, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-11-30T19:38:04", + "TransactionId": 96483728, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 540, + "CustomerInfo": 75299420, + "PaymentType": "Cash" + }, + { + "Id": 14451, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2017-11-27T16:46:42", + "TransactionId": 86311829, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 228, + "CustomerInfo": 94247253, + "PaymentType": "Cash" + }, + { + "Id": 14452, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-11-20T17:34:13", + "TransactionId": 84368646, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 998, + "CustomerInfo": 13362908, + "PaymentType": "Credit Card" + }, + { + "Id": 14453, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2019-03-23T13:25:24", + "TransactionId": 51027869, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 432, + "CustomerInfo": 90269186, + "PaymentType": "Cash" + }, + { + "Id": 14454, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2019-11-29T08:28:54", + "TransactionId": 24453925, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 234, + "CustomerInfo": 27454416, + "PaymentType": "Debit Card" + }, + { + "Id": 14455, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2016-11-16T09:20:27", + "TransactionId": 46810327, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 350, + "CustomerInfo": 77634101, + "PaymentType": "Cash" + }, + { + "Id": 14456, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2018-09-07T13:57:56", + "TransactionId": 27314542, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 827, + "CustomerInfo": 95599684, + "PaymentType": "Cash" + }, + { + "Id": 14457, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2017-03-25T10:25:15", + "TransactionId": 92897444, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 79, + "CustomerInfo": 5778714, + "PaymentType": "Debit Card" + }, + { + "Id": 14458, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2019-12-09T11:26:36", + "TransactionId": 45345717, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 442, + "CustomerInfo": 19266367, + "PaymentType": "Debit Card" + }, + { + "Id": 14459, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2016-11-15T09:58:11", + "TransactionId": 3759311, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 619, + "CustomerInfo": 53088479, + "PaymentType": "Debit Card" + }, + { + "Id": 14460, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2019-10-15T13:41:48", + "TransactionId": 51467509, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 799, + "CustomerInfo": 43145582, + "PaymentType": "Debit Card" + }, + { + "Id": 14461, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2016-01-25T14:35:14", + "TransactionId": 93859114, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 642, + "CustomerInfo": 80319489, + "PaymentType": "Credit Card" + }, + { + "Id": 14462, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2016-06-08T07:23:23", + "TransactionId": 5173499, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 270, + "CustomerInfo": 81331673, + "PaymentType": "Cash" + }, + { + "Id": 14463, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-12-25T15:10:57", + "TransactionId": 29599272, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 968, + "CustomerInfo": 62168884, + "PaymentType": "Debit Card" + }, + { + "Id": 14464, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2016-03-16T13:39:13", + "TransactionId": 25438519, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 155, + "CustomerInfo": 54285932, + "PaymentType": "Cash" + }, + { + "Id": 14465, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-08-03T12:48:14", + "TransactionId": 93332053, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 609, + "CustomerInfo": 91689202, + "PaymentType": "Cash" + }, + { + "Id": 14466, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2016-11-24T18:47:31", + "TransactionId": 96664594, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 95, + "CustomerInfo": 68271194, + "PaymentType": "Cash" + }, + { + "Id": 14467, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-06-04T12:53:00", + "TransactionId": 76883323, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 625, + "CustomerInfo": 89564368, + "PaymentType": "Cash" + }, + { + "Id": 14468, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2018-05-21T10:30:43", + "TransactionId": 66623429, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 617, + "CustomerInfo": 30479091, + "PaymentType": "Credit Card" + }, + { + "Id": 14469, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-07-20T16:16:11", + "TransactionId": 87568208, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 678, + "CustomerInfo": 87810028, + "PaymentType": "Credit Card" + }, + { + "Id": 14470, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-12-05T11:48:20", + "TransactionId": 77215880, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 127, + "CustomerInfo": 45513351, + "PaymentType": "Cash" + }, + { + "Id": 14471, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2018-11-18T18:39:19", + "TransactionId": 15921594, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 819, + "CustomerInfo": 76505872, + "PaymentType": "Debit Card" + }, + { + "Id": 14472, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2016-02-22T18:34:34", + "TransactionId": 69366437, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 62, + "CustomerInfo": 33087720, + "PaymentType": "Cash" + }, + { + "Id": 14473, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-05-20T19:16:54", + "TransactionId": 99102750, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 824, + "CustomerInfo": 49261064, + "PaymentType": "Cash" + }, + { + "Id": 14474, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-07-31T07:11:00", + "TransactionId": 93129620, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 268, + "CustomerInfo": 14791798, + "PaymentType": "Credit Card" + }, + { + "Id": 14475, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-07-22T18:45:39", + "TransactionId": 46334108, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 185, + "CustomerInfo": 32200839, + "PaymentType": "Cash" + }, + { + "Id": 14476, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-06-17T15:16:34", + "TransactionId": 99875039, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 197, + "CustomerInfo": 94653721, + "PaymentType": "Credit Card" + }, + { + "Id": 14477, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2018-03-03T08:06:43", + "TransactionId": 87550397, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 665, + "CustomerInfo": 77166950, + "PaymentType": "Cash" + }, + { + "Id": 14478, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2016-03-20T13:28:42", + "TransactionId": 38020119, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 219, + "CustomerInfo": 32922086, + "PaymentType": "Credit Card" + }, + { + "Id": 14479, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-09-10T14:25:26", + "TransactionId": 13461636, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 682, + "CustomerInfo": 52814211, + "PaymentType": "Cash" + }, + { + "Id": 14480, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-09-20T09:36:09", + "TransactionId": 91948689, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 942, + "CustomerInfo": 970975, + "PaymentType": "Cash" + }, + { + "Id": 14481, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2016-09-05T09:23:02", + "TransactionId": 22648050, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 747, + "CustomerInfo": 26618773, + "PaymentType": "Credit Card" + }, + { + "Id": 14482, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2018-11-17T11:41:25", + "TransactionId": 55501934, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 557, + "CustomerInfo": 69190548, + "PaymentType": "Cash" + }, + { + "Id": 14483, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2019-12-19T15:46:13", + "TransactionId": 85216211, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 927, + "CustomerInfo": 92016503, + "PaymentType": "Credit Card" + }, + { + "Id": 14484, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2018-03-11T12:17:08", + "TransactionId": 47122296, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 863, + "CustomerInfo": 88539487, + "PaymentType": "Cash" + }, + { + "Id": 14485, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-07-17T09:48:40", + "TransactionId": 74534728, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 869, + "CustomerInfo": 53062855, + "PaymentType": "Credit Card" + }, + { + "Id": 14486, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-10-14T18:43:03", + "TransactionId": 33403275, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 10, + "CustomerInfo": 15277366, + "PaymentType": "Cash" + }, + { + "Id": 14487, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2016-01-24T15:19:09", + "TransactionId": 47490509, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 975, + "CustomerInfo": 89488608, + "PaymentType": "Debit Card" + }, + { + "Id": 14488, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-03-14T15:52:25", + "TransactionId": 46108438, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 564, + "CustomerInfo": 51405987, + "PaymentType": "Cash" + }, + { + "Id": 14489, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-05-21T12:56:01", + "TransactionId": 41483498, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 417, + "CustomerInfo": 51509746, + "PaymentType": "Credit Card" + }, + { + "Id": 14490, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2017-02-08T19:30:35", + "TransactionId": 56687671, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 889, + "CustomerInfo": 45735220, + "PaymentType": "Debit Card" + }, + { + "Id": 14491, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2018-11-18T14:43:00", + "TransactionId": 96507701, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 52, + "CustomerInfo": 13433620, + "PaymentType": "Credit Card" + }, + { + "Id": 14492, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2016-07-18T18:04:19", + "TransactionId": 96302823, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 724, + "CustomerInfo": 13372318, + "PaymentType": "Cash" + }, + { + "Id": 14493, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-08-28T14:09:53", + "TransactionId": 93480603, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 422, + "CustomerInfo": 9084047, + "PaymentType": "Cash" + }, + { + "Id": 14494, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2016-08-14T08:18:32", + "TransactionId": 55856441, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 385, + "CustomerInfo": 56863115, + "PaymentType": "Debit Card" + }, + { + "Id": 14495, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-11-24T07:00:03", + "TransactionId": 80365865, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 431, + "CustomerInfo": 10351891, + "PaymentType": "Credit Card" + }, + { + "Id": 14496, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2017-04-12T13:11:08", + "TransactionId": 79735921, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 729, + "CustomerInfo": 83894897, + "PaymentType": "Cash" + }, + { + "Id": 14497, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-06-20T17:03:33", + "TransactionId": 30039322, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 928, + "CustomerInfo": 3721777, + "PaymentType": "Debit Card" + }, + { + "Id": 14498, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2017-04-25T11:06:26", + "TransactionId": 3886746, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 392, + "CustomerInfo": 46095874, + "PaymentType": "Cash" + }, + { + "Id": 14499, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2017-04-22T19:05:23", + "TransactionId": 20791728, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 187, + "CustomerInfo": 90664692, + "PaymentType": "Cash" + }, + { + "Id": 14500, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-06-12T07:51:36", + "TransactionId": 55095699, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 998, + "CustomerInfo": 36076886, + "PaymentType": "Cash" + }, + { + "Id": 14501, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2017-09-03T08:10:28", + "TransactionId": 1804436, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 180, + "CustomerInfo": 53519477, + "PaymentType": "Credit Card" + }, + { + "Id": 14502, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2019-07-05T08:21:07", + "TransactionId": 82470171, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 201, + "CustomerInfo": 101605, + "PaymentType": "Cash" + }, + { + "Id": 14503, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-01-30T18:12:14", + "TransactionId": 3837516, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 121, + "CustomerInfo": 18930696, + "PaymentType": "Debit Card" + }, + { + "Id": 14504, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-03-27T16:41:14", + "TransactionId": 83869228, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 33, + "CustomerInfo": 84065719, + "PaymentType": "Credit Card" + }, + { + "Id": 14505, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-11-02T10:32:01", + "TransactionId": 7616386, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 251, + "CustomerInfo": 92139028, + "PaymentType": "Debit Card" + }, + { + "Id": 14506, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-11-06T15:42:29", + "TransactionId": 26480044, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 732, + "CustomerInfo": 33084888, + "PaymentType": "Credit Card" + }, + { + "Id": 14507, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2018-01-14T10:05:31", + "TransactionId": 90739579, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 94184908, + "PaymentType": "Cash" + }, + { + "Id": 14508, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-11-08T15:03:36", + "TransactionId": 41795991, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 237, + "CustomerInfo": 25759062, + "PaymentType": "Credit Card" + }, + { + "Id": 14509, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-06-29T18:45:48", + "TransactionId": 33178183, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 720, + "CustomerInfo": 32229413, + "PaymentType": "Debit Card" + }, + { + "Id": 14510, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-03-14T13:40:13", + "TransactionId": 73260036, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 272, + "CustomerInfo": 45944414, + "PaymentType": "Cash" + }, + { + "Id": 14511, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2016-05-17T12:07:29", + "TransactionId": 97972365, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 624, + "CustomerInfo": 23463887, + "PaymentType": "Debit Card" + }, + { + "Id": 14512, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2018-02-13T13:51:45", + "TransactionId": 20562989, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 595, + "CustomerInfo": 99808262, + "PaymentType": "Credit Card" + }, + { + "Id": 14513, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-03-13T11:31:12", + "TransactionId": 42851724, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 95, + "CustomerInfo": 77021330, + "PaymentType": "Cash" + }, + { + "Id": 14514, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-01-02T13:03:30", + "TransactionId": 22464568, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 440, + "CustomerInfo": 92147279, + "PaymentType": "Debit Card" + }, + { + "Id": 14515, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2016-01-31T15:13:49", + "TransactionId": 28012415, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 544, + "CustomerInfo": 15822538, + "PaymentType": "Debit Card" + }, + { + "Id": 14516, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2017-01-08T13:03:30", + "TransactionId": 66101704, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 52, + "CustomerInfo": 68669424, + "PaymentType": "Credit Card" + }, + { + "Id": 14517, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2017-04-23T19:41:48", + "TransactionId": 74794818, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 789, + "CustomerInfo": 35688225, + "PaymentType": "Debit Card" + }, + { + "Id": 14518, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-08-27T07:39:13", + "TransactionId": 20142006, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 85029278, + "PaymentType": "Credit Card" + }, + { + "Id": 14519, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-06-27T18:42:20", + "TransactionId": 35317672, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 116, + "CustomerInfo": 85192892, + "PaymentType": "Credit Card" + }, + { + "Id": 14520, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2018-01-15T10:33:19", + "TransactionId": 45784328, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 969, + "CustomerInfo": 2121823, + "PaymentType": "Credit Card" + }, + { + "Id": 14521, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-01-15T12:18:09", + "TransactionId": 8913027, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 4, + "CustomerInfo": 98385762, + "PaymentType": "Credit Card" + }, + { + "Id": 14522, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2019-06-29T07:38:56", + "TransactionId": 42011908, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 917, + "CustomerInfo": 88824824, + "PaymentType": "Credit Card" + }, + { + "Id": 14523, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2018-06-13T12:11:48", + "TransactionId": 12496549, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 894, + "CustomerInfo": 82177492, + "PaymentType": "Cash" + }, + { + "Id": 14524, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-08-20T07:43:41", + "TransactionId": 25121528, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 10, + "CustomerInfo": 40323510, + "PaymentType": "Cash" + }, + { + "Id": 14525, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2019-10-13T16:33:01", + "TransactionId": 63871938, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 161, + "CustomerInfo": 38199529, + "PaymentType": "Cash" + }, + { + "Id": 14526, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2016-10-17T15:06:03", + "TransactionId": 16021279, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 355, + "CustomerInfo": 9822526, + "PaymentType": "Debit Card" + }, + { + "Id": 14527, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-09-05T17:05:51", + "TransactionId": 89939289, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 492, + "CustomerInfo": 46513233, + "PaymentType": "Credit Card" + }, + { + "Id": 14528, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2018-07-26T16:22:13", + "TransactionId": 6338965, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 86, + "CustomerInfo": 17580508, + "PaymentType": "Debit Card" + }, + { + "Id": 14529, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2018-06-02T18:21:53", + "TransactionId": 33070935, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 235, + "CustomerInfo": 23616386, + "PaymentType": "Debit Card" + }, + { + "Id": 14530, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2018-05-20T19:32:10", + "TransactionId": 90401651, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 944, + "CustomerInfo": 90215571, + "PaymentType": "Cash" + }, + { + "Id": 14531, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-02-24T16:09:59", + "TransactionId": 23993239, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 446, + "CustomerInfo": 61933158, + "PaymentType": "Debit Card" + }, + { + "Id": 14532, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-07-06T11:42:43", + "TransactionId": 4009947, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 114, + "CustomerInfo": 89985939, + "PaymentType": "Credit Card" + }, + { + "Id": 14533, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2018-12-28T17:31:38", + "TransactionId": 12933591, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 545, + "CustomerInfo": 83634183, + "PaymentType": "Credit Card" + }, + { + "Id": 14534, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2018-03-13T18:46:22", + "TransactionId": 51583806, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 563, + "CustomerInfo": 2111775, + "PaymentType": "Credit Card" + }, + { + "Id": 14535, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2019-10-07T09:32:24", + "TransactionId": 57662478, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 194, + "CustomerInfo": 85842599, + "PaymentType": "Cash" + }, + { + "Id": 14536, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-05-30T14:58:08", + "TransactionId": 53253722, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 549, + "CustomerInfo": 50726209, + "PaymentType": "Cash" + }, + { + "Id": 14537, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2018-05-22T10:10:25", + "TransactionId": 14307060, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 782, + "CustomerInfo": 95604146, + "PaymentType": "Credit Card" + }, + { + "Id": 14538, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2017-02-09T14:06:52", + "TransactionId": 24319841, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 407, + "CustomerInfo": 55991040, + "PaymentType": "Debit Card" + }, + { + "Id": 14539, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-11-24T15:00:17", + "TransactionId": 230128, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 596, + "CustomerInfo": 9453618, + "PaymentType": "Debit Card" + }, + { + "Id": 14540, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-12-19T14:15:04", + "TransactionId": 47228776, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 147, + "CustomerInfo": 57456255, + "PaymentType": "Credit Card" + }, + { + "Id": 14541, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2017-06-09T11:47:37", + "TransactionId": 61893679, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 886, + "CustomerInfo": 68486291, + "PaymentType": "Debit Card" + }, + { + "Id": 14542, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2018-07-29T15:41:28", + "TransactionId": 83068727, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 522, + "CustomerInfo": 34501772, + "PaymentType": "Credit Card" + }, + { + "Id": 14543, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-05-11T12:18:52", + "TransactionId": 11355382, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 638, + "CustomerInfo": 16154049, + "PaymentType": "Cash" + }, + { + "Id": 14544, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-12-10T07:27:50", + "TransactionId": 4502231, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 132, + "CustomerInfo": 58767193, + "PaymentType": "Credit Card" + }, + { + "Id": 14545, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-12-25T10:42:14", + "TransactionId": 90928264, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 622, + "CustomerInfo": 93197506, + "PaymentType": "Cash" + }, + { + "Id": 14546, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-02-14T10:24:14", + "TransactionId": 36717239, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 157, + "CustomerInfo": 64493633, + "PaymentType": "Credit Card" + }, + { + "Id": 14547, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2017-04-08T13:54:37", + "TransactionId": 2397275, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 270, + "CustomerInfo": 95231182, + "PaymentType": "Credit Card" + }, + { + "Id": 14548, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2018-03-28T15:38:18", + "TransactionId": 21679942, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 492, + "CustomerInfo": 92257034, + "PaymentType": "Credit Card" + }, + { + "Id": 14549, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2018-08-17T17:53:40", + "TransactionId": 17211915, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 13, + "CustomerInfo": 89056886, + "PaymentType": "Credit Card" + }, + { + "Id": 14550, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2016-02-21T17:33:13", + "TransactionId": 77490701, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 929, + "CustomerInfo": 26681488, + "PaymentType": "Credit Card" + }, + { + "Id": 14551, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2018-08-22T14:48:20", + "TransactionId": 16716877, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 906, + "CustomerInfo": 1299940, + "PaymentType": "Debit Card" + }, + { + "Id": 14552, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2017-09-16T09:24:03", + "TransactionId": 48757700, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 486, + "CustomerInfo": 74589046, + "PaymentType": "Credit Card" + }, + { + "Id": 14553, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-08-08T16:17:02", + "TransactionId": 42582503, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 997, + "CustomerInfo": 19120966, + "PaymentType": "Debit Card" + }, + { + "Id": 14554, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2016-06-24T18:28:05", + "TransactionId": 78687029, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 177, + "CustomerInfo": 95277715, + "PaymentType": "Credit Card" + }, + { + "Id": 14555, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2018-08-25T10:02:38", + "TransactionId": 86796203, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 348, + "CustomerInfo": 90522848, + "PaymentType": "Credit Card" + }, + { + "Id": 14556, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2016-08-18T17:07:44", + "TransactionId": 92213311, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 700, + "CustomerInfo": 90266902, + "PaymentType": "Credit Card" + }, + { + "Id": 14557, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-10-20T10:05:57", + "TransactionId": 19829188, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 137, + "CustomerInfo": 60836220, + "PaymentType": "Debit Card" + }, + { + "Id": 14558, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-11-02T15:28:05", + "TransactionId": 67586354, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 520, + "CustomerInfo": 85450437, + "PaymentType": "Cash" + }, + { + "Id": 14559, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-12-13T08:24:09", + "TransactionId": 88160571, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 165, + "CustomerInfo": 65453695, + "PaymentType": "Cash" + }, + { + "Id": 14560, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2019-05-13T16:52:19", + "TransactionId": 63174580, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 689, + "CustomerInfo": 84685439, + "PaymentType": "Credit Card" + }, + { + "Id": 14561, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2019-04-16T08:34:48", + "TransactionId": 32954673, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 14, + "CustomerInfo": 94362382, + "PaymentType": "Credit Card" + }, + { + "Id": 14562, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-02-27T12:53:00", + "TransactionId": 45266904, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 306, + "CustomerInfo": 95898181, + "PaymentType": "Debit Card" + }, + { + "Id": 14563, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-08-18T18:18:09", + "TransactionId": 8656772, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 578, + "CustomerInfo": 12021863, + "PaymentType": "Debit Card" + }, + { + "Id": 14564, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2018-11-07T16:04:05", + "TransactionId": 5233590, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 653, + "CustomerInfo": 73043712, + "PaymentType": "Debit Card" + }, + { + "Id": 14565, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-10-18T09:12:58", + "TransactionId": 49907412, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 611, + "CustomerInfo": 7957535, + "PaymentType": "Debit Card" + }, + { + "Id": 14566, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2019-12-24T19:29:00", + "TransactionId": 78214316, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 834, + "CustomerInfo": 21298085, + "PaymentType": "Debit Card" + }, + { + "Id": 14567, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-03-04T14:17:14", + "TransactionId": 25295768, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 972, + "CustomerInfo": 87072466, + "PaymentType": "Debit Card" + }, + { + "Id": 14568, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2018-04-16T18:05:11", + "TransactionId": 40850414, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 860, + "CustomerInfo": 49642867, + "PaymentType": "Cash" + }, + { + "Id": 14569, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-06-03T13:22:13", + "TransactionId": 43575947, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 548, + "CustomerInfo": 38007697, + "PaymentType": "Debit Card" + }, + { + "Id": 14570, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2016-10-09T15:45:56", + "TransactionId": 1464727, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 337, + "CustomerInfo": 38829712, + "PaymentType": "Cash" + }, + { + "Id": 14571, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-11-09T17:21:07", + "TransactionId": 85074602, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 255, + "CustomerInfo": 45098528, + "PaymentType": "Cash" + }, + { + "Id": 14572, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-09-02T17:10:36", + "TransactionId": 361978, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 341, + "CustomerInfo": 83524044, + "PaymentType": "Debit Card" + }, + { + "Id": 14573, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-11-12T17:49:55", + "TransactionId": 57001343, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 710, + "CustomerInfo": 93789110, + "PaymentType": "Cash" + }, + { + "Id": 14574, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-07-15T08:29:54", + "TransactionId": 42675776, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 687, + "CustomerInfo": 94600292, + "PaymentType": "Cash" + }, + { + "Id": 14575, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2018-02-25T12:56:53", + "TransactionId": 75161366, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 603, + "CustomerInfo": 62341229, + "PaymentType": "Debit Card" + }, + { + "Id": 14576, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2019-01-24T16:52:45", + "TransactionId": 73749155, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 265, + "CustomerInfo": 41442471, + "PaymentType": "Credit Card" + }, + { + "Id": 14577, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-01-20T13:51:53", + "TransactionId": 43380995, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 561, + "CustomerInfo": 80122197, + "PaymentType": "Credit Card" + }, + { + "Id": 14578, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2019-03-31T11:26:18", + "TransactionId": 214278, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 144, + "CustomerInfo": 87764114, + "PaymentType": "Cash" + }, + { + "Id": 14579, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2018-03-20T13:03:04", + "TransactionId": 42341959, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 415, + "CustomerInfo": 73286298, + "PaymentType": "Cash" + }, + { + "Id": 14580, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-11-07T12:23:20", + "TransactionId": 64689013, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 387, + "CustomerInfo": 76865600, + "PaymentType": "Cash" + }, + { + "Id": 14581, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2018-11-17T13:21:04", + "TransactionId": 60968588, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 862, + "CustomerInfo": 49462073, + "PaymentType": "Credit Card" + }, + { + "Id": 14582, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2019-10-06T08:27:53", + "TransactionId": 69285703, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 911, + "CustomerInfo": 74442783, + "PaymentType": "Cash" + }, + { + "Id": 14583, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2019-10-27T07:38:12", + "TransactionId": 56765996, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 721, + "CustomerInfo": 99348581, + "PaymentType": "Credit Card" + }, + { + "Id": 14584, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-02-05T17:06:00", + "TransactionId": 98025690, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 315, + "CustomerInfo": 37517320, + "PaymentType": "Debit Card" + }, + { + "Id": 14585, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2017-07-02T19:37:21", + "TransactionId": 42465601, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 42, + "CustomerInfo": 88545488, + "PaymentType": "Debit Card" + }, + { + "Id": 14586, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2018-08-26T10:47:08", + "TransactionId": 19271862, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 900, + "CustomerInfo": 69613186, + "PaymentType": "Debit Card" + }, + { + "Id": 14587, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-12-04T09:26:04", + "TransactionId": 44590984, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 117, + "CustomerInfo": 97175346, + "PaymentType": "Cash" + }, + { + "Id": 14588, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2016-03-23T13:54:37", + "TransactionId": 75899027, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 223, + "CustomerInfo": 9102865, + "PaymentType": "Cash" + }, + { + "Id": 14589, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2017-08-14T17:22:25", + "TransactionId": 58937978, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 716, + "CustomerInfo": 15624605, + "PaymentType": "Credit Card" + }, + { + "Id": 14590, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-08-16T18:21:27", + "TransactionId": 23172734, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 666, + "CustomerInfo": 11801846, + "PaymentType": "Cash" + }, + { + "Id": 14591, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2016-09-03T08:02:50", + "TransactionId": 37172275, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 630, + "CustomerInfo": 50450324, + "PaymentType": "Debit Card" + }, + { + "Id": 14592, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2018-11-15T12:06:46", + "TransactionId": 39446309, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 460, + "CustomerInfo": 67763388, + "PaymentType": "Debit Card" + }, + { + "Id": 14593, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-07-02T14:41:51", + "TransactionId": 51167054, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 935, + "CustomerInfo": 35871372, + "PaymentType": "Credit Card" + }, + { + "Id": 14594, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2019-06-24T07:08:33", + "TransactionId": 12091480, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 58, + "CustomerInfo": 17099331, + "PaymentType": "Debit Card" + }, + { + "Id": 14595, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-07-04T17:42:26", + "TransactionId": 12941330, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 779, + "CustomerInfo": 77289405, + "PaymentType": "Cash" + }, + { + "Id": 14596, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-03-16T14:25:44", + "TransactionId": 15392586, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 326, + "CustomerInfo": 66938852, + "PaymentType": "Cash" + }, + { + "Id": 14597, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-04-22T12:11:57", + "TransactionId": 24692660, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 813, + "CustomerInfo": 28795992, + "PaymentType": "Debit Card" + }, + { + "Id": 14598, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-10-10T10:41:48", + "TransactionId": 47840858, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 347, + "CustomerInfo": 55685007, + "PaymentType": "Cash" + }, + { + "Id": 14599, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2019-12-05T07:10:42", + "TransactionId": 29363001, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 923, + "CustomerInfo": 98516331, + "PaymentType": "Debit Card" + }, + { + "Id": 14600, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2019-07-14T09:28:31", + "TransactionId": 63912816, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 368, + "CustomerInfo": 40071233, + "PaymentType": "Credit Card" + }, + { + "Id": 14601, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-03-22T18:39:19", + "TransactionId": 83872182, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 378, + "CustomerInfo": 66573803, + "PaymentType": "Cash" + }, + { + "Id": 14602, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-06-09T19:36:20", + "TransactionId": 43663564, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 92, + "CustomerInfo": 80248385, + "PaymentType": "Debit Card" + }, + { + "Id": 14603, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2016-04-07T10:00:29", + "TransactionId": 93162783, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 857, + "CustomerInfo": 74222309, + "PaymentType": "Credit Card" + }, + { + "Id": 14604, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-07-10T11:39:59", + "TransactionId": 54593387, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 255, + "CustomerInfo": 54836081, + "PaymentType": "Credit Card" + }, + { + "Id": 14605, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2016-11-24T17:59:43", + "TransactionId": 77621473, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 235, + "CustomerInfo": 97400655, + "PaymentType": "Cash" + }, + { + "Id": 14606, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-02-24T15:05:11", + "TransactionId": 31693181, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 882, + "CustomerInfo": 40597166, + "PaymentType": "Credit Card" + }, + { + "Id": 14607, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2017-01-24T18:51:16", + "TransactionId": 90002812, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 726, + "CustomerInfo": 95097338, + "PaymentType": "Debit Card" + }, + { + "Id": 14608, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-04-10T18:08:56", + "TransactionId": 86665757, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 253, + "CustomerInfo": 99826842, + "PaymentType": "Debit Card" + }, + { + "Id": 14609, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2018-07-05T18:08:12", + "TransactionId": 71731669, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 353, + "CustomerInfo": 94592800, + "PaymentType": "Debit Card" + }, + { + "Id": 14610, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-07-26T15:36:17", + "TransactionId": 92921043, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 786, + "CustomerInfo": 23715486, + "PaymentType": "Debit Card" + }, + { + "Id": 14611, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-01-03T07:06:32", + "TransactionId": 48396766, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 278, + "CustomerInfo": 24178602, + "PaymentType": "Cash" + }, + { + "Id": 14612, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-06-17T16:00:20", + "TransactionId": 11491021, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 63290545, + "PaymentType": "Debit Card" + }, + { + "Id": 14613, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2018-07-03T08:59:08", + "TransactionId": 11829484, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 304, + "CustomerInfo": 10399016, + "PaymentType": "Debit Card" + }, + { + "Id": 14614, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2018-10-26T11:27:19", + "TransactionId": 11201495, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 780, + "CustomerInfo": 75169448, + "PaymentType": "Credit Card" + }, + { + "Id": 14615, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-09-05T17:53:48", + "TransactionId": 49734638, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 854, + "CustomerInfo": 80836277, + "PaymentType": "Credit Card" + }, + { + "Id": 14616, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-06-25T15:48:49", + "TransactionId": 12519731, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 409, + "CustomerInfo": 78794524, + "PaymentType": "Credit Card" + }, + { + "Id": 14617, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-12-05T18:06:46", + "TransactionId": 77723948, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 11, + "CustomerInfo": 51126287, + "PaymentType": "Cash" + }, + { + "Id": 14618, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2019-08-24T12:10:39", + "TransactionId": 52163778, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 406, + "CustomerInfo": 11395166, + "PaymentType": "Cash" + }, + { + "Id": 14619, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2016-01-13T14:16:48", + "TransactionId": 31594157, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 53816646, + "PaymentType": "Cash" + }, + { + "Id": 14620, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2016-12-07T14:57:42", + "TransactionId": 83751819, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 52, + "CustomerInfo": 26320775, + "PaymentType": "Credit Card" + }, + { + "Id": 14621, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-12-01T17:56:15", + "TransactionId": 34150662, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 318, + "CustomerInfo": 84043347, + "PaymentType": "Debit Card" + }, + { + "Id": 14622, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2017-01-23T12:43:03", + "TransactionId": 42607568, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 118, + "CustomerInfo": 75770961, + "PaymentType": "Credit Card" + }, + { + "Id": 14623, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-01-15T19:53:20", + "TransactionId": 25881763, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 554, + "CustomerInfo": 40490831, + "PaymentType": "Credit Card" + }, + { + "Id": 14624, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2018-07-29T16:14:36", + "TransactionId": 40344803, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 537, + "CustomerInfo": 77196207, + "PaymentType": "Credit Card" + }, + { + "Id": 14625, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2016-01-28T07:19:55", + "TransactionId": 53159720, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 732, + "CustomerInfo": 69373034, + "PaymentType": "Credit Card" + }, + { + "Id": 14626, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2017-01-07T14:44:01", + "TransactionId": 5143968, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 163, + "CustomerInfo": 32181061, + "PaymentType": "Credit Card" + }, + { + "Id": 14627, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2019-05-12T19:00:29", + "TransactionId": 12079087, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 20, + "CustomerInfo": 42533739, + "PaymentType": "Cash" + }, + { + "Id": 14628, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-11-10T11:02:50", + "TransactionId": 85838894, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 12, + "CustomerInfo": 33537689, + "PaymentType": "Debit Card" + }, + { + "Id": 14629, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-05-22T19:13:52", + "TransactionId": 39071710, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 185, + "CustomerInfo": 62407753, + "PaymentType": "Debit Card" + }, + { + "Id": 14630, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2016-06-29T12:05:28", + "TransactionId": 38475880, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 596, + "CustomerInfo": 87036195, + "PaymentType": "Cash" + }, + { + "Id": 14631, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-07-09T09:11:23", + "TransactionId": 3778197, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 394, + "CustomerInfo": 13604541, + "PaymentType": "Credit Card" + }, + { + "Id": 14632, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-08-14T17:24:09", + "TransactionId": 59392994, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 984, + "CustomerInfo": 76702683, + "PaymentType": "Debit Card" + }, + { + "Id": 14633, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2016-07-29T19:47:51", + "TransactionId": 92921519, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 503, + "CustomerInfo": 12979052, + "PaymentType": "Cash" + }, + { + "Id": 14634, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2016-10-20T16:23:31", + "TransactionId": 85700062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 167, + "CustomerInfo": 67431991, + "PaymentType": "Credit Card" + }, + { + "Id": 14635, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-08-11T17:24:43", + "TransactionId": 83925982, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 84324552, + "PaymentType": "Cash" + }, + { + "Id": 14636, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2018-09-18T14:06:52", + "TransactionId": 60134802, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 332, + "CustomerInfo": 84651543, + "PaymentType": "Debit Card" + }, + { + "Id": 14637, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2018-12-14T12:55:09", + "TransactionId": 52293685, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 454, + "CustomerInfo": 42173653, + "PaymentType": "Cash" + }, + { + "Id": 14638, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2017-04-25T17:00:58", + "TransactionId": 93025615, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 847, + "CustomerInfo": 8056038, + "PaymentType": "Credit Card" + }, + { + "Id": 14639, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-04-28T10:36:37", + "TransactionId": 98635936, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 934, + "CustomerInfo": 961500, + "PaymentType": "Credit Card" + }, + { + "Id": 14640, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2019-10-30T07:59:31", + "TransactionId": 77859035, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 94, + "CustomerInfo": 20886135, + "PaymentType": "Debit Card" + }, + { + "Id": 14641, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2017-07-18T13:50:27", + "TransactionId": 17145356, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 114, + "CustomerInfo": 81835188, + "PaymentType": "Debit Card" + }, + { + "Id": 14642, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2017-06-22T10:22:57", + "TransactionId": 121133, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 83853387, + "PaymentType": "Cash" + }, + { + "Id": 14643, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-12-23T08:56:50", + "TransactionId": 31987245, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 367, + "CustomerInfo": 80838029, + "PaymentType": "Credit Card" + }, + { + "Id": 14644, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2016-06-17T17:09:27", + "TransactionId": 58314655, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 745, + "CustomerInfo": 8254998, + "PaymentType": "Cash" + }, + { + "Id": 14645, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2018-07-12T19:59:05", + "TransactionId": 17742778, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 125, + "CustomerInfo": 60238516, + "PaymentType": "Cash" + }, + { + "Id": 14646, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-11-27T14:49:55", + "TransactionId": 73154655, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 729, + "CustomerInfo": 81590370, + "PaymentType": "Credit Card" + }, + { + "Id": 14647, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-06-12T17:35:57", + "TransactionId": 99724973, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 201, + "CustomerInfo": 55860398, + "PaymentType": "Cash" + }, + { + "Id": 14648, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-07-21T15:35:08", + "TransactionId": 83954275, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 829, + "CustomerInfo": 71826791, + "PaymentType": "Cash" + }, + { + "Id": 14649, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-04-19T07:41:57", + "TransactionId": 25480248, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 42, + "CustomerInfo": 62740097, + "PaymentType": "Debit Card" + }, + { + "Id": 14650, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2018-02-19T08:34:05", + "TransactionId": 33776959, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 208, + "CustomerInfo": 91494024, + "PaymentType": "Cash" + }, + { + "Id": 14651, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-09-28T07:25:49", + "TransactionId": 12136249, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 63, + "CustomerInfo": 53915394, + "PaymentType": "Credit Card" + }, + { + "Id": 14652, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-05-05T07:14:27", + "TransactionId": 48914285, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 526, + "CustomerInfo": 60832310, + "PaymentType": "Debit Card" + }, + { + "Id": 14653, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2017-08-12T14:47:28", + "TransactionId": 42316519, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 419, + "CustomerInfo": 36440976, + "PaymentType": "Debit Card" + }, + { + "Id": 14654, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2018-08-29T19:38:47", + "TransactionId": 62435194, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 832, + "CustomerInfo": 91214297, + "PaymentType": "Cash" + }, + { + "Id": 14655, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2019-09-24T15:15:59", + "TransactionId": 21021662, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 618, + "CustomerInfo": 13024433, + "PaymentType": "Cash" + }, + { + "Id": 14656, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2018-12-13T07:01:12", + "TransactionId": 84913988, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 6, + "CustomerInfo": 8913489, + "PaymentType": "Debit Card" + }, + { + "Id": 14657, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2018-01-09T08:47:20", + "TransactionId": 91487244, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 226, + "CustomerInfo": 49676788, + "PaymentType": "Cash" + }, + { + "Id": 14658, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-10-26T08:44:36", + "TransactionId": 25945250, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 297, + "CustomerInfo": 5538361, + "PaymentType": "Cash" + }, + { + "Id": 14659, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-07-28T14:00:14", + "TransactionId": 1418379, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 81, + "CustomerInfo": 62347560, + "PaymentType": "Debit Card" + }, + { + "Id": 14660, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2018-08-02T18:12:14", + "TransactionId": 44426337, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 93, + "CustomerInfo": 52714099, + "PaymentType": "Credit Card" + }, + { + "Id": 14661, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-11-08T19:20:04", + "TransactionId": 22721828, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 583, + "CustomerInfo": 37176851, + "PaymentType": "Credit Card" + }, + { + "Id": 14662, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-02-08T11:34:39", + "TransactionId": 66794285, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 240, + "CustomerInfo": 37419898, + "PaymentType": "Debit Card" + }, + { + "Id": 14663, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2017-11-11T16:24:49", + "TransactionId": 45704743, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 803, + "CustomerInfo": 72472292, + "PaymentType": "Credit Card" + }, + { + "Id": 14664, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2019-08-04T14:42:09", + "TransactionId": 93602555, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 950, + "CustomerInfo": 5956999, + "PaymentType": "Credit Card" + }, + { + "Id": 14665, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2017-09-11T13:21:13", + "TransactionId": 33385328, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 970, + "CustomerInfo": 96969384, + "PaymentType": "Cash" + }, + { + "Id": 14666, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-05-24T15:51:16", + "TransactionId": 51459861, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 707, + "CustomerInfo": 34774166, + "PaymentType": "Debit Card" + }, + { + "Id": 14667, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-01-17T08:10:36", + "TransactionId": 22125202, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 921, + "CustomerInfo": 97202239, + "PaymentType": "Cash" + }, + { + "Id": 14668, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2016-06-24T17:56:59", + "TransactionId": 315043, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 246, + "CustomerInfo": 17795850, + "PaymentType": "Cash" + }, + { + "Id": 14669, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2017-02-07T17:04:34", + "TransactionId": 48196182, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 920, + "CustomerInfo": 58756162, + "PaymentType": "Debit Card" + }, + { + "Id": 14670, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-06-13T07:23:40", + "TransactionId": 44098915, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 81, + "CustomerInfo": 32435184, + "PaymentType": "Debit Card" + }, + { + "Id": 14671, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2019-06-04T17:48:55", + "TransactionId": 7464822, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 696, + "CustomerInfo": 75153145, + "PaymentType": "Cash" + }, + { + "Id": 14672, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2016-03-23T17:06:35", + "TransactionId": 54671476, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 928, + "CustomerInfo": 69971338, + "PaymentType": "Cash" + }, + { + "Id": 14673, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-01-29T16:27:16", + "TransactionId": 40329999, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 390, + "CustomerInfo": 40194754, + "PaymentType": "Debit Card" + }, + { + "Id": 14674, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-05-30T16:34:28", + "TransactionId": 70827627, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 802, + "CustomerInfo": 37801701, + "PaymentType": "Cash" + }, + { + "Id": 14675, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2017-03-13T08:28:45", + "TransactionId": 71354460, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 51, + "CustomerInfo": 9380096, + "PaymentType": "Cash" + }, + { + "Id": 14676, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-05-29T13:06:23", + "TransactionId": 78314321, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 457, + "CustomerInfo": 29873814, + "PaymentType": "Credit Card" + }, + { + "Id": 14677, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-08-16T17:35:57", + "TransactionId": 10403321, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 263, + "CustomerInfo": 20557537, + "PaymentType": "Debit Card" + }, + { + "Id": 14678, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2017-11-13T13:56:56", + "TransactionId": 81442652, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 708, + "CustomerInfo": 10532159, + "PaymentType": "Cash" + }, + { + "Id": 14679, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-08-17T11:51:48", + "TransactionId": 24834570, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 933, + "CustomerInfo": 89570874, + "PaymentType": "Credit Card" + }, + { + "Id": 14680, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-11-02T16:03:48", + "TransactionId": 95803129, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 323, + "CustomerInfo": 81414446, + "PaymentType": "Cash" + }, + { + "Id": 14681, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2017-05-29T13:33:36", + "TransactionId": 75930715, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 489, + "CustomerInfo": 53578484, + "PaymentType": "Credit Card" + }, + { + "Id": 14682, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2019-07-16T12:56:36", + "TransactionId": 8426287, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 475, + "CustomerInfo": 56927190, + "PaymentType": "Debit Card" + }, + { + "Id": 14683, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2018-02-15T17:36:40", + "TransactionId": 53963564, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 211, + "CustomerInfo": 38187715, + "PaymentType": "Credit Card" + }, + { + "Id": 14684, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2017-02-07T19:46:51", + "TransactionId": 93439438, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 389, + "CustomerInfo": 22395855, + "PaymentType": "Credit Card" + }, + { + "Id": 14685, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-11-03T19:58:57", + "TransactionId": 17852953, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 158, + "CustomerInfo": 40641649, + "PaymentType": "Cash" + }, + { + "Id": 14686, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-09-29T16:40:48", + "TransactionId": 73486828, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 215, + "CustomerInfo": 54020204, + "PaymentType": "Cash" + }, + { + "Id": 14687, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2019-05-04T13:14:01", + "TransactionId": 19103382, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 843, + "CustomerInfo": 82489639, + "PaymentType": "Debit Card" + }, + { + "Id": 14688, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-04-08T14:11:28", + "TransactionId": 39017863, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 216, + "CustomerInfo": 76880596, + "PaymentType": "Debit Card" + }, + { + "Id": 14689, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-07-18T18:54:43", + "TransactionId": 6838071, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 49931837, + "PaymentType": "Credit Card" + }, + { + "Id": 14690, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-04-20T16:34:45", + "TransactionId": 47414527, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 685, + "CustomerInfo": 50067047, + "PaymentType": "Debit Card" + }, + { + "Id": 14691, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2018-04-10T11:40:34", + "TransactionId": 34459333, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 882, + "CustomerInfo": 4429551, + "PaymentType": "Credit Card" + }, + { + "Id": 14692, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2018-10-09T18:41:54", + "TransactionId": 3324131, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 321, + "CustomerInfo": 93168731, + "PaymentType": "Credit Card" + }, + { + "Id": 14693, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-01-13T08:34:13", + "TransactionId": 84846096, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 544, + "CustomerInfo": 87558783, + "PaymentType": "Credit Card" + }, + { + "Id": 14694, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2019-08-02T07:25:32", + "TransactionId": 67326674, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 375, + "CustomerInfo": 70621859, + "PaymentType": "Debit Card" + }, + { + "Id": 14695, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-08-16T10:46:25", + "TransactionId": 63228416, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 489, + "CustomerInfo": 27365316, + "PaymentType": "Credit Card" + }, + { + "Id": 14696, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-08-17T08:52:48", + "TransactionId": 31423624, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 470, + "CustomerInfo": 37619469, + "PaymentType": "Cash" + }, + { + "Id": 14697, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2016-01-12T17:55:15", + "TransactionId": 45876191, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 586, + "CustomerInfo": 89197506, + "PaymentType": "Cash" + }, + { + "Id": 14698, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2019-10-07T18:38:44", + "TransactionId": 55544902, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 644, + "CustomerInfo": 61108293, + "PaymentType": "Credit Card" + }, + { + "Id": 14699, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2019-05-13T13:05:31", + "TransactionId": 63675090, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 493, + "CustomerInfo": 5078167, + "PaymentType": "Cash" + }, + { + "Id": 14700, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2016-01-17T19:39:04", + "TransactionId": 13287249, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 27, + "CustomerInfo": 58880700, + "PaymentType": "Cash" + }, + { + "Id": 14701, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-10-29T10:22:31", + "TransactionId": 85331324, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 834, + "CustomerInfo": 79602032, + "PaymentType": "Credit Card" + }, + { + "Id": 14702, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2016-08-31T09:41:28", + "TransactionId": 72003425, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 540, + "CustomerInfo": 32572416, + "PaymentType": "Credit Card" + }, + { + "Id": 14703, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2017-12-14T19:28:51", + "TransactionId": 9889612, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 383, + "CustomerInfo": 43390210, + "PaymentType": "Cash" + }, + { + "Id": 14704, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-04-08T08:28:36", + "TransactionId": 57198550, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 305, + "CustomerInfo": 25052864, + "PaymentType": "Debit Card" + }, + { + "Id": 14705, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-05-17T12:00:09", + "TransactionId": 68154802, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 229, + "CustomerInfo": 46307813, + "PaymentType": "Cash" + }, + { + "Id": 14706, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-07-22T11:11:02", + "TransactionId": 53458456, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 713, + "CustomerInfo": 87813550, + "PaymentType": "Debit Card" + }, + { + "Id": 14707, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2018-10-05T16:22:13", + "TransactionId": 11062129, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 165, + "CustomerInfo": 59747344, + "PaymentType": "Debit Card" + }, + { + "Id": 14708, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-04-10T14:02:33", + "TransactionId": 53683343, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 377, + "CustomerInfo": 5993360, + "PaymentType": "Debit Card" + }, + { + "Id": 14709, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2016-03-15T08:50:04", + "TransactionId": 38371385, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 483, + "CustomerInfo": 92323263, + "PaymentType": "Credit Card" + }, + { + "Id": 14710, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2017-08-15T18:23:46", + "TransactionId": 24180103, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 999, + "CustomerInfo": 11728275, + "PaymentType": "Debit Card" + }, + { + "Id": 14711, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2018-12-23T08:04:51", + "TransactionId": 47629349, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 513, + "CustomerInfo": 53166767, + "PaymentType": "Debit Card" + }, + { + "Id": 14712, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-04-08T10:46:16", + "TransactionId": 62470308, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 810, + "CustomerInfo": 31793571, + "PaymentType": "Cash" + }, + { + "Id": 14713, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2016-03-25T15:04:19", + "TransactionId": 78744776, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 300, + "CustomerInfo": 98185887, + "PaymentType": "Debit Card" + }, + { + "Id": 14714, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-05-30T12:30:06", + "TransactionId": 28054168, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 401, + "CustomerInfo": 78445583, + "PaymentType": "Credit Card" + }, + { + "Id": 14715, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2017-06-28T14:27:27", + "TransactionId": 75485978, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 38, + "CustomerInfo": 69612909, + "PaymentType": "Debit Card" + }, + { + "Id": 14716, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2016-06-11T17:34:31", + "TransactionId": 79838723, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 253, + "CustomerInfo": 55673365, + "PaymentType": "Debit Card" + }, + { + "Id": 14717, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2019-09-02T09:04:45", + "TransactionId": 69796757, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 917, + "CustomerInfo": 2707157, + "PaymentType": "Cash" + }, + { + "Id": 14718, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2019-06-25T08:19:32", + "TransactionId": 34117532, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 25, + "CustomerInfo": 88395532, + "PaymentType": "Credit Card" + }, + { + "Id": 14719, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2017-04-06T07:49:18", + "TransactionId": 34215866, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 149, + "CustomerInfo": 95358040, + "PaymentType": "Credit Card" + }, + { + "Id": 14720, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2016-06-28T15:36:52", + "TransactionId": 95605314, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 996, + "CustomerInfo": 9807571, + "PaymentType": "Cash" + }, + { + "Id": 14721, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2018-07-14T16:45:24", + "TransactionId": 56162686, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 12433510, + "PaymentType": "Debit Card" + }, + { + "Id": 14722, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2016-07-23T19:12:17", + "TransactionId": 46924749, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 537, + "CustomerInfo": 48399677, + "PaymentType": "Credit Card" + }, + { + "Id": 14723, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-07-31T18:37:44", + "TransactionId": 20935452, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 714, + "CustomerInfo": 36454616, + "PaymentType": "Credit Card" + }, + { + "Id": 14724, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2016-04-03T13:43:41", + "TransactionId": 17419224, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 10083921, + "PaymentType": "Debit Card" + }, + { + "Id": 14725, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-07-02T13:45:24", + "TransactionId": 44332694, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 543, + "CustomerInfo": 352797, + "PaymentType": "Cash" + }, + { + "Id": 14726, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-02-27T16:01:38", + "TransactionId": 65024590, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 306, + "CustomerInfo": 22379694, + "PaymentType": "Cash" + }, + { + "Id": 14727, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-12-16T13:08:50", + "TransactionId": 64047519, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 502, + "CustomerInfo": 74388735, + "PaymentType": "Credit Card" + }, + { + "Id": 14728, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-01-03T08:43:18", + "TransactionId": 24991164, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 585, + "CustomerInfo": 35578836, + "PaymentType": "Credit Card" + }, + { + "Id": 14729, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2016-12-19T08:25:00", + "TransactionId": 31889366, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 700, + "CustomerInfo": 7488810, + "PaymentType": "Credit Card" + }, + { + "Id": 14730, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-10-05T11:50:21", + "TransactionId": 83331466, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 359, + "CustomerInfo": 66348485, + "PaymentType": "Cash" + }, + { + "Id": 14731, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-02-10T18:07:38", + "TransactionId": 84166778, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 871, + "CustomerInfo": 42988998, + "PaymentType": "Credit Card" + }, + { + "Id": 14732, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2018-06-22T12:03:53", + "TransactionId": 82801340, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 49948052, + "PaymentType": "Cash" + }, + { + "Id": 14733, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-01-05T14:27:53", + "TransactionId": 69762256, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 85, + "CustomerInfo": 14168226, + "PaymentType": "Debit Card" + }, + { + "Id": 14734, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2017-12-28T17:58:34", + "TransactionId": 75616512, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 7821393, + "PaymentType": "Credit Card" + }, + { + "Id": 14735, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2016-02-09T14:12:20", + "TransactionId": 50497669, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 363, + "CustomerInfo": 59086287, + "PaymentType": "Cash" + }, + { + "Id": 14736, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2018-12-05T12:44:47", + "TransactionId": 5701660, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 781, + "CustomerInfo": 54315678, + "PaymentType": "Debit Card" + }, + { + "Id": 14737, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-12-06T14:26:18", + "TransactionId": 95491391, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 918, + "CustomerInfo": 7029779, + "PaymentType": "Credit Card" + }, + { + "Id": 14738, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-02-08T19:29:17", + "TransactionId": 25062767, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 417, + "CustomerInfo": 51109092, + "PaymentType": "Credit Card" + }, + { + "Id": 14739, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-04-01T17:56:59", + "TransactionId": 65750263, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 166, + "CustomerInfo": 73566326, + "PaymentType": "Cash" + }, + { + "Id": 14740, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-02-19T18:06:03", + "TransactionId": 6099648, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 133, + "CustomerInfo": 3358894, + "PaymentType": "Debit Card" + }, + { + "Id": 14741, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-04-20T17:46:36", + "TransactionId": 70620473, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 623, + "CustomerInfo": 53269289, + "PaymentType": "Debit Card" + }, + { + "Id": 14742, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-12-27T15:47:40", + "TransactionId": 37491892, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 926, + "CustomerInfo": 93202055, + "PaymentType": "Debit Card" + }, + { + "Id": 14743, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2018-02-08T08:30:46", + "TransactionId": 3339103, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 1000, + "CustomerInfo": 57213788, + "PaymentType": "Debit Card" + }, + { + "Id": 14744, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-02-18T17:21:59", + "TransactionId": 92105381, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 228, + "CustomerInfo": 83049318, + "PaymentType": "Credit Card" + }, + { + "Id": 14745, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2018-10-28T19:57:39", + "TransactionId": 89708164, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 802, + "CustomerInfo": 68099164, + "PaymentType": "Debit Card" + }, + { + "Id": 14746, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2019-12-15T18:00:43", + "TransactionId": 55589524, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 537, + "CustomerInfo": 43511664, + "PaymentType": "Debit Card" + }, + { + "Id": 14747, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2019-04-17T11:06:43", + "TransactionId": 66016670, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 83609244, + "PaymentType": "Debit Card" + }, + { + "Id": 14748, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-08-06T10:26:41", + "TransactionId": 78778627, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 838, + "CustomerInfo": 96780107, + "PaymentType": "Cash" + }, + { + "Id": 14749, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2017-06-12T10:57:13", + "TransactionId": 41570849, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 598, + "CustomerInfo": 14495513, + "PaymentType": "Cash" + }, + { + "Id": 14750, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2017-08-19T09:19:18", + "TransactionId": 71615992, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 66, + "CustomerInfo": 73137330, + "PaymentType": "Credit Card" + }, + { + "Id": 14751, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-01-12T13:20:12", + "TransactionId": 18625898, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 743, + "CustomerInfo": 94052005, + "PaymentType": "Debit Card" + }, + { + "Id": 14752, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2019-12-05T11:43:52", + "TransactionId": 93256301, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 226, + "CustomerInfo": 70292970, + "PaymentType": "Credit Card" + }, + { + "Id": 14753, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2018-09-29T12:08:12", + "TransactionId": 57746218, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 523, + "CustomerInfo": 94921365, + "PaymentType": "Debit Card" + }, + { + "Id": 14754, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2017-09-29T10:49:00", + "TransactionId": 85278087, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 70, + "CustomerInfo": 59878385, + "PaymentType": "Cash" + }, + { + "Id": 14755, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-05-16T09:19:26", + "TransactionId": 96937194, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 678, + "CustomerInfo": 81366073, + "PaymentType": "Debit Card" + }, + { + "Id": 14756, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-05-24T16:51:36", + "TransactionId": 98324751, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 186, + "CustomerInfo": 33139468, + "PaymentType": "Cash" + }, + { + "Id": 14757, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2017-03-27T07:59:57", + "TransactionId": 51259349, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 783, + "CustomerInfo": 81394905, + "PaymentType": "Credit Card" + }, + { + "Id": 14758, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2016-07-28T17:51:13", + "TransactionId": 35698513, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 342, + "CustomerInfo": 14638235, + "PaymentType": "Debit Card" + }, + { + "Id": 14759, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-05-31T18:21:53", + "TransactionId": 13801680, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 241, + "CustomerInfo": 19710165, + "PaymentType": "Credit Card" + }, + { + "Id": 14760, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2018-07-21T09:45:22", + "TransactionId": 66880112, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 670, + "CustomerInfo": 65849912, + "PaymentType": "Cash" + }, + { + "Id": 14761, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2016-07-15T19:31:09", + "TransactionId": 86003518, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 34, + "CustomerInfo": 17511986, + "PaymentType": "Cash" + }, + { + "Id": 14762, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2018-06-28T14:04:16", + "TransactionId": 67044069, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 755, + "CustomerInfo": 10469163, + "PaymentType": "Credit Card" + }, + { + "Id": 14763, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-06-01T19:40:05", + "TransactionId": 71765384, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 18, + "CustomerInfo": 13508135, + "PaymentType": "Cash" + }, + { + "Id": 14764, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2016-05-03T16:05:57", + "TransactionId": 86723557, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 314, + "CustomerInfo": 2723321, + "PaymentType": "Credit Card" + }, + { + "Id": 14765, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2019-03-07T17:48:03", + "TransactionId": 79052016, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 467, + "CustomerInfo": 14147397, + "PaymentType": "Cash" + }, + { + "Id": 14766, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-07-13T14:43:26", + "TransactionId": 14565481, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 463, + "CustomerInfo": 13352533, + "PaymentType": "Cash" + }, + { + "Id": 14767, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2016-07-23T17:55:15", + "TransactionId": 71735208, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 170, + "CustomerInfo": 19948115, + "PaymentType": "Cash" + }, + { + "Id": 14768, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2019-05-21T11:26:01", + "TransactionId": 90987631, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 85414620, + "PaymentType": "Debit Card" + }, + { + "Id": 14769, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2019-04-27T09:15:16", + "TransactionId": 48223640, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 600, + "CustomerInfo": 53493678, + "PaymentType": "Cash" + }, + { + "Id": 14770, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2017-02-11T18:19:18", + "TransactionId": 36678889, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 296, + "CustomerInfo": 76016722, + "PaymentType": "Cash" + }, + { + "Id": 14771, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2019-09-05T17:47:46", + "TransactionId": 42274860, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 603, + "CustomerInfo": 27750686, + "PaymentType": "Cash" + }, + { + "Id": 14772, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2016-05-25T10:12:52", + "TransactionId": 13381281, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 777, + "CustomerInfo": 22758921, + "PaymentType": "Cash" + }, + { + "Id": 14773, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2016-03-20T09:18:26", + "TransactionId": 62614678, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 137, + "CustomerInfo": 90266844, + "PaymentType": "Debit Card" + }, + { + "Id": 14774, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2018-07-14T11:36:14", + "TransactionId": 26597819, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 296, + "CustomerInfo": 54237317, + "PaymentType": "Cash" + }, + { + "Id": 14775, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-06-04T08:51:04", + "TransactionId": 72672038, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 777, + "CustomerInfo": 98161800, + "PaymentType": "Credit Card" + }, + { + "Id": 14776, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-03-01T14:06:43", + "TransactionId": 77380108, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 862, + "CustomerInfo": 8046484, + "PaymentType": "Credit Card" + }, + { + "Id": 14777, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2016-08-14T15:53:51", + "TransactionId": 47930472, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 527, + "CustomerInfo": 96335030, + "PaymentType": "Cash" + }, + { + "Id": 14778, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-06-29T14:15:56", + "TransactionId": 70786506, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 140, + "CustomerInfo": 48023800, + "PaymentType": "Credit Card" + }, + { + "Id": 14779, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2019-06-06T11:57:07", + "TransactionId": 37413935, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 329, + "CustomerInfo": 73159610, + "PaymentType": "Cash" + }, + { + "Id": 14780, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2017-12-13T12:06:29", + "TransactionId": 85428959, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 951, + "CustomerInfo": 84233617, + "PaymentType": "Cash" + }, + { + "Id": 14781, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-06-10T08:35:14", + "TransactionId": 63989763, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 543, + "CustomerInfo": 86662359, + "PaymentType": "Debit Card" + }, + { + "Id": 14782, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2017-02-09T07:17:11", + "TransactionId": 76080937, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 44, + "CustomerInfo": 91141998, + "PaymentType": "Cash" + }, + { + "Id": 14783, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-12-18T11:02:41", + "TransactionId": 30318478, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 78, + "CustomerInfo": 93794684, + "PaymentType": "Cash" + }, + { + "Id": 14784, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-12-28T19:24:40", + "TransactionId": 52936697, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 412, + "CustomerInfo": 59792684, + "PaymentType": "Debit Card" + }, + { + "Id": 14785, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-12-25T13:58:05", + "TransactionId": 44381629, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 393, + "CustomerInfo": 33764281, + "PaymentType": "Cash" + }, + { + "Id": 14786, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2016-02-09T15:51:16", + "TransactionId": 15863552, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 950, + "CustomerInfo": 7263457, + "PaymentType": "Cash" + }, + { + "Id": 14787, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-08-01T19:39:22", + "TransactionId": 4407810, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 18, + "CustomerInfo": 20805145, + "PaymentType": "Credit Card" + }, + { + "Id": 14788, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-12-07T16:49:35", + "TransactionId": 8404951, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 502, + "CustomerInfo": 73583423, + "PaymentType": "Cash" + }, + { + "Id": 14789, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-09-03T12:42:37", + "TransactionId": 31406894, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 680, + "CustomerInfo": 99693057, + "PaymentType": "Credit Card" + }, + { + "Id": 14790, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2018-10-15T13:06:49", + "TransactionId": 33209042, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 96, + "CustomerInfo": 84775045, + "PaymentType": "Debit Card" + }, + { + "Id": 14791, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2017-12-20T14:42:17", + "TransactionId": 34843899, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 268, + "CustomerInfo": 55147622, + "PaymentType": "Debit Card" + }, + { + "Id": 14792, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-10-11T08:47:11", + "TransactionId": 76269003, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 73, + "CustomerInfo": 10233463, + "PaymentType": "Debit Card" + }, + { + "Id": 14793, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2019-05-16T08:37:32", + "TransactionId": 82988930, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 376, + "CustomerInfo": 34866218, + "PaymentType": "Debit Card" + }, + { + "Id": 14794, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-08-28T11:25:44", + "TransactionId": 69070022, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 64, + "CustomerInfo": 51930070, + "PaymentType": "Debit Card" + }, + { + "Id": 14795, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2019-11-23T09:37:35", + "TransactionId": 8582503, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 989, + "CustomerInfo": 6272786, + "PaymentType": "Debit Card" + }, + { + "Id": 14796, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2017-08-09T08:15:48", + "TransactionId": 79384203, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 613, + "CustomerInfo": 85388138, + "PaymentType": "Debit Card" + }, + { + "Id": 14797, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2019-04-01T12:19:18", + "TransactionId": 72727565, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 785, + "CustomerInfo": 50919075, + "PaymentType": "Credit Card" + }, + { + "Id": 14798, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-04-09T08:12:12", + "TransactionId": 26100966, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 992, + "CustomerInfo": 9261379, + "PaymentType": "Credit Card" + }, + { + "Id": 14799, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2019-09-04T17:58:51", + "TransactionId": 23648175, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 310, + "CustomerInfo": 58827187, + "PaymentType": "Cash" + }, + { + "Id": 14800, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2017-06-16T17:21:16", + "TransactionId": 59951196, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 261, + "CustomerInfo": 82741223, + "PaymentType": "Credit Card" + }, + { + "Id": 14801, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2017-02-09T18:27:39", + "TransactionId": 70976027, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 463, + "CustomerInfo": 57688292, + "PaymentType": "Cash" + }, + { + "Id": 14802, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2018-10-19T09:27:30", + "TransactionId": 99454023, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 91, + "CustomerInfo": 88095956, + "PaymentType": "Debit Card" + }, + { + "Id": 14803, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2018-02-05T15:56:44", + "TransactionId": 41695264, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 536, + "CustomerInfo": 50635025, + "PaymentType": "Debit Card" + }, + { + "Id": 14804, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2018-07-28T08:05:00", + "TransactionId": 29288182, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 99, + "CustomerInfo": 31875974, + "PaymentType": "Credit Card" + }, + { + "Id": 14805, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-04-16T14:57:16", + "TransactionId": 80704561, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 701, + "CustomerInfo": 67111634, + "PaymentType": "Cash" + }, + { + "Id": 14806, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2019-06-16T16:53:11", + "TransactionId": 26568028, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 739, + "CustomerInfo": 31236834, + "PaymentType": "Credit Card" + }, + { + "Id": 14807, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2018-09-12T11:50:56", + "TransactionId": 38162528, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 413, + "CustomerInfo": 50946574, + "PaymentType": "Debit Card" + }, + { + "Id": 14808, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2017-04-11T17:00:06", + "TransactionId": 12904144, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 498, + "CustomerInfo": 33239882, + "PaymentType": "Debit Card" + }, + { + "Id": 14809, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-10-06T11:04:08", + "TransactionId": 84821549, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 318, + "CustomerInfo": 50292709, + "PaymentType": "Debit Card" + }, + { + "Id": 14810, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-07-25T17:00:58", + "TransactionId": 65782367, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 706, + "CustomerInfo": 77350448, + "PaymentType": "Cash" + }, + { + "Id": 14811, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2018-09-26T10:41:14", + "TransactionId": 50370, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 858, + "CustomerInfo": 20913830, + "PaymentType": "Credit Card" + }, + { + "Id": 14812, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-09-06T19:46:25", + "TransactionId": 3100043, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 875, + "CustomerInfo": 47028188, + "PaymentType": "Cash" + }, + { + "Id": 14813, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-01-14T16:52:36", + "TransactionId": 67118912, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 728, + "CustomerInfo": 32900325, + "PaymentType": "Credit Card" + }, + { + "Id": 14814, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2018-06-11T12:49:41", + "TransactionId": 78533596, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 820, + "CustomerInfo": 16074583, + "PaymentType": "Credit Card" + }, + { + "Id": 14815, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2018-02-16T09:03:10", + "TransactionId": 42141687, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 490, + "CustomerInfo": 8101337, + "PaymentType": "Cash" + }, + { + "Id": 14816, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2018-02-02T07:11:17", + "TransactionId": 98796478, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 34, + "CustomerInfo": 12456148, + "PaymentType": "Debit Card" + }, + { + "Id": 14817, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-02-01T17:38:07", + "TransactionId": 96842201, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 252, + "CustomerInfo": 66181241, + "PaymentType": "Credit Card" + }, + { + "Id": 14818, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2018-08-10T12:02:44", + "TransactionId": 68823428, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 565, + "CustomerInfo": 70468880, + "PaymentType": "Credit Card" + }, + { + "Id": 14819, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-04-26T09:07:21", + "TransactionId": 75957038, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 336, + "CustomerInfo": 6607466, + "PaymentType": "Credit Card" + }, + { + "Id": 14820, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2019-07-19T12:09:13", + "TransactionId": 21954693, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 669, + "CustomerInfo": 13364875, + "PaymentType": "Cash" + }, + { + "Id": 14821, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-03-29T14:55:15", + "TransactionId": 10074109, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 947, + "CustomerInfo": 6845449, + "PaymentType": "Debit Card" + }, + { + "Id": 14822, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2016-06-09T15:48:58", + "TransactionId": 77630137, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 44271757, + "PaymentType": "Cash" + }, + { + "Id": 14823, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2018-06-12T15:15:42", + "TransactionId": 64022586, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 288, + "CustomerInfo": 75445511, + "PaymentType": "Credit Card" + }, + { + "Id": 14824, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2018-10-13T18:46:57", + "TransactionId": 55533761, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 756, + "CustomerInfo": 76459716, + "PaymentType": "Credit Card" + }, + { + "Id": 14825, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2016-06-01T16:59:40", + "TransactionId": 94948928, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 237, + "CustomerInfo": 3258675, + "PaymentType": "Cash" + }, + { + "Id": 14826, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-04-09T18:12:58", + "TransactionId": 70991096, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 43, + "CustomerInfo": 23015365, + "PaymentType": "Cash" + }, + { + "Id": 14827, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2017-02-06T18:55:09", + "TransactionId": 41713783, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 631, + "CustomerInfo": 17844446, + "PaymentType": "Debit Card" + }, + { + "Id": 14828, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-07-01T07:41:57", + "TransactionId": 97036187, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 653, + "CustomerInfo": 90684724, + "PaymentType": "Credit Card" + }, + { + "Id": 14829, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-1", + "TransactionDate": "2017-09-19T14:33:04", + "TransactionId": 54589483, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 314, + "CustomerInfo": 13620332, + "PaymentType": "Credit Card" + }, + { + "Id": 14830, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2017-03-17T12:19:52", + "TransactionId": 25606062, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 929, + "CustomerInfo": 39321057, + "PaymentType": "Cash" + }, + { + "Id": 14831, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2019-09-25T18:44:38", + "TransactionId": 15385460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 865, + "CustomerInfo": 12270785, + "PaymentType": "Cash" + }, + { + "Id": 14832, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-04-21T16:31:35", + "TransactionId": 25241719, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 532, + "CustomerInfo": 41036660, + "PaymentType": "Debit Card" + }, + { + "Id": 14833, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-07-19T18:22:54", + "TransactionId": 38846666, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 350, + "CustomerInfo": 72982939, + "PaymentType": "Debit Card" + }, + { + "Id": 14834, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2017-08-17T12:42:29", + "TransactionId": 78377202, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 266, + "CustomerInfo": 66192788, + "PaymentType": "Cash" + }, + { + "Id": 14835, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-06-08T15:12:40", + "TransactionId": 68819257, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 784, + "CustomerInfo": 2904670, + "PaymentType": "Cash" + }, + { + "Id": 14836, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2019-10-05T08:08:36", + "TransactionId": 67764326, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 695, + "CustomerInfo": 80124413, + "PaymentType": "Cash" + }, + { + "Id": 14837, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2018-02-15T19:14:18", + "TransactionId": 56003869, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 919, + "CustomerInfo": 8805530, + "PaymentType": "Credit Card" + }, + { + "Id": 14838, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2019-07-08T10:45:24", + "TransactionId": 31827626, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 477, + "CustomerInfo": 41760165, + "PaymentType": "Credit Card" + }, + { + "Id": 14839, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2016-04-12T18:04:54", + "TransactionId": 18695645, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 79, + "CustomerInfo": 16067577, + "PaymentType": "Cash" + }, + { + "Id": 14840, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2017-10-07T18:42:03", + "TransactionId": 31348177, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 589, + "CustomerInfo": 85807054, + "PaymentType": "Cash" + }, + { + "Id": 14841, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-01-10T09:06:55", + "TransactionId": 79266545, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 289, + "CustomerInfo": 33927202, + "PaymentType": "Cash" + }, + { + "Id": 14842, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-12-31T16:30:52", + "TransactionId": 31563016, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 91, + "CustomerInfo": 16409491, + "PaymentType": "Debit Card" + }, + { + "Id": 14843, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2019-10-24T13:57:39", + "TransactionId": 4277212, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 405, + "CustomerInfo": 29373000, + "PaymentType": "Debit Card" + }, + { + "Id": 14844, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2018-06-05T19:08:59", + "TransactionId": 85619417, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 568, + "CustomerInfo": 54031558, + "PaymentType": "Debit Card" + }, + { + "Id": 14845, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2017-02-13T18:50:33", + "TransactionId": 45613400, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 306, + "CustomerInfo": 28941614, + "PaymentType": "Cash" + }, + { + "Id": 14846, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2019-07-28T18:34:51", + "TransactionId": 32350006, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 193, + "CustomerInfo": 69616739, + "PaymentType": "Credit Card" + }, + { + "Id": 14847, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2018-01-12T11:03:50", + "TransactionId": 48664523, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 237, + "CustomerInfo": 14772315, + "PaymentType": "Cash" + }, + { + "Id": 14848, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2017-07-27T07:31:18", + "TransactionId": 48943101, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 628, + "CustomerInfo": 46644848, + "PaymentType": "Debit Card" + }, + { + "Id": 14849, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-08-21T11:16:57", + "TransactionId": 29890709, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 730, + "CustomerInfo": 35904664, + "PaymentType": "Cash" + }, + { + "Id": 14850, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2019-04-22T11:57:16", + "TransactionId": 47697075, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 631, + "CustomerInfo": 28433840, + "PaymentType": "Credit Card" + }, + { + "Id": 14851, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-10-22T13:13:00", + "TransactionId": 56947049, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 995, + "CustomerInfo": 74885081, + "PaymentType": "Debit Card" + }, + { + "Id": 14852, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2019-08-27T16:33:53", + "TransactionId": 65665931, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 237, + "CustomerInfo": 96532089, + "PaymentType": "Debit Card" + }, + { + "Id": 14853, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2019-11-25T11:51:13", + "TransactionId": 51452031, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 956, + "CustomerInfo": 64425545, + "PaymentType": "Credit Card" + }, + { + "Id": 14854, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-07-16T16:27:42", + "TransactionId": 65878906, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 121, + "CustomerInfo": 65045224, + "PaymentType": "Credit Card" + }, + { + "Id": 14855, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2018-08-14T11:30:29", + "TransactionId": 14244112, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 885, + "CustomerInfo": 23175265, + "PaymentType": "Cash" + }, + { + "Id": 14856, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2017-06-22T16:57:48", + "TransactionId": 8760391, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 425, + "CustomerInfo": 55581237, + "PaymentType": "Debit Card" + }, + { + "Id": 14857, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-10-02T15:39:45", + "TransactionId": 90807720, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 827, + "CustomerInfo": 90729613, + "PaymentType": "Cash" + }, + { + "Id": 14858, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2018-05-05T08:46:36", + "TransactionId": 23067280, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 170, + "CustomerInfo": 17388571, + "PaymentType": "Debit Card" + }, + { + "Id": 14859, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2017-08-20T16:10:51", + "TransactionId": 59111735, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 41408630, + "PaymentType": "Debit Card" + }, + { + "Id": 14860, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2018-02-09T19:27:59", + "TransactionId": 65827619, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 783, + "CustomerInfo": 41183634, + "PaymentType": "Credit Card" + }, + { + "Id": 14861, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2016-04-10T18:24:37", + "TransactionId": 48776940, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 402, + "CustomerInfo": 10057037, + "PaymentType": "Credit Card" + }, + { + "Id": 14862, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-07-17T07:06:14", + "TransactionId": 88213099, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 750, + "CustomerInfo": 15154761, + "PaymentType": "Credit Card" + }, + { + "Id": 14863, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-04-16T13:44:50", + "TransactionId": 26466666, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 302, + "CustomerInfo": 35168755, + "PaymentType": "Credit Card" + }, + { + "Id": 14864, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-07-06T08:09:36", + "TransactionId": 53941996, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 227, + "CustomerInfo": 98679835, + "PaymentType": "Debit Card" + }, + { + "Id": 14865, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2016-10-23T08:27:45", + "TransactionId": 78161476, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 687, + "CustomerInfo": 56416778, + "PaymentType": "Cash" + }, + { + "Id": 14866, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-05-21T17:50:38", + "TransactionId": 19559609, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 587, + "CustomerInfo": 37762523, + "PaymentType": "Credit Card" + }, + { + "Id": 14867, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2018-12-09T07:32:10", + "TransactionId": 14787550, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 337, + "CustomerInfo": 77826421, + "PaymentType": "Debit Card" + }, + { + "Id": 14868, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-09-01T10:15:01", + "TransactionId": 69401212, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 271, + "CustomerInfo": 27532003, + "PaymentType": "Credit Card" + }, + { + "Id": 14869, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2016-09-02T16:48:09", + "TransactionId": 68822369, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 479, + "CustomerInfo": 76763725, + "PaymentType": "Debit Card" + }, + { + "Id": 14870, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-10-09T16:18:37", + "TransactionId": 37570693, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 946, + "CustomerInfo": 62558, + "PaymentType": "Credit Card" + }, + { + "Id": 14871, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-07-20T10:11:17", + "TransactionId": 99294830, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 705, + "CustomerInfo": 33766870, + "PaymentType": "Debit Card" + }, + { + "Id": 14872, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2019-11-13T18:07:38", + "TransactionId": 10973519, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 591, + "CustomerInfo": 28407894, + "PaymentType": "Cash" + }, + { + "Id": 14873, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2016-09-28T10:51:19", + "TransactionId": 15388752, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 784, + "CustomerInfo": 47936886, + "PaymentType": "Cash" + }, + { + "Id": 14874, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-07-02T17:32:21", + "TransactionId": 49649059, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 510, + "CustomerInfo": 61558447, + "PaymentType": "Credit Card" + }, + { + "Id": 14875, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2016-06-14T11:56:24", + "TransactionId": 21865750, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 814, + "CustomerInfo": 164269, + "PaymentType": "Cash" + }, + { + "Id": 14876, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2017-08-26T16:02:12", + "TransactionId": 78410616, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 255, + "CustomerInfo": 14438231, + "PaymentType": "Credit Card" + }, + { + "Id": 14877, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-10-11T17:03:42", + "TransactionId": 43462056, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 174, + "CustomerInfo": 53058506, + "PaymentType": "Cash" + }, + { + "Id": 14878, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2016-03-17T07:21:04", + "TransactionId": 87676753, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 35, + "CustomerInfo": 86757662, + "PaymentType": "Debit Card" + }, + { + "Id": 14879, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-06-15T13:19:38", + "TransactionId": 16525892, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 284, + "CustomerInfo": 86926666, + "PaymentType": "Cash" + }, + { + "Id": 14880, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-01-25T12:28:48", + "TransactionId": 83711996, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 176, + "CustomerInfo": 63165599, + "PaymentType": "Cash" + }, + { + "Id": 14881, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2018-07-18T15:31:58", + "TransactionId": 88270362, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 365, + "CustomerInfo": 51313901, + "PaymentType": "Debit Card" + }, + { + "Id": 14882, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-01-31T11:42:26", + "TransactionId": 86991649, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 490, + "CustomerInfo": 62028442, + "PaymentType": "Debit Card" + }, + { + "Id": 14883, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-03-10T18:48:14", + "TransactionId": 765479, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 775, + "CustomerInfo": 58993277, + "PaymentType": "Cash" + }, + { + "Id": 14884, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-04-21T18:51:16", + "TransactionId": 3442523, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 650, + "CustomerInfo": 80150395, + "PaymentType": "Cash" + }, + { + "Id": 14885, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-06-25T18:37:18", + "TransactionId": 39748521, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 641, + "CustomerInfo": 86491163, + "PaymentType": "Credit Card" + }, + { + "Id": 14886, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2017-09-14T07:24:49", + "TransactionId": 24683995, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 933, + "CustomerInfo": 76040817, + "PaymentType": "Debit Card" + }, + { + "Id": 14887, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2019-04-21T08:33:39", + "TransactionId": 60664254, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 412, + "CustomerInfo": 91075928, + "PaymentType": "Credit Card" + }, + { + "Id": 14888, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-03-03T09:06:03", + "TransactionId": 73201735, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 641, + "CustomerInfo": 45164441, + "PaymentType": "Credit Card" + }, + { + "Id": 14889, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2017-07-30T08:41:43", + "TransactionId": 7612523, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 73, + "CustomerInfo": 45985463, + "PaymentType": "Cash" + }, + { + "Id": 14890, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-04-10T16:18:29", + "TransactionId": 29673523, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 73, + "CustomerInfo": 60554409, + "PaymentType": "Credit Card" + }, + { + "Id": 14891, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2018-01-22T16:33:01", + "TransactionId": 48099460, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 502, + "CustomerInfo": 56376027, + "PaymentType": "Credit Card" + }, + { + "Id": 14892, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2016-02-07T08:26:53", + "TransactionId": 57534571, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 479, + "CustomerInfo": 62335299, + "PaymentType": "Debit Card" + }, + { + "Id": 14893, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-10-17T16:52:02", + "TransactionId": 28431727, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 747, + "CustomerInfo": 77453529, + "PaymentType": "Cash" + }, + { + "Id": 14894, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2016-01-14T12:11:40", + "TransactionId": 31284866, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 292, + "CustomerInfo": 66893324, + "PaymentType": "Debit Card" + }, + { + "Id": 14895, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2018-06-05T15:08:47", + "TransactionId": 46441051, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 798, + "CustomerInfo": 71507749, + "PaymentType": "Credit Card" + }, + { + "Id": 14896, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2017-12-11T13:30:35", + "TransactionId": 64129818, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 71612044, + "PaymentType": "Cash" + }, + { + "Id": 14897, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2017-07-08T19:26:59", + "TransactionId": 62022907, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 5, + "CustomerInfo": 67343021, + "PaymentType": "Cash" + }, + { + "Id": 14898, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-07-22T12:35:34", + "TransactionId": 22570262, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 127, + "CustomerInfo": 33835341, + "PaymentType": "Credit Card" + }, + { + "Id": 14899, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2016-11-21T17:09:01", + "TransactionId": 56725840, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 362, + "CustomerInfo": 87702584, + "PaymentType": "Credit Card" + }, + { + "Id": 14900, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-04-19T11:51:48", + "TransactionId": 6535890, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 352, + "CustomerInfo": 52331090, + "PaymentType": "Debit Card" + }, + { + "Id": 14901, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2019-06-20T09:46:57", + "TransactionId": 83686892, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 515, + "CustomerInfo": 98431673, + "PaymentType": "Credit Card" + }, + { + "Id": 14902, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-03-08T13:32:18", + "TransactionId": 18388913, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 103, + "CustomerInfo": 67108814, + "PaymentType": "Debit Card" + }, + { + "Id": 14903, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2019-08-27T18:13:06", + "TransactionId": 51523448, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 79909408, + "PaymentType": "Credit Card" + }, + { + "Id": 14904, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2018-10-02T18:35:17", + "TransactionId": 14305470, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 762, + "CustomerInfo": 30101467, + "PaymentType": "Credit Card" + }, + { + "Id": 14905, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-03-14T08:22:34", + "TransactionId": 16366118, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 164, + "CustomerInfo": 76213123, + "PaymentType": "Credit Card" + }, + { + "Id": 14906, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2018-07-01T14:08:27", + "TransactionId": 70639906, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 259, + "CustomerInfo": 77813783, + "PaymentType": "Credit Card" + }, + { + "Id": 14907, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-09-05T10:32:10", + "TransactionId": 71997712, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 536, + "CustomerInfo": 43492018, + "PaymentType": "Cash" + }, + { + "Id": 14908, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2018-04-26T12:08:56", + "TransactionId": 65368681, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 366, + "CustomerInfo": 72275683, + "PaymentType": "Credit Card" + }, + { + "Id": 14909, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2019-01-20T15:41:54", + "TransactionId": 44482737, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 94, + "CustomerInfo": 82000733, + "PaymentType": "Debit Card" + }, + { + "Id": 14910, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2016-08-08T19:05:05", + "TransactionId": 65707724, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 83, + "CustomerInfo": 75547773, + "PaymentType": "Credit Card" + }, + { + "Id": 14911, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-07-29T12:37:09", + "TransactionId": 82258491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 13296361, + "PaymentType": "Credit Card" + }, + { + "Id": 14912, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2017-11-24T09:56:36", + "TransactionId": 95321781, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 455, + "CustomerInfo": 3015390, + "PaymentType": "Debit Card" + }, + { + "Id": 14913, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2017-07-09T12:40:36", + "TransactionId": 64526341, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 104, + "CustomerInfo": 83180825, + "PaymentType": "Cash" + }, + { + "Id": 14914, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2018-07-27T10:02:30", + "TransactionId": 67146011, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 589, + "CustomerInfo": 21981216, + "PaymentType": "Credit Card" + }, + { + "Id": 14915, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2016-04-25T18:27:56", + "TransactionId": 42110137, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 869, + "CustomerInfo": 47792020, + "PaymentType": "Debit Card" + }, + { + "Id": 14916, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-05-09T17:55:24", + "TransactionId": 9616130, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 116, + "CustomerInfo": 71314872, + "PaymentType": "Credit Card" + }, + { + "Id": 14917, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2018-12-30T19:51:36", + "TransactionId": 12454153, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 839, + "CustomerInfo": 15290407, + "PaymentType": "Credit Card" + }, + { + "Id": 14918, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-4", + "TransactionDate": "2019-05-13T08:47:02", + "TransactionId": 31736719, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 171, + "CustomerInfo": 30009685, + "PaymentType": "Credit Card" + }, + { + "Id": 14919, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-05-25T13:55:47", + "TransactionId": 4135220, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 118, + "CustomerInfo": 180212, + "PaymentType": "Credit Card" + }, + { + "Id": 14920, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-02-03T10:51:53", + "TransactionId": 96588754, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 597, + "CustomerInfo": 42055025, + "PaymentType": "Debit Card" + }, + { + "Id": 14921, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-10-25T18:04:36", + "TransactionId": 79921401, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 643, + "CustomerInfo": 67209509, + "PaymentType": "Credit Card" + }, + { + "Id": 14922, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2017-10-08T08:50:56", + "TransactionId": 49789971, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 887, + "CustomerInfo": 61176607, + "PaymentType": "Debit Card" + }, + { + "Id": 14923, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2017-07-04T16:04:05", + "TransactionId": 81558690, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 575, + "CustomerInfo": 7733081, + "PaymentType": "Cash" + }, + { + "Id": 14924, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2016-08-17T09:41:28", + "TransactionId": 20056101, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 210, + "CustomerInfo": 27990816, + "PaymentType": "Debit Card" + }, + { + "Id": 14925, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2018-09-26T11:45:53", + "TransactionId": 51099131, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 140, + "CustomerInfo": 57262713, + "PaymentType": "Credit Card" + }, + { + "Id": 14926, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2019-03-04T18:41:28", + "TransactionId": 94039458, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 877, + "CustomerInfo": 67737342, + "PaymentType": "Debit Card" + }, + { + "Id": 14927, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2019-07-26T15:33:50", + "TransactionId": 19126329, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 56, + "CustomerInfo": 97412151, + "PaymentType": "Debit Card" + }, + { + "Id": 14928, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2016-10-12T17:32:12", + "TransactionId": 20415112, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 18, + "CustomerInfo": 63709457, + "PaymentType": "Cash" + }, + { + "Id": 14929, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-09-08T16:32:36", + "TransactionId": 10707785, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 631, + "CustomerInfo": 5666232, + "PaymentType": "Cash" + }, + { + "Id": 14930, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2018-11-16T16:28:25", + "TransactionId": 5553846, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 243, + "CustomerInfo": 89641824, + "PaymentType": "Debit Card" + }, + { + "Id": 14931, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2016-04-20T17:28:45", + "TransactionId": 75220161, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 990, + "CustomerInfo": 17528380, + "PaymentType": "Debit Card" + }, + { + "Id": 14932, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2017-08-05T16:16:45", + "TransactionId": 47178085, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 407, + "CustomerInfo": 47839042, + "PaymentType": "Cash" + }, + { + "Id": 14933, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2019-05-30T19:17:54", + "TransactionId": 83073156, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 314, + "CustomerInfo": 87550704, + "PaymentType": "Credit Card" + }, + { + "Id": 14934, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2018-04-24T17:38:59", + "TransactionId": 17613235, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 929, + "CustomerInfo": 69784320, + "PaymentType": "Cash" + }, + { + "Id": 14935, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2016-02-12T17:13:47", + "TransactionId": 49418381, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 761, + "CustomerInfo": 43909279, + "PaymentType": "Credit Card" + }, + { + "Id": 14936, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-04-02T09:55:52", + "TransactionId": 18416448, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 46, + "CustomerInfo": 26575953, + "PaymentType": "Debit Card" + }, + { + "Id": 14937, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-09-04T07:07:58", + "TransactionId": 64221240, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 392, + "CustomerInfo": 18454235, + "PaymentType": "Cash" + }, + { + "Id": 14938, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2018-01-02T08:25:26", + "TransactionId": 20274639, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 230, + "CustomerInfo": 30536606, + "PaymentType": "Credit Card" + }, + { + "Id": 14939, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-10-10T09:37:09", + "TransactionId": 21270988, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 127, + "CustomerInfo": 56207539, + "PaymentType": "Debit Card" + }, + { + "Id": 14940, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-01-25T18:05:11", + "TransactionId": 66539237, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 441, + "CustomerInfo": 11970748, + "PaymentType": "Credit Card" + }, + { + "Id": 14941, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2017-08-02T13:30:26", + "TransactionId": 78982508, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 729, + "CustomerInfo": 53711286, + "PaymentType": "Cash" + }, + { + "Id": 14942, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2017-12-18T16:10:16", + "TransactionId": 72786746, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 214, + "CustomerInfo": 8749757, + "PaymentType": "Credit Card" + }, + { + "Id": 14943, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2018-09-10T12:15:07", + "TransactionId": 30343241, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 422, + "CustomerInfo": 42358137, + "PaymentType": "Credit Card" + }, + { + "Id": 14944, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2019-06-30T18:42:29", + "TransactionId": 93761746, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 242, + "CustomerInfo": 71113769, + "PaymentType": "Credit Card" + }, + { + "Id": 14945, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-10-28T09:01:52", + "TransactionId": 13534564, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 939, + "CustomerInfo": 86455659, + "PaymentType": "Credit Card" + }, + { + "Id": 14946, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2019-02-20T17:44:18", + "TransactionId": 2499798, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 160, + "CustomerInfo": 21086416, + "PaymentType": "Debit Card" + }, + { + "Id": 14947, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-08-22T07:23:23", + "TransactionId": 88023571, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 793, + "CustomerInfo": 20369453, + "PaymentType": "Credit Card" + }, + { + "Id": 14948, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2017-04-05T11:03:59", + "TransactionId": 2286468, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 889, + "CustomerInfo": 24072445, + "PaymentType": "Credit Card" + }, + { + "Id": 14949, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2018-12-23T13:40:57", + "TransactionId": 35563615, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 16, + "CustomerInfo": 62010274, + "PaymentType": "Cash" + }, + { + "Id": 14950, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2016-12-05T14:17:40", + "TransactionId": 70521939, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 840, + "CustomerInfo": 58054961, + "PaymentType": "Cash" + }, + { + "Id": 14951, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2017-11-12T16:09:16", + "TransactionId": 79282803, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 956, + "CustomerInfo": 54086773, + "PaymentType": "Cash" + }, + { + "Id": 14952, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-03-16T12:28:13", + "TransactionId": 85752510, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 56, + "CustomerInfo": 21963555, + "PaymentType": "Cash" + }, + { + "Id": 14953, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-10-21T18:25:21", + "TransactionId": 65154719, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 453, + "CustomerInfo": 38341116, + "PaymentType": "Debit Card" + }, + { + "Id": 14954, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2017-10-24T15:41:11", + "TransactionId": 52207595, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 136, + "CustomerInfo": 75816828, + "PaymentType": "Credit Card" + }, + { + "Id": 14955, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2016-11-29T11:23:34", + "TransactionId": 50957263, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 895, + "CustomerInfo": 31181375, + "PaymentType": "Debit Card" + }, + { + "Id": 14956, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-07-25T14:19:24", + "TransactionId": 52875316, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 816, + "CustomerInfo": 89793466, + "PaymentType": "Debit Card" + }, + { + "Id": 14957, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-12-05T18:20:10", + "TransactionId": 35415257, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 887, + "CustomerInfo": 37758373, + "PaymentType": "Credit Card" + }, + { + "Id": 14958, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-01-14T19:55:38", + "TransactionId": 28825920, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 979, + "CustomerInfo": 1101543, + "PaymentType": "Credit Card" + }, + { + "Id": 14959, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2016-04-12T11:57:59", + "TransactionId": 50312589, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 485, + "CustomerInfo": 18163945, + "PaymentType": "Credit Card" + }, + { + "Id": 14960, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2016-12-11T11:04:34", + "TransactionId": 78347481, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 338, + "CustomerInfo": 81791858, + "PaymentType": "Debit Card" + }, + { + "Id": 14961, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2016-03-05T18:11:57", + "TransactionId": 12885236, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 989, + "CustomerInfo": 38339434, + "PaymentType": "Credit Card" + }, + { + "Id": 14962, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2018-04-23T11:25:18", + "TransactionId": 15523541, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 145, + "CustomerInfo": 36825042, + "PaymentType": "Cash" + }, + { + "Id": 14963, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2016-05-04T18:16:51", + "TransactionId": 4918681, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 27, + "CustomerInfo": 49875445, + "PaymentType": "Cash" + }, + { + "Id": 14964, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-04-27T08:53:14", + "TransactionId": 1001703, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 502, + "CustomerInfo": 53611657, + "PaymentType": "Cash" + }, + { + "Id": 14965, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2016-04-14T09:12:23", + "TransactionId": 55986673, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 262, + "CustomerInfo": 31277784, + "PaymentType": "Cash" + }, + { + "Id": 14966, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-09-13T16:30:09", + "TransactionId": 19726318, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 502, + "CustomerInfo": 22930351, + "PaymentType": "Cash" + }, + { + "Id": 14967, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-08-29T11:25:35", + "TransactionId": 30479519, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 878, + "CustomerInfo": 75616643, + "PaymentType": "Cash" + }, + { + "Id": 14968, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-12-29T19:01:03", + "TransactionId": 21920725, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 283, + "CustomerInfo": 98774356, + "PaymentType": "Cash" + }, + { + "Id": 14969, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2019-05-12T17:34:48", + "TransactionId": 81305275, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 317, + "CustomerInfo": 3528486, + "PaymentType": "Cash" + }, + { + "Id": 14970, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-11-10T19:04:05", + "TransactionId": 96856108, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 730, + "CustomerInfo": 30074565, + "PaymentType": "Credit Card" + }, + { + "Id": 14971, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-01-12T08:38:59", + "TransactionId": 41105148, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 880, + "CustomerInfo": 97451635, + "PaymentType": "Cash" + }, + { + "Id": 14972, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2016-08-09T14:24:17", + "TransactionId": 82505233, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 265, + "CustomerInfo": 49885417, + "PaymentType": "Credit Card" + }, + { + "Id": 14973, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2018-06-24T08:50:04", + "TransactionId": 34002269, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 621, + "CustomerInfo": 49312766, + "PaymentType": "Debit Card" + }, + { + "Id": 14974, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-04-10T17:07:00", + "TransactionId": 37074337, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 316, + "CustomerInfo": 12982160, + "PaymentType": "Credit Card" + }, + { + "Id": 14975, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2018-02-20T19:22:13", + "TransactionId": 39696059, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 6, + "CustomerInfo": 32406286, + "PaymentType": "Debit Card" + }, + { + "Id": 14976, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2019-01-17T18:00:43", + "TransactionId": 89036236, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 181, + "CustomerInfo": 97514409, + "PaymentType": "Debit Card" + }, + { + "Id": 14977, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-04-19T16:25:06", + "TransactionId": 95480786, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 146, + "CustomerInfo": 16366177, + "PaymentType": "Debit Card" + }, + { + "Id": 14978, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2016-10-08T18:29:14", + "TransactionId": 10613583, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 87, + "CustomerInfo": 73193601, + "PaymentType": "Credit Card" + }, + { + "Id": 14979, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-10-22T07:07:15", + "TransactionId": 14269721, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 271, + "CustomerInfo": 76832909, + "PaymentType": "Debit Card" + }, + { + "Id": 14980, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-07-05T08:15:39", + "TransactionId": 20715472, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 528, + "CustomerInfo": 76144602, + "PaymentType": "Cash" + }, + { + "Id": 14981, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2019-02-19T15:58:11", + "TransactionId": 8453784, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 860, + "CustomerInfo": 27768556, + "PaymentType": "Debit Card" + }, + { + "Id": 14982, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2018-07-23T13:50:18", + "TransactionId": 77706262, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 512, + "CustomerInfo": 3639595, + "PaymentType": "Cash" + }, + { + "Id": 14983, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2018-09-24T19:18:46", + "TransactionId": 85056124, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 769, + "CustomerInfo": 88101616, + "PaymentType": "Debit Card" + }, + { + "Id": 14984, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-07-16T15:38:53", + "TransactionId": 6762026, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 30, + "CustomerInfo": 67049768, + "PaymentType": "Cash" + }, + { + "Id": 14985, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-08-07T10:33:10", + "TransactionId": 23877265, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 849, + "CustomerInfo": 65084142, + "PaymentType": "Debit Card" + }, + { + "Id": 14986, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2016-05-07T16:34:45", + "TransactionId": 78410257, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 878, + "CustomerInfo": 94822214, + "PaymentType": "Cash" + }, + { + "Id": 14987, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2016-02-14T19:10:51", + "TransactionId": 92552643, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 832, + "CustomerInfo": 312113, + "PaymentType": "Debit Card" + }, + { + "Id": 14988, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2017-01-13T07:55:47", + "TransactionId": 67816990, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 771, + "CustomerInfo": 64209151, + "PaymentType": "Cash" + }, + { + "Id": 14989, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-04-02T14:56:50", + "TransactionId": 33164773, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 599, + "CustomerInfo": 91652372, + "PaymentType": "Cash" + }, + { + "Id": 14990, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2017-11-25T18:00:17", + "TransactionId": 74382819, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 609, + "CustomerInfo": 7039198, + "PaymentType": "Cash" + }, + { + "Id": 14991, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-02-27T18:35:08", + "TransactionId": 87173797, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 854, + "CustomerInfo": 33166208, + "PaymentType": "Credit Card" + }, + { + "Id": 14992, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2019-08-09T10:48:17", + "TransactionId": 90195729, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 210, + "CustomerInfo": 5912635, + "PaymentType": "Credit Card" + }, + { + "Id": 14993, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2019-08-30T18:18:26", + "TransactionId": 96655242, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 536, + "CustomerInfo": 59022834, + "PaymentType": "Cash" + }, + { + "Id": 14994, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-05-21T15:47:05", + "TransactionId": 41738028, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 85, + "CustomerInfo": 55090062, + "PaymentType": "Credit Card" + }, + { + "Id": 14995, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-01-14T11:15:56", + "TransactionId": 19318512, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 584, + "CustomerInfo": 34990377, + "PaymentType": "Cash" + }, + { + "Id": 14996, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-04-07T19:03:13", + "TransactionId": 45756379, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 886, + "CustomerInfo": 72474212, + "PaymentType": "Credit Card" + }, + { + "Id": 14997, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2018-05-25T18:08:30", + "TransactionId": 75496502, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 52474249, + "PaymentType": "Debit Card" + }, + { + "Id": 14998, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-11-21T11:33:48", + "TransactionId": 71951577, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 754, + "CustomerInfo": 56993461, + "PaymentType": "Cash" + }, + { + "Id": 14999, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2019-10-13T15:25:38", + "TransactionId": 55023323, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 265, + "CustomerInfo": 4185247, + "PaymentType": "Credit Card" + }, + { + "Id": 15000, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2018-09-18T13:59:48", + "TransactionId": 16489432, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 321, + "CustomerInfo": 84350444, + "PaymentType": "Cash" + }, + { + "Id": 15001, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-06-12T19:55:38", + "TransactionId": 84160529, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 63, + "CustomerInfo": 17301563, + "PaymentType": "Credit Card" + }, + { + "Id": 15002, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-05-12T12:06:55", + "TransactionId": 39331650, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 160, + "CustomerInfo": 73972714, + "PaymentType": "Credit Card" + }, + { + "Id": 15003, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2016-09-05T15:32:15", + "TransactionId": 77518626, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 148, + "CustomerInfo": 79229444, + "PaymentType": "Debit Card" + }, + { + "Id": 15004, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-05-28T15:33:59", + "TransactionId": 28048346, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 471, + "CustomerInfo": 46538168, + "PaymentType": "Credit Card" + }, + { + "Id": 15005, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2018-07-07T18:42:03", + "TransactionId": 36782497, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 827, + "CustomerInfo": 11036880, + "PaymentType": "Debit Card" + }, + { + "Id": 15006, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2018-05-04T16:46:51", + "TransactionId": 63892234, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 154, + "CustomerInfo": 18513617, + "PaymentType": "Cash" + }, + { + "Id": 15007, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-02-18T07:12:26", + "TransactionId": 39484543, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 58895620, + "PaymentType": "Credit Card" + }, + { + "Id": 15008, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2019-08-31T12:02:27", + "TransactionId": 3079231, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 908, + "CustomerInfo": 74070461, + "PaymentType": "Debit Card" + }, + { + "Id": 15009, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2016-10-02T16:10:25", + "TransactionId": 13113416, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 147, + "CustomerInfo": 49496975, + "PaymentType": "Cash" + }, + { + "Id": 15010, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2018-10-24T10:37:03", + "TransactionId": 63750491, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 997, + "CustomerInfo": 68939462, + "PaymentType": "Cash" + }, + { + "Id": 15011, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2017-04-13T10:53:54", + "TransactionId": 25711960, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 857, + "CustomerInfo": 5629584, + "PaymentType": "Credit Card" + }, + { + "Id": 15012, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-08-02T19:18:37", + "TransactionId": 82515305, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 12045276, + "PaymentType": "Credit Card" + }, + { + "Id": 15013, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2018-01-22T13:35:54", + "TransactionId": 79832885, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 30, + "CustomerInfo": 59046372, + "PaymentType": "Cash" + }, + { + "Id": 15014, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-05-03T10:56:47", + "TransactionId": 67439957, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 69, + "CustomerInfo": 7271298, + "PaymentType": "Credit Card" + }, + { + "Id": 15015, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2016-12-24T13:04:05", + "TransactionId": 8360841, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 645, + "CustomerInfo": 28161384, + "PaymentType": "Cash" + }, + { + "Id": 15016, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2017-09-05T10:47:51", + "TransactionId": 62246144, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 295, + "CustomerInfo": 86459580, + "PaymentType": "Credit Card" + }, + { + "Id": 15017, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2019-05-23T18:21:01", + "TransactionId": 47825073, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 962, + "CustomerInfo": 26724748, + "PaymentType": "Debit Card" + }, + { + "Id": 15018, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2017-07-24T17:43:44", + "TransactionId": 6799303, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 525, + "CustomerInfo": 59483011, + "PaymentType": "Debit Card" + }, + { + "Id": 15019, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2016-12-05T15:36:35", + "TransactionId": 28738973, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 460, + "CustomerInfo": 68269790, + "PaymentType": "Debit Card" + }, + { + "Id": 15020, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-09-04T16:56:04", + "TransactionId": 4292905, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 570, + "CustomerInfo": 9357664, + "PaymentType": "Credit Card" + }, + { + "Id": 15021, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-09-30T08:15:13", + "TransactionId": 2550849, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 367, + "CustomerInfo": 93516979, + "PaymentType": "Debit Card" + }, + { + "Id": 15022, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2019-03-04T09:25:55", + "TransactionId": 47232957, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 547, + "CustomerInfo": 42986223, + "PaymentType": "Cash" + }, + { + "Id": 15023, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-10-03T12:08:47", + "TransactionId": 7060918, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 596, + "CustomerInfo": 20312881, + "PaymentType": "Credit Card" + }, + { + "Id": 15024, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2017-03-28T18:24:37", + "TransactionId": 46280154, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 444, + "CustomerInfo": 25186288, + "PaymentType": "Credit Card" + }, + { + "Id": 15025, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-05-22T10:14:36", + "TransactionId": 44326880, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 357, + "CustomerInfo": 53137595, + "PaymentType": "Debit Card" + }, + { + "Id": 15026, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2018-05-27T11:31:55", + "TransactionId": 82906500, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 51, + "CustomerInfo": 93815833, + "PaymentType": "Debit Card" + }, + { + "Id": 15027, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2016-11-30T13:30:17", + "TransactionId": 53630174, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 114, + "CustomerInfo": 50802706, + "PaymentType": "Cash" + }, + { + "Id": 15028, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-08-22T10:11:17", + "TransactionId": 64162615, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 460, + "CustomerInfo": 69954053, + "PaymentType": "Cash" + }, + { + "Id": 15029, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-02-28T18:50:41", + "TransactionId": 14897150, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 31, + "CustomerInfo": 21980275, + "PaymentType": "Credit Card" + }, + { + "Id": 15030, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2019-02-23T12:40:28", + "TransactionId": 95154589, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 11, + "CustomerInfo": 87149837, + "PaymentType": "Debit Card" + }, + { + "Id": 15031, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2019-05-06T19:09:42", + "TransactionId": 22578961, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 280, + "CustomerInfo": 45003366, + "PaymentType": "Debit Card" + }, + { + "Id": 15032, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2018-01-12T11:39:33", + "TransactionId": 14103471, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 451, + "CustomerInfo": 93987540, + "PaymentType": "Cash" + }, + { + "Id": 15033, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2017-09-05T15:52:42", + "TransactionId": 72253682, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 995, + "CustomerInfo": 47286233, + "PaymentType": "Debit Card" + }, + { + "Id": 15034, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-06-14T14:37:32", + "TransactionId": 74707941, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 455, + "CustomerInfo": 79101359, + "PaymentType": "Cash" + }, + { + "Id": 15035, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2016-11-21T10:07:06", + "TransactionId": 31150241, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 729, + "CustomerInfo": 58509563, + "PaymentType": "Credit Card" + }, + { + "Id": 15036, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-07-13T13:53:54", + "TransactionId": 91518616, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 280, + "CustomerInfo": 63650386, + "PaymentType": "Debit Card" + }, + { + "Id": 15037, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2016-01-03T09:57:53", + "TransactionId": 37196767, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 183, + "CustomerInfo": 23617844, + "PaymentType": "Cash" + }, + { + "Id": 15038, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2016-04-07T10:02:21", + "TransactionId": 20661978, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 512, + "CustomerInfo": 69657051, + "PaymentType": "Cash" + }, + { + "Id": 15039, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2018-12-30T18:33:16", + "TransactionId": 46366156, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 200, + "CustomerInfo": 88232155, + "PaymentType": "Cash" + }, + { + "Id": 15040, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2016-12-21T19:36:55", + "TransactionId": 98575054, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 317, + "CustomerInfo": 92742757, + "PaymentType": "Debit Card" + }, + { + "Id": 15041, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2017-06-17T11:30:20", + "TransactionId": 45184955, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 428, + "CustomerInfo": 88326659, + "PaymentType": "Cash" + }, + { + "Id": 15042, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2016-06-19T11:02:15", + "TransactionId": 81115822, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 338, + "CustomerInfo": 80930279, + "PaymentType": "Cash" + }, + { + "Id": 15043, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-10-13T19:27:50", + "TransactionId": 40796481, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 202, + "CustomerInfo": 26446445, + "PaymentType": "Debit Card" + }, + { + "Id": 15044, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2018-01-03T07:37:03", + "TransactionId": 45805042, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 202, + "CustomerInfo": 29194157, + "PaymentType": "Credit Card" + }, + { + "Id": 15045, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-04-12T17:53:40", + "TransactionId": 77304602, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 173, + "CustomerInfo": 38276427, + "PaymentType": "Credit Card" + }, + { + "Id": 15046, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-11-19T09:55:44", + "TransactionId": 92963247, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 145, + "CustomerInfo": 99237003, + "PaymentType": "Credit Card" + }, + { + "Id": 15047, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2017-11-13T17:21:59", + "TransactionId": 25054567, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 102, + "CustomerInfo": 66843072, + "PaymentType": "Cash" + }, + { + "Id": 15048, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2018-03-12T15:55:35", + "TransactionId": 51206338, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 864, + "CustomerInfo": 8068552, + "PaymentType": "Cash" + }, + { + "Id": 15049, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2018-05-04T17:24:00", + "TransactionId": 19197734, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 901, + "CustomerInfo": 18712959, + "PaymentType": "Debit Card" + }, + { + "Id": 15050, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2018-07-28T10:46:34", + "TransactionId": 73021056, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 536, + "CustomerInfo": 71185450, + "PaymentType": "Cash" + }, + { + "Id": 15051, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-02-08T12:19:44", + "TransactionId": 3716866, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 469, + "CustomerInfo": 53823499, + "PaymentType": "Credit Card" + }, + { + "Id": 15052, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-08-24T11:29:11", + "TransactionId": 64956221, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 475, + "CustomerInfo": 23948269, + "PaymentType": "Credit Card" + }, + { + "Id": 15053, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-05-01T18:32:50", + "TransactionId": 68176239, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 227, + "CustomerInfo": 25702922, + "PaymentType": "Cash" + }, + { + "Id": 15054, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2016-10-23T11:45:53", + "TransactionId": 18983677, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 242, + "CustomerInfo": 56629265, + "PaymentType": "Debit Card" + }, + { + "Id": 15055, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2017-12-31T09:31:32", + "TransactionId": 13094266, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 588, + "CustomerInfo": 19070925, + "PaymentType": "Debit Card" + }, + { + "Id": 15056, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-10-06T16:43:32", + "TransactionId": 97504573, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 730, + "CustomerInfo": 12638726, + "PaymentType": "Credit Card" + }, + { + "Id": 15057, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2018-03-27T18:59:28", + "TransactionId": 97501735, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 303, + "CustomerInfo": 53819236, + "PaymentType": "Debit Card" + }, + { + "Id": 15058, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-01-26T07:39:13", + "TransactionId": 1689421, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 9127931, + "PaymentType": "Credit Card" + }, + { + "Id": 15059, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2018-05-24T15:05:11", + "TransactionId": 74500518, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 850, + "CustomerInfo": 1503260, + "PaymentType": "Credit Card" + }, + { + "Id": 15060, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-05-18T11:52:31", + "TransactionId": 69721695, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 594, + "CustomerInfo": 6226163, + "PaymentType": "Cash" + }, + { + "Id": 15061, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-04-05T11:03:50", + "TransactionId": 38164844, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 280, + "CustomerInfo": 97889852, + "PaymentType": "Credit Card" + }, + { + "Id": 15062, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-07-31T13:21:13", + "TransactionId": 30312824, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 834, + "CustomerInfo": 78544042, + "PaymentType": "Debit Card" + }, + { + "Id": 15063, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-02-27T07:03:04", + "TransactionId": 72325749, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 1000, + "CustomerInfo": 32580215, + "PaymentType": "Cash" + }, + { + "Id": 15064, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-02-18T15:49:15", + "TransactionId": 27314232, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 144, + "CustomerInfo": 48306487, + "PaymentType": "Debit Card" + }, + { + "Id": 15065, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2018-11-03T08:15:48", + "TransactionId": 43983080, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 773, + "CustomerInfo": 99219552, + "PaymentType": "Cash" + }, + { + "Id": 15066, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2019-04-12T11:45:27", + "TransactionId": 15974154, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 178, + "CustomerInfo": 57929119, + "PaymentType": "Credit Card" + }, + { + "Id": 15067, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2017-11-12T11:23:51", + "TransactionId": 10828877, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 394, + "CustomerInfo": 40931881, + "PaymentType": "Cash" + }, + { + "Id": 15068, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2018-06-16T18:58:11", + "TransactionId": 76486757, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 394, + "CustomerInfo": 61895641, + "PaymentType": "Cash" + }, + { + "Id": 15069, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2018-05-07T07:38:30", + "TransactionId": 24548100, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 265, + "CustomerInfo": 14357548, + "PaymentType": "Credit Card" + }, + { + "Id": 15070, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2019-09-11T13:59:48", + "TransactionId": 12846808, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 398, + "CustomerInfo": 69992669, + "PaymentType": "Debit Card" + }, + { + "Id": 15071, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-12-27T19:25:06", + "TransactionId": 35820486, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 905, + "CustomerInfo": 6391480, + "PaymentType": "Debit Card" + }, + { + "Id": 15072, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2018-06-21T11:32:12", + "TransactionId": 75536080, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 879, + "CustomerInfo": 28798040, + "PaymentType": "Credit Card" + }, + { + "Id": 15073, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2016-12-16T15:25:29", + "TransactionId": 97179660, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 795, + "CustomerInfo": 79516617, + "PaymentType": "Credit Card" + }, + { + "Id": 15074, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-06-16T15:52:25", + "TransactionId": 79509325, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 777, + "CustomerInfo": 39459496, + "PaymentType": "Cash" + }, + { + "Id": 15075, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2016-03-14T08:54:14", + "TransactionId": 99027186, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 682, + "CustomerInfo": 39954855, + "PaymentType": "Credit Card" + }, + { + "Id": 15076, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2018-01-29T11:53:14", + "TransactionId": 22313666, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 570, + "CustomerInfo": 6133357, + "PaymentType": "Cash" + }, + { + "Id": 15077, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2018-10-25T11:21:42", + "TransactionId": 85832254, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 669, + "CustomerInfo": 85661741, + "PaymentType": "Cash" + }, + { + "Id": 15078, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-03-04T16:53:54", + "TransactionId": 87907304, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 922, + "CustomerInfo": 84500558, + "PaymentType": "Credit Card" + }, + { + "Id": 15079, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2017-09-07T10:36:12", + "TransactionId": 81796212, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 361, + "CustomerInfo": 2897932, + "PaymentType": "Credit Card" + }, + { + "Id": 15080, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-09-05T13:16:19", + "TransactionId": 87853232, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 376, + "CustomerInfo": 44709086, + "PaymentType": "Cash" + }, + { + "Id": 15081, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-01-29T14:07:00", + "TransactionId": 87994486, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 191, + "CustomerInfo": 94554660, + "PaymentType": "Cash" + }, + { + "Id": 15082, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2018-03-09T19:00:37", + "TransactionId": 17195311, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 31048683, + "PaymentType": "Cash" + }, + { + "Id": 15083, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2016-05-05T07:24:06", + "TransactionId": 17440956, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 418, + "CustomerInfo": 89996565, + "PaymentType": "Credit Card" + }, + { + "Id": 15084, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2016-01-04T11:41:43", + "TransactionId": 31627552, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 315, + "CustomerInfo": 56717233, + "PaymentType": "Credit Card" + }, + { + "Id": 15085, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2018-06-08T13:11:51", + "TransactionId": 41505769, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 72309639, + "PaymentType": "Debit Card" + }, + { + "Id": 15086, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2018-09-24T10:48:17", + "TransactionId": 44140477, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 273, + "CustomerInfo": 19788065, + "PaymentType": "Credit Card" + }, + { + "Id": 15087, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-11-22T10:03:04", + "TransactionId": 33626686, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 501, + "CustomerInfo": 27099776, + "PaymentType": "Credit Card" + }, + { + "Id": 15088, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-02-11T07:03:39", + "TransactionId": 13553798, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 1000, + "CustomerInfo": 99308656, + "PaymentType": "Cash" + }, + { + "Id": 15089, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-3", + "TransactionDate": "2017-11-07T10:07:49", + "TransactionId": 24892966, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 258, + "CustomerInfo": 13806913, + "PaymentType": "Debit Card" + }, + { + "Id": 15090, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-11-27T11:00:58", + "TransactionId": 47020958, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 939, + "CustomerInfo": 49903479, + "PaymentType": "Credit Card" + }, + { + "Id": 15091, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-01-12T09:58:36", + "TransactionId": 25001378, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 836, + "CustomerInfo": 74464947, + "PaymentType": "Debit Card" + }, + { + "Id": 15092, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-08-04T15:59:54", + "TransactionId": 67238030, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 119, + "CustomerInfo": 12261922, + "PaymentType": "Credit Card" + }, + { + "Id": 15093, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-06-19T13:40:48", + "TransactionId": 11785071, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 684, + "CustomerInfo": 53879220, + "PaymentType": "Credit Card" + }, + { + "Id": 15094, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2016-02-03T19:42:58", + "TransactionId": 84236032, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 697, + "CustomerInfo": 56140778, + "PaymentType": "Debit Card" + }, + { + "Id": 15095, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-01-05T17:07:44", + "TransactionId": 28322345, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 521, + "CustomerInfo": 10921327, + "PaymentType": "Cash" + }, + { + "Id": 15096, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-05-01T15:20:01", + "TransactionId": 9717583, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 444, + "CustomerInfo": 80767024, + "PaymentType": "Cash" + }, + { + "Id": 15097, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2019-04-13T12:44:38", + "TransactionId": 29473226, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 331, + "CustomerInfo": 99636240, + "PaymentType": "Debit Card" + }, + { + "Id": 15098, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2016-04-10T13:46:25", + "TransactionId": 78928497, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 513, + "CustomerInfo": 46274616, + "PaymentType": "Credit Card" + }, + { + "Id": 15099, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2016-07-10T18:57:53", + "TransactionId": 60206228, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 512, + "CustomerInfo": 54789999, + "PaymentType": "Cash" + }, + { + "Id": 15100, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2016-03-24T18:58:11", + "TransactionId": 13157768, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 60, + "CustomerInfo": 66308583, + "PaymentType": "Credit Card" + }, + { + "Id": 15101, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-12-03T15:51:07", + "TransactionId": 90204657, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 520, + "CustomerInfo": 50577105, + "PaymentType": "Debit Card" + }, + { + "Id": 15102, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2016-08-31T18:27:48", + "TransactionId": 46244702, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 469, + "CustomerInfo": 62945486, + "PaymentType": "Credit Card" + }, + { + "Id": 15103, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2019-05-28T07:26:41", + "TransactionId": 30607525, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 448, + "CustomerInfo": 11481637, + "PaymentType": "Cash" + }, + { + "Id": 15104, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2019-05-01T08:58:16", + "TransactionId": 11443612, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 84191800, + "PaymentType": "Debit Card" + }, + { + "Id": 15105, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-02-15T16:25:58", + "TransactionId": 25922515, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 859, + "CustomerInfo": 52496342, + "PaymentType": "Debit Card" + }, + { + "Id": 15106, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2018-02-28T14:39:33", + "TransactionId": 52677173, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 418, + "CustomerInfo": 10023945, + "PaymentType": "Credit Card" + }, + { + "Id": 15107, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2016-07-04T13:32:36", + "TransactionId": 92833056, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 436, + "CustomerInfo": 40831327, + "PaymentType": "Credit Card" + }, + { + "Id": 15108, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-06-10T19:53:20", + "TransactionId": 57723071, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 642, + "CustomerInfo": 97737738, + "PaymentType": "Credit Card" + }, + { + "Id": 15109, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2017-07-04T16:33:36", + "TransactionId": 37891843, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 236, + "CustomerInfo": 15238217, + "PaymentType": "Debit Card" + }, + { + "Id": 15110, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2016-05-28T15:36:26", + "TransactionId": 27384771, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 717, + "CustomerInfo": 70832207, + "PaymentType": "Cash" + }, + { + "Id": 15111, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-05-27T17:47:46", + "TransactionId": 11550176, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 564, + "CustomerInfo": 60275419, + "PaymentType": "Credit Card" + }, + { + "Id": 15112, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-05-04T18:34:25", + "TransactionId": 85894263, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 517, + "CustomerInfo": 8529224, + "PaymentType": "Debit Card" + }, + { + "Id": 15113, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-01-16T09:13:06", + "TransactionId": 95568070, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 253, + "CustomerInfo": 90794398, + "PaymentType": "Debit Card" + }, + { + "Id": 15114, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-03-03T18:01:00", + "TransactionId": 41853679, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 607, + "CustomerInfo": 80044992, + "PaymentType": "Credit Card" + }, + { + "Id": 15115, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2016-02-16T11:02:07", + "TransactionId": 74576431, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 907, + "CustomerInfo": 74463256, + "PaymentType": "Cash" + }, + { + "Id": 15116, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2016-10-27T17:19:15", + "TransactionId": 99172655, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 43, + "CustomerInfo": 15537183, + "PaymentType": "Cash" + }, + { + "Id": 15117, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-09-24T19:13:00", + "TransactionId": 82554192, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 235, + "CustomerInfo": 11368709, + "PaymentType": "Credit Card" + }, + { + "Id": 15118, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2017-10-11T07:03:22", + "TransactionId": 21929445, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 494, + "CustomerInfo": 40209831, + "PaymentType": "Debit Card" + }, + { + "Id": 15119, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-01-17T13:51:45", + "TransactionId": 63778689, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 834, + "CustomerInfo": 19536916, + "PaymentType": "Credit Card" + }, + { + "Id": 15120, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-03-31T13:36:46", + "TransactionId": 54818972, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 568, + "CustomerInfo": 9536219, + "PaymentType": "Debit Card" + }, + { + "Id": 15121, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-05-31T10:53:11", + "TransactionId": 48369735, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 700, + "CustomerInfo": 55963196, + "PaymentType": "Debit Card" + }, + { + "Id": 15122, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2017-08-22T18:59:37", + "TransactionId": 42675052, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 22380977, + "PaymentType": "Cash" + }, + { + "Id": 15123, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-05-02T13:49:44", + "TransactionId": 93545920, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 122, + "CustomerInfo": 80831980, + "PaymentType": "Credit Card" + }, + { + "Id": 15124, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2019-03-12T16:06:23", + "TransactionId": 8420112, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 379, + "CustomerInfo": 60809318, + "PaymentType": "Credit Card" + }, + { + "Id": 15125, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-10-16T16:33:53", + "TransactionId": 11179981, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 607, + "CustomerInfo": 17633449, + "PaymentType": "Debit Card" + }, + { + "Id": 15126, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2019-09-07T18:27:48", + "TransactionId": 20202828, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 335, + "CustomerInfo": 17789411, + "PaymentType": "Cash" + }, + { + "Id": 15127, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2018-04-19T15:15:24", + "TransactionId": 73051959, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 183, + "CustomerInfo": 41585807, + "PaymentType": "Debit Card" + }, + { + "Id": 15128, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-11-30T14:58:34", + "TransactionId": 38242064, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 827, + "CustomerInfo": 12642431, + "PaymentType": "Credit Card" + }, + { + "Id": 15129, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-4", + "TransactionDate": "2017-12-11T11:04:16", + "TransactionId": 5293467, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 761, + "CustomerInfo": 21740757, + "PaymentType": "Debit Card" + }, + { + "Id": 15130, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-06-19T16:56:04", + "TransactionId": 16801921, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 221, + "CustomerInfo": 84434958, + "PaymentType": "Debit Card" + }, + { + "Id": 15131, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2018-06-22T15:05:02", + "TransactionId": 4664826, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 48, + "CustomerInfo": 82977566, + "PaymentType": "Credit Card" + }, + { + "Id": 15132, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2017-12-11T10:26:33", + "TransactionId": 63781479, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 737, + "CustomerInfo": 39005148, + "PaymentType": "Cash" + }, + { + "Id": 15133, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2017-03-17T19:12:17", + "TransactionId": 15849443, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 154, + "CustomerInfo": 28932511, + "PaymentType": "Cash" + }, + { + "Id": 15134, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2019-01-03T13:15:36", + "TransactionId": 88994738, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 930, + "CustomerInfo": 35779039, + "PaymentType": "Credit Card" + }, + { + "Id": 15135, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2018-06-15T08:10:36", + "TransactionId": 56812942, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 68, + "CustomerInfo": 58068551, + "PaymentType": "Cash" + }, + { + "Id": 15136, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2017-11-03T18:09:39", + "TransactionId": 73015008, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 502, + "CustomerInfo": 3923499, + "PaymentType": "Cash" + }, + { + "Id": 15137, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2016-10-26T10:07:15", + "TransactionId": 35490744, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 277, + "CustomerInfo": 68572925, + "PaymentType": "Debit Card" + }, + { + "Id": 15138, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2018-01-30T07:11:34", + "TransactionId": 64333258, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 598, + "CustomerInfo": 8193207, + "PaymentType": "Cash" + }, + { + "Id": 15139, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2019-11-12T18:24:20", + "TransactionId": 24029985, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 48, + "CustomerInfo": 4255352, + "PaymentType": "Cash" + }, + { + "Id": 15140, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-12-28T18:35:25", + "TransactionId": 37712471, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 819, + "CustomerInfo": 68913359, + "PaymentType": "Debit Card" + }, + { + "Id": 15141, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2017-05-09T17:12:46", + "TransactionId": 32253980, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 605, + "CustomerInfo": 64293877, + "PaymentType": "Debit Card" + }, + { + "Id": 15142, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-12-25T18:36:09", + "TransactionId": 76978420, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 468, + "CustomerInfo": 26149901, + "PaymentType": "Cash" + }, + { + "Id": 15143, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2018-02-19T07:13:44", + "TransactionId": 34091070, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 835, + "CustomerInfo": 89908079, + "PaymentType": "Debit Card" + }, + { + "Id": 15144, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2016-02-13T18:17:17", + "TransactionId": 24818260, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 12, + "CustomerInfo": 77634044, + "PaymentType": "Cash" + }, + { + "Id": 15145, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-03-26T10:42:23", + "TransactionId": 45113344, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 594, + "CustomerInfo": 21886099, + "PaymentType": "Debit Card" + }, + { + "Id": 15146, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2019-02-19T16:50:01", + "TransactionId": 63759818, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 649, + "CustomerInfo": 64575497, + "PaymentType": "Debit Card" + }, + { + "Id": 15147, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-02-16T09:15:42", + "TransactionId": 75636334, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 323, + "CustomerInfo": 83085379, + "PaymentType": "Debit Card" + }, + { + "Id": 15148, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-02-21T11:59:17", + "TransactionId": 89248918, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 557, + "CustomerInfo": 62056916, + "PaymentType": "Debit Card" + }, + { + "Id": 15149, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2017-05-25T18:02:01", + "TransactionId": 24794266, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 831, + "CustomerInfo": 98574518, + "PaymentType": "Debit Card" + }, + { + "Id": 15150, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2016-08-14T19:29:08", + "TransactionId": 83555498, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 783, + "CustomerInfo": 71688559, + "PaymentType": "Debit Card" + }, + { + "Id": 15151, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2017-11-25T18:12:23", + "TransactionId": 31675508, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 566, + "CustomerInfo": 80080014, + "PaymentType": "Debit Card" + }, + { + "Id": 15152, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-05-10T07:59:48", + "TransactionId": 61087391, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 519, + "CustomerInfo": 14940508, + "PaymentType": "Debit Card" + }, + { + "Id": 15153, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2016-12-26T12:12:58", + "TransactionId": 65448005, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 416, + "CustomerInfo": 11795361, + "PaymentType": "Debit Card" + }, + { + "Id": 15154, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2016-02-27T11:53:40", + "TransactionId": 70108045, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 289, + "CustomerInfo": 59211175, + "PaymentType": "Cash" + }, + { + "Id": 15155, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2017-03-11T08:53:23", + "TransactionId": 17537790, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 7, + "CustomerInfo": 9857887, + "PaymentType": "Credit Card" + }, + { + "Id": 15156, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-12-25T18:46:31", + "TransactionId": 69486363, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 888, + "CustomerInfo": 95138544, + "PaymentType": "Debit Card" + }, + { + "Id": 15157, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2019-04-16T17:38:07", + "TransactionId": 83948076, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 85002790, + "PaymentType": "Cash" + }, + { + "Id": 15158, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-11-08T15:57:45", + "TransactionId": 99056493, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 303, + "CustomerInfo": 44745336, + "PaymentType": "Debit Card" + }, + { + "Id": 15159, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2016-08-17T19:11:51", + "TransactionId": 27385440, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 101, + "CustomerInfo": 80930442, + "PaymentType": "Credit Card" + }, + { + "Id": 15160, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2018-10-27T07:51:27", + "TransactionId": 82538233, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 808, + "CustomerInfo": 27584417, + "PaymentType": "Debit Card" + }, + { + "Id": 15161, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2018-03-19T08:12:20", + "TransactionId": 95196751, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 403, + "CustomerInfo": 43885170, + "PaymentType": "Cash" + }, + { + "Id": 15162, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2019-10-23T08:01:41", + "TransactionId": 27797956, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 920, + "CustomerInfo": 80295832, + "PaymentType": "Cash" + }, + { + "Id": 15163, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-07-25T14:16:13", + "TransactionId": 44447376, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 322, + "CustomerInfo": 31718427, + "PaymentType": "Debit Card" + }, + { + "Id": 15164, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-08-14T19:15:10", + "TransactionId": 74075336, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 350, + "CustomerInfo": 43160562, + "PaymentType": "Debit Card" + }, + { + "Id": 15165, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2019-12-19T18:54:35", + "TransactionId": 80270063, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 453, + "CustomerInfo": 98954049, + "PaymentType": "Debit Card" + }, + { + "Id": 15166, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-09-24T12:35:25", + "TransactionId": 97915809, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 345, + "CustomerInfo": 26427171, + "PaymentType": "Cash" + }, + { + "Id": 15167, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2019-02-14T18:40:02", + "TransactionId": 43518127, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 638, + "CustomerInfo": 92645684, + "PaymentType": "Debit Card" + }, + { + "Id": 15168, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-06-21T10:19:29", + "TransactionId": 67807032, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 676, + "CustomerInfo": 5338280, + "PaymentType": "Credit Card" + }, + { + "Id": 15169, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2016-07-17T19:04:13", + "TransactionId": 70082197, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 478, + "CustomerInfo": 93131842, + "PaymentType": "Credit Card" + }, + { + "Id": 15170, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-05-14T13:48:09", + "TransactionId": 78633488, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 256, + "CustomerInfo": 5075051, + "PaymentType": "Cash" + }, + { + "Id": 15171, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2018-01-26T14:54:14", + "TransactionId": 25294854, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 284, + "CustomerInfo": 73565516, + "PaymentType": "Credit Card" + }, + { + "Id": 15172, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-02-23T13:42:58", + "TransactionId": 1320336, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 6, + "CustomerInfo": 53965544, + "PaymentType": "Credit Card" + }, + { + "Id": 15173, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-10-27T16:44:41", + "TransactionId": 60285029, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 331, + "CustomerInfo": 67719808, + "PaymentType": "Debit Card" + }, + { + "Id": 15174, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-11-04T16:42:14", + "TransactionId": 59656199, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 271, + "CustomerInfo": 33364463, + "PaymentType": "Debit Card" + }, + { + "Id": 15175, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-02-29T18:46:13", + "TransactionId": 66778269, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 948, + "CustomerInfo": 71362055, + "PaymentType": "Cash" + }, + { + "Id": 15176, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2018-02-27T16:23:05", + "TransactionId": 52306845, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 267, + "CustomerInfo": 18293501, + "PaymentType": "Credit Card" + }, + { + "Id": 15177, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2016-05-13T17:29:46", + "TransactionId": 2789691, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 259, + "CustomerInfo": 29502732, + "PaymentType": "Debit Card" + }, + { + "Id": 15178, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2018-08-16T11:44:01", + "TransactionId": 97687013, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 134, + "CustomerInfo": 48759047, + "PaymentType": "Cash" + }, + { + "Id": 15179, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2017-07-10T11:02:15", + "TransactionId": 16333774, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 245, + "CustomerInfo": 32241086, + "PaymentType": "Credit Card" + }, + { + "Id": 15180, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2018-06-14T11:31:29", + "TransactionId": 69708282, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 62, + "CustomerInfo": 34136524, + "PaymentType": "Credit Card" + }, + { + "Id": 15181, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-04-11T16:57:30", + "TransactionId": 45004620, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 351, + "CustomerInfo": 22352298, + "PaymentType": "Cash" + }, + { + "Id": 15182, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-10-30T17:32:56", + "TransactionId": 91749704, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 521, + "CustomerInfo": 74797732, + "PaymentType": "Debit Card" + }, + { + "Id": 15183, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2018-11-23T10:35:37", + "TransactionId": 36118291, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 631, + "CustomerInfo": 80779884, + "PaymentType": "Cash" + }, + { + "Id": 15184, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2018-06-29T08:07:09", + "TransactionId": 45521999, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 345, + "CustomerInfo": 33088024, + "PaymentType": "Credit Card" + }, + { + "Id": 15185, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2017-05-29T15:54:00", + "TransactionId": 37628362, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 565, + "CustomerInfo": 50828601, + "PaymentType": "Credit Card" + }, + { + "Id": 15186, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-05-09T07:19:38", + "TransactionId": 95843650, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 813, + "CustomerInfo": 52063468, + "PaymentType": "Cash" + }, + { + "Id": 15187, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-11-16T11:50:30", + "TransactionId": 93232265, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 252, + "CustomerInfo": 26990114, + "PaymentType": "Credit Card" + }, + { + "Id": 15188, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2017-07-13T08:54:14", + "TransactionId": 57686924, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 309, + "CustomerInfo": 96324667, + "PaymentType": "Credit Card" + }, + { + "Id": 15189, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-05-21T18:26:30", + "TransactionId": 15381142, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 558, + "CustomerInfo": 92301338, + "PaymentType": "Credit Card" + }, + { + "Id": 15190, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-11-21T18:34:51", + "TransactionId": 87289214, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 49, + "CustomerInfo": 15161680, + "PaymentType": "Credit Card" + }, + { + "Id": 15191, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-08-07T08:02:33", + "TransactionId": 94449690, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 336, + "CustomerInfo": 71542014, + "PaymentType": "Cash" + }, + { + "Id": 15192, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-07-23T19:49:44", + "TransactionId": 28685026, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 657, + "CustomerInfo": 20349997, + "PaymentType": "Debit Card" + }, + { + "Id": 15193, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2016-11-12T16:45:07", + "TransactionId": 96293081, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 234, + "CustomerInfo": 18186315, + "PaymentType": "Debit Card" + }, + { + "Id": 15194, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-03-26T12:19:52", + "TransactionId": 26755272, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 923, + "CustomerInfo": 1666502, + "PaymentType": "Credit Card" + }, + { + "Id": 15195, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-05-27T07:40:22", + "TransactionId": 6564555, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 702, + "CustomerInfo": 93798669, + "PaymentType": "Cash" + }, + { + "Id": 15196, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-10-27T19:37:47", + "TransactionId": 24227337, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 363, + "CustomerInfo": 88275016, + "PaymentType": "Debit Card" + }, + { + "Id": 15197, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2019-09-21T17:31:47", + "TransactionId": 60937144, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 313, + "CustomerInfo": 45136993, + "PaymentType": "Cash" + }, + { + "Id": 15198, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-04-11T18:16:34", + "TransactionId": 57997655, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 971, + "CustomerInfo": 4924627, + "PaymentType": "Debit Card" + }, + { + "Id": 15199, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2018-01-03T11:58:34", + "TransactionId": 52271804, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 51471955, + "PaymentType": "Cash" + }, + { + "Id": 15200, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2016-05-02T10:21:39", + "TransactionId": 27927040, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 510, + "CustomerInfo": 22723316, + "PaymentType": "Debit Card" + }, + { + "Id": 15201, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2018-04-12T11:39:33", + "TransactionId": 51779306, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 115, + "CustomerInfo": 54328494, + "PaymentType": "Credit Card" + }, + { + "Id": 15202, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2017-12-01T08:22:51", + "TransactionId": 36941689, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 356, + "CustomerInfo": 7820634, + "PaymentType": "Cash" + }, + { + "Id": 15203, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-02-22T16:15:19", + "TransactionId": 93168034, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 308, + "CustomerInfo": 68683834, + "PaymentType": "Debit Card" + }, + { + "Id": 15204, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-07-19T16:43:49", + "TransactionId": 74688995, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 810, + "CustomerInfo": 68608285, + "PaymentType": "Credit Card" + }, + { + "Id": 15205, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2019-01-13T18:20:53", + "TransactionId": 24855736, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 651, + "CustomerInfo": 63834524, + "PaymentType": "Credit Card" + }, + { + "Id": 15206, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2018-04-25T14:55:06", + "TransactionId": 30045757, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 425, + "CustomerInfo": 84386718, + "PaymentType": "Credit Card" + }, + { + "Id": 15207, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2018-06-24T07:16:54", + "TransactionId": 37263569, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 851, + "CustomerInfo": 71784523, + "PaymentType": "Credit Card" + }, + { + "Id": 15208, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-05-29T08:54:32", + "TransactionId": 91411837, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 304, + "CustomerInfo": 16512154, + "PaymentType": "Cash" + }, + { + "Id": 15209, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-5", + "TransactionDate": "2016-09-28T18:02:36", + "TransactionId": 6131968, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 42, + "CustomerInfo": 66257099, + "PaymentType": "Cash" + }, + { + "Id": 15210, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-1", + "TransactionDate": "2018-05-07T07:51:10", + "TransactionId": 31023783, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 498, + "CustomerInfo": 48489790, + "PaymentType": "Cash" + }, + { + "Id": 15211, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2019-12-18T07:58:48", + "TransactionId": 71645152, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 985, + "CustomerInfo": 73574996, + "PaymentType": "Debit Card" + }, + { + "Id": 15212, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2019-10-19T09:14:15", + "TransactionId": 93712536, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 951, + "CustomerInfo": 61700000, + "PaymentType": "Cash" + }, + { + "Id": 15213, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2018-05-30T17:48:29", + "TransactionId": 91907080, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 25, + "CustomerInfo": 1449613, + "PaymentType": "Debit Card" + }, + { + "Id": 15214, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-09-08T07:15:36", + "TransactionId": 2501131, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 212, + "CustomerInfo": 47479366, + "PaymentType": "Debit Card" + }, + { + "Id": 15215, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2019-06-05T11:21:59", + "TransactionId": 44653823, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 836, + "CustomerInfo": 63420886, + "PaymentType": "Debit Card" + }, + { + "Id": 15216, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-04-19T15:48:14", + "TransactionId": 48632423, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 602, + "CustomerInfo": 83880712, + "PaymentType": "Cash" + }, + { + "Id": 15217, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2017-11-08T15:41:37", + "TransactionId": 90544231, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 217, + "CustomerInfo": 79237397, + "PaymentType": "Cash" + }, + { + "Id": 15218, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-11-26T10:52:19", + "TransactionId": 35761437, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 129, + "CustomerInfo": 12125292, + "PaymentType": "Debit Card" + }, + { + "Id": 15219, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-03-05T08:11:02", + "TransactionId": 31275083, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 180, + "CustomerInfo": 85794072, + "PaymentType": "Credit Card" + }, + { + "Id": 15220, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-08-22T09:21:19", + "TransactionId": 52118839, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 908, + "CustomerInfo": 54646243, + "PaymentType": "Credit Card" + }, + { + "Id": 15221, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2017-10-16T13:01:29", + "TransactionId": 69716160, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 172, + "CustomerInfo": 64658432, + "PaymentType": "Cash" + }, + { + "Id": 15222, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-10-11T09:18:00", + "TransactionId": 1430455, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 570, + "CustomerInfo": 43883689, + "PaymentType": "Credit Card" + }, + { + "Id": 15223, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2017-05-26T18:38:53", + "TransactionId": 80839660, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 670, + "CustomerInfo": 13532114, + "PaymentType": "Debit Card" + }, + { + "Id": 15224, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-07-19T10:35:20", + "TransactionId": 30624590, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 237, + "CustomerInfo": 59195384, + "PaymentType": "Credit Card" + }, + { + "Id": 15225, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2016-10-26T08:42:26", + "TransactionId": 35975028, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 530, + "CustomerInfo": 5583288, + "PaymentType": "Cash" + }, + { + "Id": 15226, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-03-22T11:26:18", + "TransactionId": 9097129, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 125, + "CustomerInfo": 20742404, + "PaymentType": "Credit Card" + }, + { + "Id": 15227, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2017-04-25T14:46:36", + "TransactionId": 49113475, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 852, + "CustomerInfo": 77294324, + "PaymentType": "Credit Card" + }, + { + "Id": 15228, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2019-10-04T19:43:24", + "TransactionId": 68571831, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 134, + "CustomerInfo": 99416128, + "PaymentType": "Credit Card" + }, + { + "Id": 15229, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2016-11-04T14:00:23", + "TransactionId": 96545302, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 934, + "CustomerInfo": 8750509, + "PaymentType": "Credit Card" + }, + { + "Id": 15230, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2016-08-05T16:34:19", + "TransactionId": 51224364, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 47, + "CustomerInfo": 61862233, + "PaymentType": "Credit Card" + }, + { + "Id": 15231, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2018-12-23T18:46:31", + "TransactionId": 76464182, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 338, + "CustomerInfo": 74590223, + "PaymentType": "Cash" + }, + { + "Id": 15232, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2017-08-11T14:36:49", + "TransactionId": 14615905, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 817, + "CustomerInfo": 26993629, + "PaymentType": "Credit Card" + }, + { + "Id": 15233, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2018-09-22T13:22:39", + "TransactionId": 88035299, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 627, + "CustomerInfo": 47429639, + "PaymentType": "Credit Card" + }, + { + "Id": 15234, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2016-06-18T17:28:02", + "TransactionId": 267266, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 872, + "CustomerInfo": 83764086, + "PaymentType": "Cash" + }, + { + "Id": 15235, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-09-23T18:58:19", + "TransactionId": 8823020, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 120, + "CustomerInfo": 42741447, + "PaymentType": "Cash" + }, + { + "Id": 15236, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-12-14T19:57:04", + "TransactionId": 29800844, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 13, + "CustomerInfo": 76531598, + "PaymentType": "Cash" + }, + { + "Id": 15237, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-01-29T08:32:56", + "TransactionId": 77109600, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 399, + "CustomerInfo": 36680874, + "PaymentType": "Debit Card" + }, + { + "Id": 15238, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-04-10T13:47:00", + "TransactionId": 94092157, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 360, + "CustomerInfo": 28642168, + "PaymentType": "Credit Card" + }, + { + "Id": 15239, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2019-12-09T11:30:12", + "TransactionId": 27756048, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 228, + "CustomerInfo": 3408186, + "PaymentType": "Debit Card" + }, + { + "Id": 15240, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2019-08-26T15:08:56", + "TransactionId": 1344351, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 905, + "CustomerInfo": 82340489, + "PaymentType": "Cash" + }, + { + "Id": 15241, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2019-04-30T18:39:53", + "TransactionId": 92388868, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 685, + "CustomerInfo": 79804395, + "PaymentType": "Debit Card" + }, + { + "Id": 15242, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-03-12T14:57:07", + "TransactionId": 54003758, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 230, + "CustomerInfo": 94277289, + "PaymentType": "Credit Card" + }, + { + "Id": 15243, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2017-06-09T17:23:25", + "TransactionId": 62390394, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 174, + "CustomerInfo": 81921879, + "PaymentType": "Cash" + }, + { + "Id": 15244, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-03-01T07:53:20", + "TransactionId": 87469830, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 702, + "CustomerInfo": 10702648, + "PaymentType": "Cash" + }, + { + "Id": 15245, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2019-02-03T16:22:13", + "TransactionId": 26491185, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 289, + "CustomerInfo": 49637276, + "PaymentType": "Cash" + }, + { + "Id": 15246, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2019-04-16T12:25:55", + "TransactionId": 46408431, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 102, + "CustomerInfo": 85536439, + "PaymentType": "Credit Card" + }, + { + "Id": 15247, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2019-05-06T17:33:39", + "TransactionId": 24319650, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 629, + "CustomerInfo": 62193164, + "PaymentType": "Credit Card" + }, + { + "Id": 15248, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-3", + "TransactionDate": "2018-06-29T17:24:52", + "TransactionId": 89998810, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 570, + "CustomerInfo": 25043631, + "PaymentType": "Debit Card" + }, + { + "Id": 15249, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2017-05-22T12:48:58", + "TransactionId": 69231767, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 90, + "CustomerInfo": 52481039, + "PaymentType": "Debit Card" + }, + { + "Id": 15250, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-06-08T11:23:17", + "TransactionId": 46702254, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 279, + "CustomerInfo": 43687825, + "PaymentType": "Credit Card" + }, + { + "Id": 15251, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-08-26T11:02:41", + "TransactionId": 37268150, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 25777490, + "PaymentType": "Cash" + }, + { + "Id": 15252, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-01-11T13:00:20", + "TransactionId": 64965466, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 880, + "CustomerInfo": 74729610, + "PaymentType": "Debit Card" + }, + { + "Id": 15253, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-11-18T18:51:16", + "TransactionId": 72403301, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 777, + "CustomerInfo": 67907305, + "PaymentType": "Cash" + }, + { + "Id": 15254, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-12-29T15:16:16", + "TransactionId": 11952997, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 774, + "CustomerInfo": 30597169, + "PaymentType": "Credit Card" + }, + { + "Id": 15255, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-05-16T11:56:50", + "TransactionId": 47581197, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 217, + "CustomerInfo": 61006196, + "PaymentType": "Credit Card" + }, + { + "Id": 15256, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2016-05-07T07:15:19", + "TransactionId": 89757029, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 545, + "CustomerInfo": 79446567, + "PaymentType": "Debit Card" + }, + { + "Id": 15257, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2018-06-18T18:32:15", + "TransactionId": 15539429, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 262, + "CustomerInfo": 30269927, + "PaymentType": "Credit Card" + }, + { + "Id": 15258, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2017-07-07T13:54:29", + "TransactionId": 55142261, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 657, + "CustomerInfo": 25332140, + "PaymentType": "Credit Card" + }, + { + "Id": 15259, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2016-01-10T15:19:35", + "TransactionId": 17949408, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 859, + "CustomerInfo": 75204933, + "PaymentType": "Debit Card" + }, + { + "Id": 15260, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-09-17T11:21:50", + "TransactionId": 90829733, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 17665937, + "PaymentType": "Debit Card" + }, + { + "Id": 15261, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-02-21T15:11:31", + "TransactionId": 11843418, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 31320359, + "PaymentType": "Cash" + }, + { + "Id": 15262, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2016-08-26T14:15:30", + "TransactionId": 86679755, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 679, + "CustomerInfo": 47796945, + "PaymentType": "Debit Card" + }, + { + "Id": 15263, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2018-09-20T09:11:31", + "TransactionId": 95921868, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 808, + "CustomerInfo": 97350430, + "PaymentType": "Debit Card" + }, + { + "Id": 15264, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2016-01-22T18:09:04", + "TransactionId": 88478378, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 558, + "CustomerInfo": 74959078, + "PaymentType": "Debit Card" + }, + { + "Id": 15265, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-10-04T11:29:46", + "TransactionId": 41462225, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 652, + "CustomerInfo": 29909488, + "PaymentType": "Credit Card" + }, + { + "Id": 15266, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-11-26T11:01:24", + "TransactionId": 44637656, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 466, + "CustomerInfo": 87420373, + "PaymentType": "Debit Card" + }, + { + "Id": 15267, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-10-24T14:03:07", + "TransactionId": 83898166, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 166, + "CustomerInfo": 91495648, + "PaymentType": "Debit Card" + }, + { + "Id": 15268, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-04-05T14:01:58", + "TransactionId": 20489586, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 892, + "CustomerInfo": 24320821, + "PaymentType": "Cash" + }, + { + "Id": 15269, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2017-02-02T10:06:14", + "TransactionId": 92632615, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 32002955, + "PaymentType": "Debit Card" + }, + { + "Id": 15270, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2017-05-29T14:09:45", + "TransactionId": 88741607, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 356, + "CustomerInfo": 61572071, + "PaymentType": "Credit Card" + }, + { + "Id": 15271, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2019-12-14T19:41:23", + "TransactionId": 31754495, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 98, + "CustomerInfo": 11168225, + "PaymentType": "Credit Card" + }, + { + "Id": 15272, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2019-01-17T11:43:26", + "TransactionId": 34417272, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 696, + "CustomerInfo": 81798860, + "PaymentType": "Credit Card" + }, + { + "Id": 15273, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-06-08T10:09:59", + "TransactionId": 89326863, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 172, + "CustomerInfo": 96880750, + "PaymentType": "Cash" + }, + { + "Id": 15274, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-04-29T15:48:23", + "TransactionId": 8347115, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 390, + "CustomerInfo": 33563389, + "PaymentType": "Debit Card" + }, + { + "Id": 15275, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2017-10-16T14:41:51", + "TransactionId": 93835381, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 543, + "CustomerInfo": 62985141, + "PaymentType": "Debit Card" + }, + { + "Id": 15276, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2018-03-14T09:27:30", + "TransactionId": 73505266, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 514, + "CustomerInfo": 54279042, + "PaymentType": "Cash" + }, + { + "Id": 15277, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2016-11-29T09:24:37", + "TransactionId": 95761561, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 42, + "CustomerInfo": 71399003, + "PaymentType": "Credit Card" + }, + { + "Id": 15278, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-11-25T08:28:45", + "TransactionId": 57371471, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 749, + "CustomerInfo": 24179641, + "PaymentType": "Credit Card" + }, + { + "Id": 15279, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2018-07-29T18:52:08", + "TransactionId": 90537400, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 57, + "CustomerInfo": 30319181, + "PaymentType": "Cash" + }, + { + "Id": 15280, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2018-10-01T10:07:41", + "TransactionId": 21831414, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 768, + "CustomerInfo": 85835659, + "PaymentType": "Cash" + }, + { + "Id": 15281, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-03-20T15:09:13", + "TransactionId": 41073828, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 279, + "CustomerInfo": 20973989, + "PaymentType": "Cash" + }, + { + "Id": 15282, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2016-08-28T19:15:53", + "TransactionId": 48888991, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 119, + "CustomerInfo": 24799253, + "PaymentType": "Cash" + }, + { + "Id": 15283, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2016-08-29T18:08:04", + "TransactionId": 91563291, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 7, + "CustomerInfo": 73972240, + "PaymentType": "Debit Card" + }, + { + "Id": 15284, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-04-25T09:13:24", + "TransactionId": 19651976, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 30810431, + "PaymentType": "Debit Card" + }, + { + "Id": 15285, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2018-12-23T07:16:36", + "TransactionId": 92443726, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 884, + "CustomerInfo": 76035865, + "PaymentType": "Debit Card" + }, + { + "Id": 15286, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2016-01-09T08:47:54", + "TransactionId": 67837875, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 338, + "CustomerInfo": 755659, + "PaymentType": "Debit Card" + }, + { + "Id": 15287, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2016-07-20T11:03:24", + "TransactionId": 42917329, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 821, + "CustomerInfo": 22940115, + "PaymentType": "Cash" + }, + { + "Id": 15288, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-04-04T14:59:34", + "TransactionId": 22067116, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 995, + "CustomerInfo": 86105637, + "PaymentType": "Credit Card" + }, + { + "Id": 15289, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2018-12-13T10:01:55", + "TransactionId": 29520109, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 102, + "CustomerInfo": 77270387, + "PaymentType": "Cash" + }, + { + "Id": 15290, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2019-03-13T07:28:25", + "TransactionId": 54215918, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 201, + "CustomerInfo": 78617196, + "PaymentType": "Debit Card" + }, + { + "Id": 15291, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-11-13T11:04:25", + "TransactionId": 74839183, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 994, + "CustomerInfo": 57421087, + "PaymentType": "Cash" + }, + { + "Id": 15292, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2016-10-09T11:47:46", + "TransactionId": 2012036, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 830, + "CustomerInfo": 80264216, + "PaymentType": "Debit Card" + }, + { + "Id": 15293, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2017-11-19T08:31:47", + "TransactionId": 39521542, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 685, + "CustomerInfo": 35700706, + "PaymentType": "Debit Card" + }, + { + "Id": 15294, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2017-05-25T18:39:27", + "TransactionId": 44206983, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 436, + "CustomerInfo": 9615029, + "PaymentType": "Credit Card" + }, + { + "Id": 15295, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2017-05-28T11:05:34", + "TransactionId": 65679710, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 545, + "CustomerInfo": 6224228, + "PaymentType": "Credit Card" + }, + { + "Id": 15296, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-04-17T09:16:51", + "TransactionId": 59677334, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 905, + "CustomerInfo": 81950712, + "PaymentType": "Debit Card" + }, + { + "Id": 15297, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-04-09T09:03:45", + "TransactionId": 77656619, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 185, + "CustomerInfo": 34883351, + "PaymentType": "Cash" + }, + { + "Id": 15298, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-04-13T11:20:07", + "TransactionId": 42760976, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 899, + "CustomerInfo": 96874302, + "PaymentType": "Debit Card" + }, + { + "Id": 15299, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-4", + "TransactionDate": "2018-12-02T15:30:06", + "TransactionId": 76109152, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 310, + "CustomerInfo": 60416914, + "PaymentType": "Credit Card" + }, + { + "Id": 15300, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2018-08-17T12:22:19", + "TransactionId": 49984657, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 380, + "CustomerInfo": 56580957, + "PaymentType": "Debit Card" + }, + { + "Id": 15301, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-2", + "TransactionDate": "2018-12-03T16:55:47", + "TransactionId": 31788090, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 577, + "CustomerInfo": 75278009, + "PaymentType": "Cash" + }, + { + "Id": 15302, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2018-06-01T17:01:49", + "TransactionId": 61384707, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 149, + "CustomerInfo": 64532220, + "PaymentType": "Credit Card" + }, + { + "Id": 15303, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2017-01-03T08:38:15", + "TransactionId": 42818056, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 9, + "CustomerInfo": 43725234, + "PaymentType": "Debit Card" + }, + { + "Id": 15304, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2018-04-26T07:23:31", + "TransactionId": 84378625, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 294, + "CustomerInfo": 73915368, + "PaymentType": "Debit Card" + }, + { + "Id": 15305, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2016-08-20T10:38:21", + "TransactionId": 19569810, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 777, + "CustomerInfo": 83171218, + "PaymentType": "Cash" + }, + { + "Id": 15306, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2019-11-19T12:09:04", + "TransactionId": 6121677, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 656, + "CustomerInfo": 58164, + "PaymentType": "Cash" + }, + { + "Id": 15307, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-01-20T19:20:30", + "TransactionId": 52005605, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 848, + "CustomerInfo": 2017615, + "PaymentType": "Debit Card" + }, + { + "Id": 15308, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2019-06-26T12:31:41", + "TransactionId": 21145408, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 926, + "CustomerInfo": 23110334, + "PaymentType": "Cash" + }, + { + "Id": 15309, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2017-11-24T10:43:58", + "TransactionId": 30156125, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 483, + "CustomerInfo": 50218727, + "PaymentType": "Debit Card" + }, + { + "Id": 15310, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-04-20T15:19:00", + "TransactionId": 58639660, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 899, + "CustomerInfo": 8307627, + "PaymentType": "Credit Card" + }, + { + "Id": 15311, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-01-10T13:50:10", + "TransactionId": 70051012, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 893, + "CustomerInfo": 95935858, + "PaymentType": "Cash" + }, + { + "Id": 15312, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2018-02-05T17:26:10", + "TransactionId": 75402531, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 211, + "CustomerInfo": 57516427, + "PaymentType": "Debit Card" + }, + { + "Id": 15313, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-04-26T08:33:22", + "TransactionId": 31163901, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 141, + "CustomerInfo": 56115318, + "PaymentType": "Debit Card" + }, + { + "Id": 15314, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2019-03-31T08:24:52", + "TransactionId": 56117791, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 764, + "CustomerInfo": 92438350, + "PaymentType": "Credit Card" + }, + { + "Id": 15315, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2019-07-10T08:02:50", + "TransactionId": 93830145, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 237, + "CustomerInfo": 76374679, + "PaymentType": "Cash" + }, + { + "Id": 15316, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-12-31T07:44:15", + "TransactionId": 42089381, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 586, + "CustomerInfo": 13956949, + "PaymentType": "Debit Card" + }, + { + "Id": 15317, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2019-02-13T09:04:11", + "TransactionId": 64767533, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 969, + "CustomerInfo": 78743417, + "PaymentType": "Credit Card" + }, + { + "Id": 15318, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2019-08-29T08:57:42", + "TransactionId": 35478957, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 493, + "CustomerInfo": 49925104, + "PaymentType": "Credit Card" + }, + { + "Id": 15319, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2017-06-04T07:26:15", + "TransactionId": 62770786, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 244, + "CustomerInfo": 31396321, + "PaymentType": "Cash" + }, + { + "Id": 15320, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2019-03-07T11:51:30", + "TransactionId": 28419346, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 852, + "CustomerInfo": 54448478, + "PaymentType": "Debit Card" + }, + { + "Id": 15321, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2016-08-21T16:05:23", + "TransactionId": 34606176, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 707, + "CustomerInfo": 98876267, + "PaymentType": "Credit Card" + }, + { + "Id": 15322, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2016-07-21T19:37:21", + "TransactionId": 26972497, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 383, + "CustomerInfo": 62160479, + "PaymentType": "Debit Card" + }, + { + "Id": 15323, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2016-02-23T12:04:11", + "TransactionId": 97193008, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 971, + "CustomerInfo": 26921142, + "PaymentType": "Debit Card" + }, + { + "Id": 15324, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-10-29T13:29:08", + "TransactionId": 62564365, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 887, + "CustomerInfo": 56835293, + "PaymentType": "Credit Card" + }, + { + "Id": 15325, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-10-05T16:52:02", + "TransactionId": 16328734, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 756, + "CustomerInfo": 70127765, + "PaymentType": "Debit Card" + }, + { + "Id": 15326, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2019-01-11T15:40:54", + "TransactionId": 43897372, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 298, + "CustomerInfo": 3814607, + "PaymentType": "Cash" + }, + { + "Id": 15327, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-11-07T12:43:38", + "TransactionId": 4851606, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 272, + "CustomerInfo": 5809828, + "PaymentType": "Credit Card" + }, + { + "Id": 15328, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2019-11-20T12:38:10", + "TransactionId": 32762906, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 981, + "CustomerInfo": 61173326, + "PaymentType": "Cash" + }, + { + "Id": 15329, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2017-02-14T13:49:00", + "TransactionId": 33985843, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 262, + "CustomerInfo": 18018475, + "PaymentType": "Credit Card" + }, + { + "Id": 15330, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-06-29T13:11:43", + "TransactionId": 61182203, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 439, + "CustomerInfo": 15633727, + "PaymentType": "Debit Card" + }, + { + "Id": 15331, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2017-11-28T12:15:59", + "TransactionId": 22251438, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 437, + "CustomerInfo": 31935042, + "PaymentType": "Cash" + }, + { + "Id": 15332, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2017-09-06T09:40:19", + "TransactionId": 22888949, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 312, + "CustomerInfo": 2802045, + "PaymentType": "Cash" + }, + { + "Id": 15333, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2019-11-24T07:35:20", + "TransactionId": 2623564, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 981, + "CustomerInfo": 41988350, + "PaymentType": "Credit Card" + }, + { + "Id": 15334, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-10-02T17:50:56", + "TransactionId": 6690792, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 405, + "CustomerInfo": 14212299, + "PaymentType": "Debit Card" + }, + { + "Id": 15335, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-11-19T09:56:18", + "TransactionId": 40352512, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 696, + "CustomerInfo": 4162000, + "PaymentType": "Credit Card" + }, + { + "Id": 15336, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2018-06-02T13:59:40", + "TransactionId": 94261569, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 342, + "CustomerInfo": 27938719, + "PaymentType": "Debit Card" + }, + { + "Id": 15337, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2016-10-06T17:05:51", + "TransactionId": 70936993, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 316, + "CustomerInfo": 82160931, + "PaymentType": "Cash" + }, + { + "Id": 15338, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2017-12-05T15:41:37", + "TransactionId": 86242564, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 538, + "CustomerInfo": 3615449, + "PaymentType": "Cash" + }, + { + "Id": 15339, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2018-09-19T18:43:21", + "TransactionId": 78512226, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 730, + "CustomerInfo": 98826671, + "PaymentType": "Cash" + }, + { + "Id": 15340, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2018-10-19T10:29:34", + "TransactionId": 8957393, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 938, + "CustomerInfo": 17673717, + "PaymentType": "Cash" + }, + { + "Id": 15341, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-09-22T16:53:28", + "TransactionId": 49317124, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 437, + "CustomerInfo": 4967698, + "PaymentType": "Debit Card" + }, + { + "Id": 15342, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-08-14T15:24:37", + "TransactionId": 68821426, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 486, + "CustomerInfo": 49394319, + "PaymentType": "Debit Card" + }, + { + "Id": 15343, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-05-06T07:20:38", + "TransactionId": 99968902, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 499, + "CustomerInfo": 95875259, + "PaymentType": "Cash" + }, + { + "Id": 15344, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2019-09-15T16:07:32", + "TransactionId": 98580031, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 867, + "CustomerInfo": 61673317, + "PaymentType": "Cash" + }, + { + "Id": 15345, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2018-08-25T14:34:31", + "TransactionId": 77934057, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 585, + "CustomerInfo": 40179202, + "PaymentType": "Cash" + }, + { + "Id": 15346, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2018-10-30T13:25:41", + "TransactionId": 81369041, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 974, + "CustomerInfo": 91235446, + "PaymentType": "Cash" + }, + { + "Id": 15347, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2017-02-02T19:36:37", + "TransactionId": 82008288, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 459, + "CustomerInfo": 72272732, + "PaymentType": "Cash" + }, + { + "Id": 15348, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-09-08T09:47:05", + "TransactionId": 71468182, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 426, + "CustomerInfo": 64971307, + "PaymentType": "Credit Card" + }, + { + "Id": 15349, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-02-01T07:04:31", + "TransactionId": 36383906, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 106, + "CustomerInfo": 34257126, + "PaymentType": "Credit Card" + }, + { + "Id": 15350, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2019-11-10T07:03:30", + "TransactionId": 32414994, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 589, + "CustomerInfo": 16795366, + "PaymentType": "Cash" + }, + { + "Id": 15351, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-06-01T09:52:51", + "TransactionId": 48304448, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 975, + "CustomerInfo": 84305433, + "PaymentType": "Credit Card" + }, + { + "Id": 15352, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-08-22T13:45:16", + "TransactionId": 76242063, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 215, + "CustomerInfo": 28071723, + "PaymentType": "Cash" + }, + { + "Id": 15353, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-12-28T11:07:18", + "TransactionId": 53975356, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 392, + "CustomerInfo": 68865846, + "PaymentType": "Credit Card" + }, + { + "Id": 15354, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2017-09-22T16:38:30", + "TransactionId": 35010772, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 654, + "CustomerInfo": 90042087, + "PaymentType": "Credit Card" + }, + { + "Id": 15355, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-01-13T15:29:48", + "TransactionId": 51915383, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 842, + "CustomerInfo": 33771530, + "PaymentType": "Cash" + }, + { + "Id": 15356, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2019-05-25T16:25:49", + "TransactionId": 25965477, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 407, + "CustomerInfo": 3499472, + "PaymentType": "Credit Card" + }, + { + "Id": 15357, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2019-10-03T16:25:32", + "TransactionId": 15764052, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 277, + "CustomerInfo": 88296615, + "PaymentType": "Credit Card" + }, + { + "Id": 15358, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-07-12T15:07:55", + "TransactionId": 23448242, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 380, + "CustomerInfo": 62354769, + "PaymentType": "Cash" + }, + { + "Id": 15359, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2016-04-10T12:12:40", + "TransactionId": 31455208, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 717, + "CustomerInfo": 65624459, + "PaymentType": "Cash" + }, + { + "Id": 15360, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2016-05-30T12:49:24", + "TransactionId": 86472006, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 151, + "CustomerInfo": 54136261, + "PaymentType": "Cash" + }, + { + "Id": 15361, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2017-08-17T07:44:50", + "TransactionId": 2372829, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 592, + "CustomerInfo": 65111247, + "PaymentType": "Cash" + }, + { + "Id": 15362, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2017-07-28T13:51:01", + "TransactionId": 20317260, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 648, + "CustomerInfo": 8481360, + "PaymentType": "Debit Card" + }, + { + "Id": 15363, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2018-06-18T19:56:56", + "TransactionId": 18101826, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 491, + "CustomerInfo": 93824169, + "PaymentType": "Credit Card" + }, + { + "Id": 15364, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2017-09-24T07:46:25", + "TransactionId": 66826946, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 502, + "CustomerInfo": 89357528, + "PaymentType": "Cash" + }, + { + "Id": 15365, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2017-03-21T19:49:18", + "TransactionId": 53877879, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 296, + "CustomerInfo": 32240848, + "PaymentType": "Debit Card" + }, + { + "Id": 15366, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-08-13T15:52:51", + "TransactionId": 33425084, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 531, + "CustomerInfo": 7098888, + "PaymentType": "Credit Card" + }, + { + "Id": 15367, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2017-11-11T09:56:01", + "TransactionId": 14809096, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 663, + "CustomerInfo": 54577701, + "PaymentType": "Cash" + }, + { + "Id": 15368, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2016-03-27T13:36:03", + "TransactionId": 770736, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 126, + "CustomerInfo": 39727246, + "PaymentType": "Debit Card" + }, + { + "Id": 15369, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2018-04-23T08:03:42", + "TransactionId": 26498239, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 153, + "CustomerInfo": 89967064, + "PaymentType": "Debit Card" + }, + { + "Id": 15370, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2018-07-15T15:31:49", + "TransactionId": 46211589, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 299, + "CustomerInfo": 14099797, + "PaymentType": "Credit Card" + }, + { + "Id": 15371, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-05-29T10:28:51", + "TransactionId": 61626148, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 466, + "CustomerInfo": 13875065, + "PaymentType": "Credit Card" + }, + { + "Id": 15372, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2018-07-30T18:48:14", + "TransactionId": 89848828, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 98231147, + "PaymentType": "Cash" + }, + { + "Id": 15373, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2016-02-08T10:56:12", + "TransactionId": 65882900, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 442, + "CustomerInfo": 51458168, + "PaymentType": "Credit Card" + }, + { + "Id": 15374, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-11-17T15:03:10", + "TransactionId": 22211470, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 37608482, + "PaymentType": "Credit Card" + }, + { + "Id": 15375, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2018-06-04T13:56:04", + "TransactionId": 23447901, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 114, + "CustomerInfo": 5325733, + "PaymentType": "Credit Card" + }, + { + "Id": 15376, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2019-02-06T16:27:50", + "TransactionId": 54706939, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 287, + "CustomerInfo": 20729412, + "PaymentType": "Cash" + }, + { + "Id": 15377, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-10-11T17:01:15", + "TransactionId": 40783651, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 499, + "CustomerInfo": 46888322, + "PaymentType": "Cash" + }, + { + "Id": 15378, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-03-11T15:29:31", + "TransactionId": 71501470, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 370, + "CustomerInfo": 56715706, + "PaymentType": "Credit Card" + }, + { + "Id": 15379, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-07-08T09:40:19", + "TransactionId": 97838626, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 790, + "CustomerInfo": 30622119, + "PaymentType": "Credit Card" + }, + { + "Id": 15380, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2018-09-15T18:56:01", + "TransactionId": 10964850, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 905, + "CustomerInfo": 35375165, + "PaymentType": "Credit Card" + }, + { + "Id": 15381, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2016-07-25T10:28:34", + "TransactionId": 8291584, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 84687161, + "PaymentType": "Credit Card" + }, + { + "Id": 15382, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2017-11-03T07:04:13", + "TransactionId": 52687007, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 784, + "CustomerInfo": 73057575, + "PaymentType": "Credit Card" + }, + { + "Id": 15383, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-11-14T15:38:10", + "TransactionId": 16438313, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 844, + "CustomerInfo": 36891386, + "PaymentType": "Cash" + }, + { + "Id": 15384, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2016-03-26T13:22:31", + "TransactionId": 32992196, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 917, + "CustomerInfo": 38691218, + "PaymentType": "Credit Card" + }, + { + "Id": 15385, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2019-11-23T12:10:57", + "TransactionId": 47951093, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 298, + "CustomerInfo": 98728619, + "PaymentType": "Cash" + }, + { + "Id": 15386, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2017-02-12T12:24:03", + "TransactionId": 60416181, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 53433817, + "PaymentType": "Debit Card" + }, + { + "Id": 15387, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2016-03-20T14:32:04", + "TransactionId": 90756610, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 983, + "CustomerInfo": 91333989, + "PaymentType": "Cash" + }, + { + "Id": 15388, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2018-09-19T13:59:05", + "TransactionId": 96102637, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 734, + "CustomerInfo": 19713439, + "PaymentType": "Cash" + }, + { + "Id": 15389, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2016-12-04T17:16:22", + "TransactionId": 94111348, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 303, + "CustomerInfo": 13715066, + "PaymentType": "Cash" + }, + { + "Id": 15390, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2017-12-06T15:16:16", + "TransactionId": 71169660, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 571, + "CustomerInfo": 35745194, + "PaymentType": "Cash" + }, + { + "Id": 15391, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2018-08-08T10:52:19", + "TransactionId": 86183686, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 695, + "CustomerInfo": 75822745, + "PaymentType": "Cash" + }, + { + "Id": 15392, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2018-09-27T09:31:32", + "TransactionId": 23969294, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 353, + "CustomerInfo": 54663170, + "PaymentType": "Cash" + }, + { + "Id": 15393, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-03-15T11:47:11", + "TransactionId": 36648931, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 3, + "CustomerInfo": 33045292, + "PaymentType": "Cash" + }, + { + "Id": 15394, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-01-23T07:40:31", + "TransactionId": 20685704, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 280, + "CustomerInfo": 75538405, + "PaymentType": "Cash" + }, + { + "Id": 15395, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2016-07-25T10:16:28", + "TransactionId": 16706261, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 277, + "CustomerInfo": 50662222, + "PaymentType": "Cash" + }, + { + "Id": 15396, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-11-15T14:59:43", + "TransactionId": 12452382, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 638, + "CustomerInfo": 57381256, + "PaymentType": "Cash" + }, + { + "Id": 15397, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-08-18T10:44:33", + "TransactionId": 83710694, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 182, + "CustomerInfo": 52199008, + "PaymentType": "Debit Card" + }, + { + "Id": 15398, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-02-13T12:02:53", + "TransactionId": 176068, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 147, + "CustomerInfo": 67843687, + "PaymentType": "Cash" + }, + { + "Id": 15399, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2016-02-21T17:21:16", + "TransactionId": 86795526, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 89, + "CustomerInfo": 6454847, + "PaymentType": "Cash" + }, + { + "Id": 15400, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2016-06-08T12:34:08", + "TransactionId": 35644975, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 307, + "CustomerInfo": 11229195, + "PaymentType": "Debit Card" + }, + { + "Id": 15401, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2017-08-19T16:37:38", + "TransactionId": 92319608, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 397, + "CustomerInfo": 85702405, + "PaymentType": "Credit Card" + }, + { + "Id": 15402, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-4", + "TransactionDate": "2018-08-23T16:26:50", + "TransactionId": 7125369, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 315, + "CustomerInfo": 16423399, + "PaymentType": "Debit Card" + }, + { + "Id": 15403, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-05-03T12:35:43", + "TransactionId": 57224114, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 219, + "CustomerInfo": 12213967, + "PaymentType": "Cash" + }, + { + "Id": 15404, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2019-06-08T09:29:40", + "TransactionId": 79487134, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 993, + "CustomerInfo": 3907445, + "PaymentType": "Cash" + }, + { + "Id": 15405, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-02-13T11:23:25", + "TransactionId": 47452398, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 16349745, + "PaymentType": "Credit Card" + }, + { + "Id": 15406, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2018-03-27T12:07:12", + "TransactionId": 95403218, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 195, + "CustomerInfo": 13854142, + "PaymentType": "Credit Card" + }, + { + "Id": 15407, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2017-07-03T15:01:44", + "TransactionId": 74430391, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 125, + "CustomerInfo": 74261654, + "PaymentType": "Debit Card" + }, + { + "Id": 15408, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2017-06-11T11:10:36", + "TransactionId": 58882225, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 790, + "CustomerInfo": 50899511, + "PaymentType": "Debit Card" + }, + { + "Id": 15409, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2019-11-18T08:32:38", + "TransactionId": 4097717, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 331, + "CustomerInfo": 28199655, + "PaymentType": "Debit Card" + }, + { + "Id": 15410, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-11-12T14:12:46", + "TransactionId": 67825170, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 208, + "CustomerInfo": 82191879, + "PaymentType": "Cash" + }, + { + "Id": 15411, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2016-11-11T14:54:23", + "TransactionId": 26396609, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 690, + "CustomerInfo": 57751706, + "PaymentType": "Credit Card" + }, + { + "Id": 15412, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2018-05-08T12:22:28", + "TransactionId": 30803906, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 208, + "CustomerInfo": 98201515, + "PaymentType": "Cash" + }, + { + "Id": 15413, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2018-10-30T07:15:45", + "TransactionId": 35973562, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 34, + "CustomerInfo": 24878786, + "PaymentType": "Cash" + }, + { + "Id": 15414, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2017-03-21T14:16:13", + "TransactionId": 85972574, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 648, + "CustomerInfo": 1723068, + "PaymentType": "Debit Card" + }, + { + "Id": 15415, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2019-11-16T07:43:15", + "TransactionId": 57942566, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 377, + "CustomerInfo": 2190430, + "PaymentType": "Cash" + }, + { + "Id": 15416, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2019-04-22T17:54:06", + "TransactionId": 71749365, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 79177242, + "PaymentType": "Credit Card" + }, + { + "Id": 15417, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-03-21T14:19:49", + "TransactionId": 78643615, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 309, + "CustomerInfo": 21081950, + "PaymentType": "Cash" + }, + { + "Id": 15418, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2019-03-29T19:36:37", + "TransactionId": 63507634, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 166, + "CustomerInfo": 2502433, + "PaymentType": "Debit Card" + }, + { + "Id": 15419, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2017-08-29T15:52:25", + "TransactionId": 16271580, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 441, + "CustomerInfo": 12714925, + "PaymentType": "Credit Card" + }, + { + "Id": 15420, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2017-02-26T18:13:15", + "TransactionId": 18107637, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 834, + "CustomerInfo": 362951, + "PaymentType": "Debit Card" + }, + { + "Id": 15421, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2019-08-14T11:56:59", + "TransactionId": 45475783, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 391, + "CustomerInfo": 44642236, + "PaymentType": "Debit Card" + }, + { + "Id": 15422, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2017-07-04T18:06:46", + "TransactionId": 84193203, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 838, + "CustomerInfo": 88175074, + "PaymentType": "Cash" + }, + { + "Id": 15423, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2018-07-31T15:25:38", + "TransactionId": 26082422, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 704, + "CustomerInfo": 52404983, + "PaymentType": "Credit Card" + }, + { + "Id": 15424, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2019-06-09T11:58:51", + "TransactionId": 38679988, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 958, + "CustomerInfo": 59952031, + "PaymentType": "Cash" + }, + { + "Id": 15425, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-11-06T12:55:26", + "TransactionId": 46319993, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 582, + "CustomerInfo": 73614801, + "PaymentType": "Credit Card" + }, + { + "Id": 15426, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2019-02-23T09:01:44", + "TransactionId": 58843355, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 206, + "CustomerInfo": 53971045, + "PaymentType": "Cash" + }, + { + "Id": 15427, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-04-05T19:40:31", + "TransactionId": 67373544, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 61501733, + "PaymentType": "Credit Card" + }, + { + "Id": 15428, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2019-03-06T14:31:12", + "TransactionId": 1174090, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 971, + "CustomerInfo": 7054381, + "PaymentType": "Debit Card" + }, + { + "Id": 15429, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-02-24T07:34:36", + "TransactionId": 95572196, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 782, + "CustomerInfo": 41659272, + "PaymentType": "Debit Card" + }, + { + "Id": 15430, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2018-06-04T12:56:36", + "TransactionId": 91608171, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 833, + "CustomerInfo": 66125535, + "PaymentType": "Cash" + }, + { + "Id": 15431, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-10-02T16:35:28", + "TransactionId": 97139135, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 613, + "CustomerInfo": 75081209, + "PaymentType": "Debit Card" + }, + { + "Id": 15432, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-05-19T17:33:13", + "TransactionId": 80783899, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 1757936, + "PaymentType": "Debit Card" + }, + { + "Id": 15433, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2017-08-20T17:01:58", + "TransactionId": 556086, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 800, + "CustomerInfo": 78602954, + "PaymentType": "Cash" + }, + { + "Id": 15434, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-07-20T08:50:38", + "TransactionId": 86699887, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 357, + "CustomerInfo": 27235471, + "PaymentType": "Cash" + }, + { + "Id": 15435, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2017-05-19T09:35:51", + "TransactionId": 64885581, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 158, + "CustomerInfo": 76737614, + "PaymentType": "Cash" + }, + { + "Id": 15436, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-01-15T18:26:38", + "TransactionId": 4848596, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 76, + "CustomerInfo": 78425403, + "PaymentType": "Credit Card" + }, + { + "Id": 15437, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2017-02-15T08:23:00", + "TransactionId": 84019806, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 657, + "CustomerInfo": 97422793, + "PaymentType": "Cash" + }, + { + "Id": 15438, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-10-20T15:55:44", + "TransactionId": 85780507, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 634, + "CustomerInfo": 83160105, + "PaymentType": "Cash" + }, + { + "Id": 15439, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2017-09-16T11:39:16", + "TransactionId": 17964162, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 751, + "CustomerInfo": 61971335, + "PaymentType": "Cash" + }, + { + "Id": 15440, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-02-01T11:33:04", + "TransactionId": 71969650, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 567, + "CustomerInfo": 79490264, + "PaymentType": "Debit Card" + }, + { + "Id": 15441, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-01-09T07:24:40", + "TransactionId": 28672801, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 948, + "CustomerInfo": 96530099, + "PaymentType": "Credit Card" + }, + { + "Id": 15442, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2016-12-15T13:07:41", + "TransactionId": 27422477, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 659, + "CustomerInfo": 84450508, + "PaymentType": "Debit Card" + }, + { + "Id": 15443, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2016-01-30T14:44:36", + "TransactionId": 12768280, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 766, + "CustomerInfo": 21017245, + "PaymentType": "Credit Card" + }, + { + "Id": 15444, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-01-15T14:27:36", + "TransactionId": 46437976, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 165, + "CustomerInfo": 51217665, + "PaymentType": "Debit Card" + }, + { + "Id": 15445, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2017-03-06T16:24:32", + "TransactionId": 96850522, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 808, + "CustomerInfo": 88839549, + "PaymentType": "Debit Card" + }, + { + "Id": 15446, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-04-05T14:36:06", + "TransactionId": 38744980, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 83, + "CustomerInfo": 85066516, + "PaymentType": "Debit Card" + }, + { + "Id": 15447, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-04-24T09:07:47", + "TransactionId": 80671834, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 433, + "CustomerInfo": 63656813, + "PaymentType": "Cash" + }, + { + "Id": 15448, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2017-02-13T19:43:15", + "TransactionId": 3118920, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 174, + "CustomerInfo": 96031458, + "PaymentType": "Cash" + }, + { + "Id": 15449, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-05-12T19:58:22", + "TransactionId": 21044303, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 427, + "CustomerInfo": 14621342, + "PaymentType": "Credit Card" + }, + { + "Id": 15450, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2017-03-18T16:47:43", + "TransactionId": 41069614, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 669, + "CustomerInfo": 73390924, + "PaymentType": "Debit Card" + }, + { + "Id": 15451, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2018-01-09T13:31:52", + "TransactionId": 68959764, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 289, + "CustomerInfo": 42973768, + "PaymentType": "Debit Card" + }, + { + "Id": 15452, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2016-03-12T09:46:05", + "TransactionId": 25080887, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 233, + "CustomerInfo": 22896443, + "PaymentType": "Cash" + }, + { + "Id": 15453, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-11-17T17:52:31", + "TransactionId": 78133496, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 708, + "CustomerInfo": 84736781, + "PaymentType": "Credit Card" + }, + { + "Id": 15454, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-01-21T14:00:23", + "TransactionId": 65852817, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 884, + "CustomerInfo": 44409185, + "PaymentType": "Cash" + }, + { + "Id": 15455, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-12-13T08:18:06", + "TransactionId": 53420274, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 306, + "CustomerInfo": 52399701, + "PaymentType": "Cash" + }, + { + "Id": 15456, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2019-10-18T13:35:54", + "TransactionId": 85980297, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 550, + "CustomerInfo": 85593923, + "PaymentType": "Debit Card" + }, + { + "Id": 15457, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2019-10-08T18:37:00", + "TransactionId": 44072271, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 136, + "CustomerInfo": 24119027, + "PaymentType": "Credit Card" + }, + { + "Id": 15458, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2019-05-03T12:09:22", + "TransactionId": 46831050, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 654, + "CustomerInfo": 28932107, + "PaymentType": "Debit Card" + }, + { + "Id": 15459, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-09-29T07:10:51", + "TransactionId": 53861647, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 650, + "CustomerInfo": 53540059, + "PaymentType": "Cash" + }, + { + "Id": 15460, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2017-06-17T09:32:15", + "TransactionId": 17416190, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 828, + "CustomerInfo": 84927028, + "PaymentType": "Credit Card" + }, + { + "Id": 15461, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2017-02-17T07:36:37", + "TransactionId": 22655648, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 194, + "CustomerInfo": 37452506, + "PaymentType": "Credit Card" + }, + { + "Id": 15462, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-08-26T08:17:31", + "TransactionId": 47616559, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 834, + "CustomerInfo": 82269678, + "PaymentType": "Cash" + }, + { + "Id": 15463, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-09-22T10:09:33", + "TransactionId": 58090192, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 347, + "CustomerInfo": 49332133, + "PaymentType": "Cash" + }, + { + "Id": 15464, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-02-12T09:26:12", + "TransactionId": 5891420, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 900, + "CustomerInfo": 46621055, + "PaymentType": "Credit Card" + }, + { + "Id": 15465, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2016-12-24T10:07:58", + "TransactionId": 10698107, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 618, + "CustomerInfo": 53279886, + "PaymentType": "Debit Card" + }, + { + "Id": 15466, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2016-06-12T18:31:49", + "TransactionId": 88736931, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 12, + "CustomerInfo": 68534691, + "PaymentType": "Debit Card" + }, + { + "Id": 15467, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-09-05T09:19:09", + "TransactionId": 1414974, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 114, + "CustomerInfo": 81089817, + "PaymentType": "Credit Card" + }, + { + "Id": 15468, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2016-07-23T13:25:06", + "TransactionId": 21114442, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 6789055, + "PaymentType": "Debit Card" + }, + { + "Id": 15469, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2017-03-22T09:24:55", + "TransactionId": 50905349, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 906, + "CustomerInfo": 78837872, + "PaymentType": "Debit Card" + }, + { + "Id": 15470, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-04-28T16:25:58", + "TransactionId": 35105853, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 411, + "CustomerInfo": 13413982, + "PaymentType": "Debit Card" + }, + { + "Id": 15471, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2018-03-14T18:02:18", + "TransactionId": 29968653, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 438, + "CustomerInfo": 1409470, + "PaymentType": "Cash" + }, + { + "Id": 15472, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-02-01T10:14:01", + "TransactionId": 72034258, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 114, + "CustomerInfo": 31805078, + "PaymentType": "Debit Card" + }, + { + "Id": 15473, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2017-12-27T07:00:37", + "TransactionId": 50727366, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 734, + "CustomerInfo": 66868740, + "PaymentType": "Cash" + }, + { + "Id": 15474, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-12-05T16:36:46", + "TransactionId": 45790779, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 180, + "CustomerInfo": 56295174, + "PaymentType": "Debit Card" + }, + { + "Id": 15475, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2016-09-18T17:03:42", + "TransactionId": 66273830, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 650, + "CustomerInfo": 759204, + "PaymentType": "Credit Card" + }, + { + "Id": 15476, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2018-06-19T13:06:49", + "TransactionId": 44808968, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 334, + "CustomerInfo": 21700989, + "PaymentType": "Cash" + }, + { + "Id": 15477, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-03-11T19:28:42", + "TransactionId": 21895049, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 601, + "CustomerInfo": 44778458, + "PaymentType": "Credit Card" + }, + { + "Id": 15478, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-01-24T08:17:23", + "TransactionId": 46004401, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 1000, + "CustomerInfo": 85908545, + "PaymentType": "Cash" + }, + { + "Id": 15479, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2016-02-09T16:58:13", + "TransactionId": 42852054, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 601, + "CustomerInfo": 32107396, + "PaymentType": "Credit Card" + }, + { + "Id": 15480, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2017-07-23T12:35:17", + "TransactionId": 68113623, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 879, + "CustomerInfo": 4504057, + "PaymentType": "Debit Card" + }, + { + "Id": 15481, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2019-02-15T17:34:39", + "TransactionId": 10280020, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 336, + "CustomerInfo": 832892, + "PaymentType": "Debit Card" + }, + { + "Id": 15482, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2018-02-24T19:35:46", + "TransactionId": 41038750, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 536, + "CustomerInfo": 99278072, + "PaymentType": "Credit Card" + }, + { + "Id": 15483, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2019-12-26T11:40:16", + "TransactionId": 49164902, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 154, + "CustomerInfo": 42466239, + "PaymentType": "Cash" + }, + { + "Id": 15484, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-10-16T12:03:19", + "TransactionId": 43926039, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 478, + "CustomerInfo": 81637631, + "PaymentType": "Cash" + }, + { + "Id": 15485, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2019-08-04T18:02:18", + "TransactionId": 42223274, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 66, + "CustomerInfo": 59795104, + "PaymentType": "Cash" + }, + { + "Id": 15486, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2017-07-27T14:38:33", + "TransactionId": 51101493, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 138, + "CustomerInfo": 40095823, + "PaymentType": "Cash" + }, + { + "Id": 15487, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2017-09-24T16:30:17", + "TransactionId": 20367656, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 786, + "CustomerInfo": 26103731, + "PaymentType": "Debit Card" + }, + { + "Id": 15488, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2019-03-23T19:51:10", + "TransactionId": 3763687, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 179, + "CustomerInfo": 19070358, + "PaymentType": "Credit Card" + }, + { + "Id": 15489, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2019-11-17T08:53:31", + "TransactionId": 73842404, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 759, + "CustomerInfo": 11805059, + "PaymentType": "Cash" + }, + { + "Id": 15490, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2018-08-27T19:48:00", + "TransactionId": 74891464, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 260, + "CustomerInfo": 11877942, + "PaymentType": "Cash" + }, + { + "Id": 15491, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2018-03-24T09:41:28", + "TransactionId": 73568343, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 309, + "CustomerInfo": 19917115, + "PaymentType": "Credit Card" + }, + { + "Id": 15492, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-05-08T19:43:41", + "TransactionId": 71615752, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 981, + "CustomerInfo": 79772983, + "PaymentType": "Credit Card" + }, + { + "Id": 15493, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2019-07-19T07:47:43", + "TransactionId": 94135807, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 360, + "CustomerInfo": 46026737, + "PaymentType": "Cash" + }, + { + "Id": 15494, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2019-10-28T17:20:24", + "TransactionId": 73054472, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 322, + "CustomerInfo": 25451627, + "PaymentType": "Debit Card" + }, + { + "Id": 15495, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2018-09-02T15:19:00", + "TransactionId": 985430, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 982, + "CustomerInfo": 18471733, + "PaymentType": "Cash" + }, + { + "Id": 15496, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2019-07-25T17:09:36", + "TransactionId": 55682786, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 587, + "CustomerInfo": 73922952, + "PaymentType": "Credit Card" + }, + { + "Id": 15497, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-05-27T08:08:27", + "TransactionId": 927902, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 48978470, + "PaymentType": "Credit Card" + }, + { + "Id": 15498, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-09-16T11:41:00", + "TransactionId": 63129794, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 66, + "CustomerInfo": 31101226, + "PaymentType": "Cash" + }, + { + "Id": 15499, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-03-15T14:24:00", + "TransactionId": 34150344, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 699, + "CustomerInfo": 45985607, + "PaymentType": "Cash" + }, + { + "Id": 15500, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2018-03-01T18:46:05", + "TransactionId": 30856166, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 220, + "CustomerInfo": 5478769, + "PaymentType": "Cash" + }, + { + "Id": 15501, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-05-18T09:00:43", + "TransactionId": 59679666, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 383, + "CustomerInfo": 10915489, + "PaymentType": "Credit Card" + }, + { + "Id": 15502, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2017-05-01T14:55:41", + "TransactionId": 81119703, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 731, + "CustomerInfo": 36888896, + "PaymentType": "Debit Card" + }, + { + "Id": 15503, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2017-06-20T07:54:29", + "TransactionId": 46543469, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 580, + "CustomerInfo": 18672462, + "PaymentType": "Debit Card" + }, + { + "Id": 15504, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-11-14T13:09:16", + "TransactionId": 95013161, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 484, + "CustomerInfo": 51602634, + "PaymentType": "Cash" + }, + { + "Id": 15505, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-08-29T19:33:45", + "TransactionId": 15595893, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 956, + "CustomerInfo": 95905699, + "PaymentType": "Cash" + }, + { + "Id": 15506, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-11-28T10:25:49", + "TransactionId": 2775316, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 499, + "CustomerInfo": 55026814, + "PaymentType": "Cash" + }, + { + "Id": 15507, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2016-08-08T08:34:22", + "TransactionId": 57000720, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 526, + "CustomerInfo": 20571582, + "PaymentType": "Cash" + }, + { + "Id": 15508, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-05-20T19:35:11", + "TransactionId": 57380224, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 666, + "CustomerInfo": 83347381, + "PaymentType": "Debit Card" + }, + { + "Id": 15509, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2016-11-06T10:30:17", + "TransactionId": 45565430, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 807, + "CustomerInfo": 36475025, + "PaymentType": "Debit Card" + }, + { + "Id": 15510, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2018-01-25T09:46:05", + "TransactionId": 25408468, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 839, + "CustomerInfo": 63930239, + "PaymentType": "Debit Card" + }, + { + "Id": 15511, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2018-09-12T13:16:02", + "TransactionId": 86470054, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 66, + "CustomerInfo": 20862287, + "PaymentType": "Credit Card" + }, + { + "Id": 15512, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2016-02-06T12:27:22", + "TransactionId": 22550636, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 225, + "CustomerInfo": 12992077, + "PaymentType": "Cash" + }, + { + "Id": 15513, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2019-02-22T18:20:44", + "TransactionId": 88973409, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 381, + "CustomerInfo": 39806440, + "PaymentType": "Cash" + }, + { + "Id": 15514, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2017-11-22T15:07:03", + "TransactionId": 7478735, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 625, + "CustomerInfo": 17800292, + "PaymentType": "Credit Card" + }, + { + "Id": 15515, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-05-31T13:12:35", + "TransactionId": 38468025, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 80, + "CustomerInfo": 60930732, + "PaymentType": "Credit Card" + }, + { + "Id": 15516, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2018-11-18T18:29:23", + "TransactionId": 59712382, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 441, + "CustomerInfo": 47971712, + "PaymentType": "Credit Card" + }, + { + "Id": 15517, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2017-12-08T15:50:33", + "TransactionId": 48892886, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 666, + "CustomerInfo": 57729515, + "PaymentType": "Debit Card" + }, + { + "Id": 15518, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-10-04T15:30:40", + "TransactionId": 97461375, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 474, + "CustomerInfo": 64827550, + "PaymentType": "Credit Card" + }, + { + "Id": 15519, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-11-07T07:40:31", + "TransactionId": 94346896, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 70, + "CustomerInfo": 15977935, + "PaymentType": "Debit Card" + }, + { + "Id": 15520, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2016-12-13T07:15:27", + "TransactionId": 78273800, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 850, + "CustomerInfo": 68831124, + "PaymentType": "Cash" + }, + { + "Id": 15521, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2016-02-22T09:14:41", + "TransactionId": 22238356, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 361, + "CustomerInfo": 4717107, + "PaymentType": "Cash" + }, + { + "Id": 15522, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2016-02-03T16:28:34", + "TransactionId": 52042395, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 224, + "CustomerInfo": 87755945, + "PaymentType": "Debit Card" + }, + { + "Id": 15523, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2018-06-04T07:39:04", + "TransactionId": 95284834, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 371, + "CustomerInfo": 48771837, + "PaymentType": "Credit Card" + }, + { + "Id": 15524, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-12-01T17:14:47", + "TransactionId": 47398654, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 403, + "CustomerInfo": 71008297, + "PaymentType": "Cash" + }, + { + "Id": 15525, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2016-03-22T18:54:09", + "TransactionId": 84961557, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 55683403, + "PaymentType": "Debit Card" + }, + { + "Id": 15526, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-07-03T08:52:13", + "TransactionId": 29815270, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 589, + "CustomerInfo": 33405564, + "PaymentType": "Debit Card" + }, + { + "Id": 15527, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-11-21T16:10:25", + "TransactionId": 22594618, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 511, + "CustomerInfo": 25258960, + "PaymentType": "Cash" + }, + { + "Id": 15528, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2018-09-05T18:51:33", + "TransactionId": 15500630, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 472, + "CustomerInfo": 71932158, + "PaymentType": "Cash" + }, + { + "Id": 15529, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2016-07-13T12:03:19", + "TransactionId": 63289368, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 873, + "CustomerInfo": 75968485, + "PaymentType": "Credit Card" + }, + { + "Id": 15530, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2018-04-10T13:24:06", + "TransactionId": 6598062, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 910, + "CustomerInfo": 41604391, + "PaymentType": "Debit Card" + }, + { + "Id": 15531, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-03-17T07:39:13", + "TransactionId": 24608601, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 864, + "CustomerInfo": 41314700, + "PaymentType": "Cash" + }, + { + "Id": 15532, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2017-03-03T19:35:02", + "TransactionId": 96031649, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 823, + "CustomerInfo": 99286222, + "PaymentType": "Debit Card" + }, + { + "Id": 15533, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2016-06-17T17:53:23", + "TransactionId": 79302801, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 90758120, + "PaymentType": "Cash" + }, + { + "Id": 15534, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2016-11-14T17:17:05", + "TransactionId": 79411942, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 662, + "CustomerInfo": 86602189, + "PaymentType": "Cash" + }, + { + "Id": 15535, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-12-19T12:14:07", + "TransactionId": 67014855, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 3, + "CustomerInfo": 87241225, + "PaymentType": "Credit Card" + }, + { + "Id": 15536, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2018-03-16T15:15:16", + "TransactionId": 23666424, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 553, + "CustomerInfo": 2359899, + "PaymentType": "Credit Card" + }, + { + "Id": 15537, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2019-02-12T11:37:24", + "TransactionId": 68027105, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 58096555, + "PaymentType": "Credit Card" + }, + { + "Id": 15538, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-12-28T14:49:38", + "TransactionId": 54351598, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 408, + "CustomerInfo": 53728761, + "PaymentType": "Credit Card" + }, + { + "Id": 15539, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-01-16T19:29:51", + "TransactionId": 58082058, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 48, + "CustomerInfo": 84907729, + "PaymentType": "Credit Card" + }, + { + "Id": 15540, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-09-13T19:14:10", + "TransactionId": 65059011, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 455, + "CustomerInfo": 53415439, + "PaymentType": "Credit Card" + }, + { + "Id": 15541, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-10-04T12:26:12", + "TransactionId": 2719436, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 453, + "CustomerInfo": 26111727, + "PaymentType": "Debit Card" + }, + { + "Id": 15542, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-09-01T09:52:51", + "TransactionId": 90646996, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 659, + "CustomerInfo": 76309897, + "PaymentType": "Cash" + }, + { + "Id": 15543, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-04-14T17:02:15", + "TransactionId": 39589386, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 576, + "CustomerInfo": 24264261, + "PaymentType": "Cash" + }, + { + "Id": 15544, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2018-02-24T16:55:21", + "TransactionId": 88577085, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 717, + "CustomerInfo": 19883149, + "PaymentType": "Credit Card" + }, + { + "Id": 15545, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2017-06-07T19:39:04", + "TransactionId": 38126932, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 408, + "CustomerInfo": 20019018, + "PaymentType": "Credit Card" + }, + { + "Id": 15546, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2019-04-19T17:26:53", + "TransactionId": 93265600, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 72760578, + "PaymentType": "Cash" + }, + { + "Id": 15547, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2018-01-27T08:03:42", + "TransactionId": 81062707, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 279, + "CustomerInfo": 51411326, + "PaymentType": "Debit Card" + }, + { + "Id": 15548, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2018-02-25T13:44:33", + "TransactionId": 99691768, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 410, + "CustomerInfo": 69174449, + "PaymentType": "Cash" + }, + { + "Id": 15549, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2016-09-12T17:18:14", + "TransactionId": 34522108, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 933, + "CustomerInfo": 12775182, + "PaymentType": "Debit Card" + }, + { + "Id": 15550, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-09-30T11:37:49", + "TransactionId": 76857480, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 124, + "CustomerInfo": 24262913, + "PaymentType": "Credit Card" + }, + { + "Id": 15551, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2018-04-27T18:20:27", + "TransactionId": 44832971, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 73464970, + "PaymentType": "Credit Card" + }, + { + "Id": 15552, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-03-29T13:39:22", + "TransactionId": 52205375, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 286, + "CustomerInfo": 89738643, + "PaymentType": "Credit Card" + }, + { + "Id": 15553, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-05-24T19:13:35", + "TransactionId": 45936976, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 867, + "CustomerInfo": 647112, + "PaymentType": "Cash" + }, + { + "Id": 15554, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2019-09-13T17:38:59", + "TransactionId": 51535403, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 242, + "CustomerInfo": 60334202, + "PaymentType": "Credit Card" + }, + { + "Id": 15555, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2019-11-02T11:29:02", + "TransactionId": 19222474, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 49, + "CustomerInfo": 5291855, + "PaymentType": "Credit Card" + }, + { + "Id": 15556, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-07-05T08:49:12", + "TransactionId": 42405089, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 732, + "CustomerInfo": 96836376, + "PaymentType": "Credit Card" + }, + { + "Id": 15557, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2016-01-22T14:54:32", + "TransactionId": 8062607, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 978, + "CustomerInfo": 7377192, + "PaymentType": "Cash" + }, + { + "Id": 15558, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2016-05-02T11:19:06", + "TransactionId": 1777798, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 668, + "CustomerInfo": 41960699, + "PaymentType": "Cash" + }, + { + "Id": 15559, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2019-12-31T11:20:07", + "TransactionId": 1635600, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 577, + "CustomerInfo": 9291058, + "PaymentType": "Debit Card" + }, + { + "Id": 15560, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2019-02-23T19:35:02", + "TransactionId": 8946218, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 381, + "CustomerInfo": 39676335, + "PaymentType": "Debit Card" + }, + { + "Id": 15561, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2019-04-04T17:52:22", + "TransactionId": 86735170, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 846, + "CustomerInfo": 73995677, + "PaymentType": "Cash" + }, + { + "Id": 15562, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-06-10T19:36:03", + "TransactionId": 84093511, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 274, + "CustomerInfo": 98559794, + "PaymentType": "Credit Card" + }, + { + "Id": 15563, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2019-04-24T15:44:04", + "TransactionId": 75793147, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 881, + "CustomerInfo": 8960161, + "PaymentType": "Debit Card" + }, + { + "Id": 15564, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2017-07-18T08:37:15", + "TransactionId": 28804596, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 641, + "CustomerInfo": 27911671, + "PaymentType": "Cash" + }, + { + "Id": 15565, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-07-17T08:18:23", + "TransactionId": 99867530, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 773, + "CustomerInfo": 607389, + "PaymentType": "Credit Card" + }, + { + "Id": 15566, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-10-08T08:42:26", + "TransactionId": 47452839, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 817, + "CustomerInfo": 50045077, + "PaymentType": "Debit Card" + }, + { + "Id": 15567, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-08-27T13:45:50", + "TransactionId": 59837898, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 956, + "CustomerInfo": 66248767, + "PaymentType": "Cash" + }, + { + "Id": 15568, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-04-03T19:13:09", + "TransactionId": 69282345, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 211, + "CustomerInfo": 72787048, + "PaymentType": "Credit Card" + }, + { + "Id": 15569, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2018-02-14T17:31:47", + "TransactionId": 12823331, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 836, + "CustomerInfo": 95027589, + "PaymentType": "Cash" + }, + { + "Id": 15570, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2019-03-01T12:27:04", + "TransactionId": 73343038, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 23, + "CustomerInfo": 75630479, + "PaymentType": "Cash" + }, + { + "Id": 15571, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2018-09-24T09:35:17", + "TransactionId": 79911916, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 818, + "CustomerInfo": 28607022, + "PaymentType": "Credit Card" + }, + { + "Id": 15572, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-12-26T13:07:06", + "TransactionId": 17739106, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 740, + "CustomerInfo": 42863643, + "PaymentType": "Debit Card" + }, + { + "Id": 15573, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-10-05T10:11:17", + "TransactionId": 37064707, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 314, + "CustomerInfo": 39514814, + "PaymentType": "Debit Card" + }, + { + "Id": 15574, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-02-07T19:11:43", + "TransactionId": 62939780, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 201, + "CustomerInfo": 24010121, + "PaymentType": "Cash" + }, + { + "Id": 15575, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2018-09-19T17:14:56", + "TransactionId": 54852118, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 733, + "CustomerInfo": 76474999, + "PaymentType": "Credit Card" + }, + { + "Id": 15576, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2016-10-17T09:58:19", + "TransactionId": 98437180, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 461, + "CustomerInfo": 81792936, + "PaymentType": "Cash" + }, + { + "Id": 15577, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2016-07-18T14:38:50", + "TransactionId": 73399858, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 730, + "CustomerInfo": 79362429, + "PaymentType": "Cash" + }, + { + "Id": 15578, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2017-04-16T07:04:22", + "TransactionId": 31442914, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 69795777, + "PaymentType": "Cash" + }, + { + "Id": 15579, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2018-02-20T10:47:43", + "TransactionId": 50071043, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 37, + "CustomerInfo": 31698, + "PaymentType": "Credit Card" + }, + { + "Id": 15580, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2019-04-11T18:08:38", + "TransactionId": 2336652, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 784, + "CustomerInfo": 31318127, + "PaymentType": "Debit Card" + }, + { + "Id": 15581, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2018-10-11T18:09:56", + "TransactionId": 850519, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 715, + "CustomerInfo": 65671479, + "PaymentType": "Debit Card" + }, + { + "Id": 15582, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2019-04-11T09:59:37", + "TransactionId": 7195821, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 534, + "CustomerInfo": 78933837, + "PaymentType": "Cash" + }, + { + "Id": 15583, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2017-01-05T09:05:37", + "TransactionId": 35652484, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 269, + "CustomerInfo": 98703974, + "PaymentType": "Debit Card" + }, + { + "Id": 15584, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2018-08-09T07:51:10", + "TransactionId": 22761317, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 591, + "CustomerInfo": 2549263, + "PaymentType": "Credit Card" + }, + { + "Id": 15585, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2017-10-27T15:10:57", + "TransactionId": 69674575, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 106, + "CustomerInfo": 5402578, + "PaymentType": "Debit Card" + }, + { + "Id": 15586, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2019-05-02T16:08:33", + "TransactionId": 19221867, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 765, + "CustomerInfo": 84098867, + "PaymentType": "Debit Card" + }, + { + "Id": 15587, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2017-03-08T14:45:27", + "TransactionId": 26570275, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 201, + "CustomerInfo": 93992050, + "PaymentType": "Credit Card" + }, + { + "Id": 15588, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2019-10-31T14:42:35", + "TransactionId": 41262207, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 61, + "CustomerInfo": 50085769, + "PaymentType": "Cash" + }, + { + "Id": 15589, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2016-04-15T08:27:27", + "TransactionId": 54700732, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 463, + "CustomerInfo": 42307390, + "PaymentType": "Credit Card" + }, + { + "Id": 15590, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2018-01-12T19:52:36", + "TransactionId": 52004508, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 627, + "CustomerInfo": 61986654, + "PaymentType": "Debit Card" + }, + { + "Id": 15591, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-04-24T12:22:54", + "TransactionId": 37999874, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 670, + "CustomerInfo": 73140115, + "PaymentType": "Cash" + }, + { + "Id": 15592, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-02-02T08:23:51", + "TransactionId": 76778959, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 63, + "CustomerInfo": 84310206, + "PaymentType": "Cash" + }, + { + "Id": 15593, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-08-14T15:48:49", + "TransactionId": 86025277, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 332, + "CustomerInfo": 20728895, + "PaymentType": "Debit Card" + }, + { + "Id": 15594, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-09-09T12:53:34", + "TransactionId": 7505923, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 824, + "CustomerInfo": 20700618, + "PaymentType": "Credit Card" + }, + { + "Id": 15595, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2019-09-22T14:20:50", + "TransactionId": 14390603, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 722, + "CustomerInfo": 12739922, + "PaymentType": "Credit Card" + }, + { + "Id": 15596, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2019-12-15T07:54:29", + "TransactionId": 45286327, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 541, + "CustomerInfo": 47656663, + "PaymentType": "Cash" + }, + { + "Id": 15597, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2017-05-06T07:03:56", + "TransactionId": 77528587, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 211, + "CustomerInfo": 63844983, + "PaymentType": "Cash" + }, + { + "Id": 15598, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-09-11T14:49:29", + "TransactionId": 69482965, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 666, + "CustomerInfo": 74951061, + "PaymentType": "Credit Card" + }, + { + "Id": 15599, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2019-04-21T15:02:27", + "TransactionId": 37538722, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 392, + "CustomerInfo": 40252248, + "PaymentType": "Debit Card" + }, + { + "Id": 15600, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-05-05T09:09:30", + "TransactionId": 52128864, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 989, + "CustomerInfo": 28215875, + "PaymentType": "Cash" + }, + { + "Id": 15601, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2017-09-11T14:24:43", + "TransactionId": 76742565, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 497, + "CustomerInfo": 18135580, + "PaymentType": "Cash" + }, + { + "Id": 15602, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-05-15T13:16:36", + "TransactionId": 58000423, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 331, + "CustomerInfo": 31806298, + "PaymentType": "Cash" + }, + { + "Id": 15603, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-05-08T15:13:15", + "TransactionId": 89846055, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 188, + "CustomerInfo": 93515387, + "PaymentType": "Debit Card" + }, + { + "Id": 15604, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2017-11-16T12:13:32", + "TransactionId": 98314617, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 813, + "CustomerInfo": 7588912, + "PaymentType": "Debit Card" + }, + { + "Id": 15605, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-06-23T19:46:34", + "TransactionId": 43607400, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 790, + "CustomerInfo": 41344747, + "PaymentType": "Cash" + }, + { + "Id": 15606, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-11-03T10:51:01", + "TransactionId": 89002121, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 572, + "CustomerInfo": 96743869, + "PaymentType": "Cash" + }, + { + "Id": 15607, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2017-06-24T10:58:31", + "TransactionId": 26059460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 175, + "CustomerInfo": 68927813, + "PaymentType": "Credit Card" + }, + { + "Id": 15608, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-04-30T14:53:14", + "TransactionId": 87900017, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 677, + "CustomerInfo": 38948876, + "PaymentType": "Cash" + }, + { + "Id": 15609, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2017-08-07T18:54:43", + "TransactionId": 50673010, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 935, + "CustomerInfo": 31911780, + "PaymentType": "Cash" + }, + { + "Id": 15610, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2019-04-11T13:41:23", + "TransactionId": 83769078, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 836, + "CustomerInfo": 95810472, + "PaymentType": "Cash" + }, + { + "Id": 15611, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2019-12-07T18:25:21", + "TransactionId": 59227083, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 141, + "CustomerInfo": 42392420, + "PaymentType": "Debit Card" + }, + { + "Id": 15612, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-10-20T19:41:57", + "TransactionId": 17373132, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 393, + "CustomerInfo": 63734997, + "PaymentType": "Cash" + }, + { + "Id": 15613, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2019-04-16T17:54:23", + "TransactionId": 95100400, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 336, + "CustomerInfo": 63852738, + "PaymentType": "Cash" + }, + { + "Id": 15614, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-10-19T14:51:22", + "TransactionId": 33237444, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 784, + "CustomerInfo": 78429208, + "PaymentType": "Credit Card" + }, + { + "Id": 15615, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-05-31T09:51:07", + "TransactionId": 81932593, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 52107349, + "PaymentType": "Debit Card" + }, + { + "Id": 15616, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2016-08-25T12:09:13", + "TransactionId": 95749044, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 866, + "CustomerInfo": 81234738, + "PaymentType": "Cash" + }, + { + "Id": 15617, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2017-09-27T17:49:29", + "TransactionId": 8577792, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 222, + "CustomerInfo": 35888558, + "PaymentType": "Credit Card" + }, + { + "Id": 15618, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2017-11-02T15:12:23", + "TransactionId": 76891078, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 826, + "CustomerInfo": 79259264, + "PaymentType": "Debit Card" + }, + { + "Id": 15619, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2017-07-16T16:40:57", + "TransactionId": 16503044, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 296, + "CustomerInfo": 60577330, + "PaymentType": "Cash" + }, + { + "Id": 15620, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-06-10T09:08:38", + "TransactionId": 62147281, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 419, + "CustomerInfo": 71550938, + "PaymentType": "Credit Card" + }, + { + "Id": 15621, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2018-01-15T08:37:15", + "TransactionId": 5146708, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 974, + "CustomerInfo": 58177523, + "PaymentType": "Cash" + }, + { + "Id": 15622, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2019-10-19T14:10:54", + "TransactionId": 28355959, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 857, + "CustomerInfo": 24335135, + "PaymentType": "Credit Card" + }, + { + "Id": 15623, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2017-06-10T16:49:26", + "TransactionId": 5190745, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 560, + "CustomerInfo": 9575214, + "PaymentType": "Debit Card" + }, + { + "Id": 15624, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-07-18T11:47:28", + "TransactionId": 99981181, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 208, + "CustomerInfo": 33291086, + "PaymentType": "Cash" + }, + { + "Id": 15625, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2018-01-14T11:43:09", + "TransactionId": 33233998, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 504, + "CustomerInfo": 82316068, + "PaymentType": "Debit Card" + }, + { + "Id": 15626, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2016-07-04T16:49:35", + "TransactionId": 42452980, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 358, + "CustomerInfo": 62064476, + "PaymentType": "Credit Card" + }, + { + "Id": 15627, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2019-06-30T09:20:53", + "TransactionId": 80528452, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 55, + "CustomerInfo": 43422915, + "PaymentType": "Debit Card" + }, + { + "Id": 15628, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-08-22T12:37:52", + "TransactionId": 22608110, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 798, + "CustomerInfo": 51322867, + "PaymentType": "Credit Card" + }, + { + "Id": 15629, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-07-07T13:06:49", + "TransactionId": 42714065, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 554, + "CustomerInfo": 88629805, + "PaymentType": "Debit Card" + }, + { + "Id": 15630, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2017-08-15T18:20:36", + "TransactionId": 6737699, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 296, + "CustomerInfo": 98511068, + "PaymentType": "Credit Card" + }, + { + "Id": 15631, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2019-09-29T10:12:52", + "TransactionId": 4210999, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 851, + "CustomerInfo": 69014390, + "PaymentType": "Debit Card" + }, + { + "Id": 15632, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2016-03-22T19:16:54", + "TransactionId": 126764, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 168, + "CustomerInfo": 77611102, + "PaymentType": "Debit Card" + }, + { + "Id": 15633, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2018-07-08T14:51:30", + "TransactionId": 77611485, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 710, + "CustomerInfo": 99804061, + "PaymentType": "Debit Card" + }, + { + "Id": 15634, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2019-05-04T13:43:24", + "TransactionId": 74878227, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 37, + "CustomerInfo": 46136923, + "PaymentType": "Debit Card" + }, + { + "Id": 15635, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2019-10-02T19:53:20", + "TransactionId": 44310827, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 213, + "CustomerInfo": 68976962, + "PaymentType": "Cash" + }, + { + "Id": 15636, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2017-12-08T07:23:23", + "TransactionId": 1057568, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 159, + "CustomerInfo": 40399883, + "PaymentType": "Credit Card" + }, + { + "Id": 15637, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-07-16T14:01:32", + "TransactionId": 6602615, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 827, + "CustomerInfo": 86330471, + "PaymentType": "Debit Card" + }, + { + "Id": 15638, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-07-26T11:32:56", + "TransactionId": 97687327, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 206, + "CustomerInfo": 28490315, + "PaymentType": "Cash" + }, + { + "Id": 15639, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-07-09T09:00:17", + "TransactionId": 35231985, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 941, + "CustomerInfo": 42157655, + "PaymentType": "Credit Card" + }, + { + "Id": 15640, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2018-06-17T09:38:53", + "TransactionId": 49441320, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 748, + "CustomerInfo": 43461714, + "PaymentType": "Debit Card" + }, + { + "Id": 15641, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-09-29T09:17:34", + "TransactionId": 89107361, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 297, + "CustomerInfo": 34765393, + "PaymentType": "Debit Card" + }, + { + "Id": 15642, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2016-06-23T13:00:03", + "TransactionId": 8841199, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 907, + "CustomerInfo": 36756063, + "PaymentType": "Credit Card" + }, + { + "Id": 15643, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-03-12T09:40:02", + "TransactionId": 62496704, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 170, + "CustomerInfo": 70509183, + "PaymentType": "Debit Card" + }, + { + "Id": 15644, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-01-07T19:21:22", + "TransactionId": 99996264, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 716, + "CustomerInfo": 95645649, + "PaymentType": "Cash" + }, + { + "Id": 15645, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-07-09T11:55:41", + "TransactionId": 87092089, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 505, + "CustomerInfo": 5677777, + "PaymentType": "Cash" + }, + { + "Id": 15646, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2019-01-18T11:58:08", + "TransactionId": 47993898, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 121, + "CustomerInfo": 97639501, + "PaymentType": "Cash" + }, + { + "Id": 15647, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2018-06-07T11:46:11", + "TransactionId": 24855738, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 982, + "CustomerInfo": 53511767, + "PaymentType": "Credit Card" + }, + { + "Id": 15648, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2018-02-17T19:59:48", + "TransactionId": 68798982, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 424, + "CustomerInfo": 72561306, + "PaymentType": "Cash" + }, + { + "Id": 15649, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2016-11-30T12:39:10", + "TransactionId": 77204345, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 41, + "CustomerInfo": 73045187, + "PaymentType": "Credit Card" + }, + { + "Id": 15650, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2017-05-02T12:29:31", + "TransactionId": 11095768, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 258, + "CustomerInfo": 40543419, + "PaymentType": "Debit Card" + }, + { + "Id": 15651, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2018-05-22T19:44:41", + "TransactionId": 54465560, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 36, + "CustomerInfo": 12864249, + "PaymentType": "Cash" + }, + { + "Id": 15652, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2018-04-26T10:36:55", + "TransactionId": 63861661, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 966, + "CustomerInfo": 38790532, + "PaymentType": "Credit Card" + }, + { + "Id": 15653, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-04-27T10:36:20", + "TransactionId": 76392065, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 674, + "CustomerInfo": 79837802, + "PaymentType": "Cash" + }, + { + "Id": 15654, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2018-11-14T19:40:13", + "TransactionId": 10638278, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 738, + "CustomerInfo": 12835199, + "PaymentType": "Debit Card" + }, + { + "Id": 15655, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2019-06-11T17:35:31", + "TransactionId": 36924574, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 41626900, + "PaymentType": "Credit Card" + }, + { + "Id": 15656, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2016-08-03T15:22:36", + "TransactionId": 11935766, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 879, + "CustomerInfo": 39485643, + "PaymentType": "Cash" + }, + { + "Id": 15657, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2016-08-27T19:59:23", + "TransactionId": 91733668, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 133, + "CustomerInfo": 45014934, + "PaymentType": "Debit Card" + }, + { + "Id": 15658, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2016-11-06T12:12:06", + "TransactionId": 35514692, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 953, + "CustomerInfo": 82865340, + "PaymentType": "Credit Card" + }, + { + "Id": 15659, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-04-08T13:22:57", + "TransactionId": 9205039, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 680, + "CustomerInfo": 88811696, + "PaymentType": "Debit Card" + }, + { + "Id": 15660, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2016-05-21T13:41:14", + "TransactionId": 25581279, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 314, + "CustomerInfo": 37895174, + "PaymentType": "Credit Card" + }, + { + "Id": 15661, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-09-28T12:12:58", + "TransactionId": 74392002, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 368, + "CustomerInfo": 5061960, + "PaymentType": "Cash" + }, + { + "Id": 15662, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2018-06-21T17:08:44", + "TransactionId": 55440924, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 156, + "CustomerInfo": 31437357, + "PaymentType": "Credit Card" + }, + { + "Id": 15663, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2016-10-16T14:14:21", + "TransactionId": 14355051, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 607, + "CustomerInfo": 25110277, + "PaymentType": "Debit Card" + }, + { + "Id": 15664, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-10-16T12:19:09", + "TransactionId": 77990496, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 929, + "CustomerInfo": 12851109, + "PaymentType": "Credit Card" + }, + { + "Id": 15665, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-12-25T14:55:41", + "TransactionId": 36110120, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 619, + "CustomerInfo": 18541781, + "PaymentType": "Cash" + }, + { + "Id": 15666, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2017-01-24T09:14:15", + "TransactionId": 34757902, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 898, + "CustomerInfo": 14721814, + "PaymentType": "Credit Card" + }, + { + "Id": 15667, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2016-06-10T13:58:48", + "TransactionId": 85833913, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 651, + "CustomerInfo": 45383736, + "PaymentType": "Cash" + }, + { + "Id": 15668, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2017-07-16T08:28:45", + "TransactionId": 79681342, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 954, + "CustomerInfo": 16260817, + "PaymentType": "Debit Card" + }, + { + "Id": 15669, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2016-03-31T15:08:56", + "TransactionId": 27741884, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 8, + "CustomerInfo": 49728292, + "PaymentType": "Credit Card" + }, + { + "Id": 15670, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2019-07-08T14:49:03", + "TransactionId": 84997257, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 627, + "CustomerInfo": 79067203, + "PaymentType": "Credit Card" + }, + { + "Id": 15671, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-10-15T08:01:24", + "TransactionId": 67772640, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 435, + "CustomerInfo": 18448157, + "PaymentType": "Cash" + }, + { + "Id": 15672, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2017-12-04T09:35:34", + "TransactionId": 93258693, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 661, + "CustomerInfo": 3574752, + "PaymentType": "Credit Card" + }, + { + "Id": 15673, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-08-16T16:51:45", + "TransactionId": 93022377, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 676, + "CustomerInfo": 31815513, + "PaymentType": "Debit Card" + }, + { + "Id": 15674, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2017-10-07T07:00:20", + "TransactionId": 45211296, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 358, + "CustomerInfo": 30158072, + "PaymentType": "Debit Card" + }, + { + "Id": 15675, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2017-10-07T16:49:26", + "TransactionId": 71457352, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 49, + "CustomerInfo": 62890532, + "PaymentType": "Cash" + }, + { + "Id": 15676, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2016-02-03T16:37:29", + "TransactionId": 9556128, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 634, + "CustomerInfo": 52942407, + "PaymentType": "Credit Card" + }, + { + "Id": 15677, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2019-02-15T13:18:20", + "TransactionId": 46717952, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 119, + "CustomerInfo": 8252025, + "PaymentType": "Debit Card" + }, + { + "Id": 15678, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2017-03-17T12:29:31", + "TransactionId": 85275705, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 775, + "CustomerInfo": 8477011, + "PaymentType": "Cash" + }, + { + "Id": 15679, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2016-11-13T17:42:17", + "TransactionId": 14961952, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 23, + "CustomerInfo": 51460567, + "PaymentType": "Credit Card" + }, + { + "Id": 15680, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-01-25T16:52:54", + "TransactionId": 57636408, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 509, + "CustomerInfo": 69656973, + "PaymentType": "Credit Card" + }, + { + "Id": 15681, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2017-01-07T07:51:36", + "TransactionId": 1636172, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 726, + "CustomerInfo": 89157495, + "PaymentType": "Cash" + }, + { + "Id": 15682, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2016-07-31T13:58:13", + "TransactionId": 87986888, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 561, + "CustomerInfo": 12606123, + "PaymentType": "Credit Card" + }, + { + "Id": 15683, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2017-08-13T15:13:49", + "TransactionId": 47100333, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 435, + "CustomerInfo": 28738065, + "PaymentType": "Debit Card" + }, + { + "Id": 15684, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2018-07-28T07:21:56", + "TransactionId": 25481369, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 496, + "CustomerInfo": 23941422, + "PaymentType": "Credit Card" + }, + { + "Id": 15685, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-06-22T16:54:37", + "TransactionId": 12168852, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 202, + "CustomerInfo": 39130177, + "PaymentType": "Debit Card" + }, + { + "Id": 15686, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-10-30T15:03:45", + "TransactionId": 13655652, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 222, + "CustomerInfo": 68234202, + "PaymentType": "Credit Card" + }, + { + "Id": 15687, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2019-08-04T15:24:20", + "TransactionId": 97293957, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 63309596, + "PaymentType": "Debit Card" + }, + { + "Id": 15688, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2019-06-26T18:09:04", + "TransactionId": 69933778, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 445, + "CustomerInfo": 16532532, + "PaymentType": "Debit Card" + }, + { + "Id": 15689, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-05-29T15:31:06", + "TransactionId": 85604132, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 798, + "CustomerInfo": 94415525, + "PaymentType": "Credit Card" + }, + { + "Id": 15690, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2018-07-26T18:42:55", + "TransactionId": 97965370, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 285, + "CustomerInfo": 49795106, + "PaymentType": "Debit Card" + }, + { + "Id": 15691, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2019-07-05T14:35:48", + "TransactionId": 57399393, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 231, + "CustomerInfo": 58074013, + "PaymentType": "Credit Card" + }, + { + "Id": 15692, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-06-01T10:52:45", + "TransactionId": 13474030, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 289, + "CustomerInfo": 76674984, + "PaymentType": "Credit Card" + }, + { + "Id": 15693, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2017-08-27T16:50:18", + "TransactionId": 32372754, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 935, + "CustomerInfo": 82322977, + "PaymentType": "Cash" + }, + { + "Id": 15694, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-03-10T08:29:28", + "TransactionId": 61724823, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 958, + "CustomerInfo": 638943, + "PaymentType": "Credit Card" + }, + { + "Id": 15695, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2017-05-16T16:58:13", + "TransactionId": 24786478, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 651, + "CustomerInfo": 15694420, + "PaymentType": "Debit Card" + }, + { + "Id": 15696, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-10-19T13:31:18", + "TransactionId": 2892846, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 862, + "CustomerInfo": 42428952, + "PaymentType": "Credit Card" + }, + { + "Id": 15697, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-10-06T13:16:19", + "TransactionId": 86809024, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 446, + "CustomerInfo": 86256840, + "PaymentType": "Credit Card" + }, + { + "Id": 15698, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2016-05-23T07:49:52", + "TransactionId": 65830399, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 613, + "CustomerInfo": 33710146, + "PaymentType": "Debit Card" + }, + { + "Id": 15699, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2019-08-25T12:13:41", + "TransactionId": 70531066, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 587, + "CustomerInfo": 63788057, + "PaymentType": "Credit Card" + }, + { + "Id": 15700, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2018-01-12T08:16:48", + "TransactionId": 44375573, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 145, + "CustomerInfo": 6253114, + "PaymentType": "Credit Card" + }, + { + "Id": 15701, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-04-27T07:10:16", + "TransactionId": 36121553, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 67, + "CustomerInfo": 57681888, + "PaymentType": "Credit Card" + }, + { + "Id": 15702, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2019-11-10T08:09:01", + "TransactionId": 31592675, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 476, + "CustomerInfo": 71500235, + "PaymentType": "Debit Card" + }, + { + "Id": 15703, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2016-05-06T13:48:35", + "TransactionId": 70508688, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 764, + "CustomerInfo": 33361643, + "PaymentType": "Credit Card" + }, + { + "Id": 15704, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2019-04-07T09:48:06", + "TransactionId": 53896223, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 869, + "CustomerInfo": 49706843, + "PaymentType": "Credit Card" + }, + { + "Id": 15705, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2018-09-19T19:07:41", + "TransactionId": 73663944, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 626, + "CustomerInfo": 10347807, + "PaymentType": "Credit Card" + }, + { + "Id": 15706, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2017-06-04T14:11:11", + "TransactionId": 33863446, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 647, + "CustomerInfo": 60362827, + "PaymentType": "Cash" + }, + { + "Id": 15707, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2019-01-02T17:45:53", + "TransactionId": 90606111, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 435, + "CustomerInfo": 24184454, + "PaymentType": "Cash" + }, + { + "Id": 15708, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2017-11-26T14:11:11", + "TransactionId": 1552004, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 905, + "CustomerInfo": 7316204, + "PaymentType": "Cash" + }, + { + "Id": 15709, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-06-05T07:47:34", + "TransactionId": 11729435, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 881, + "CustomerInfo": 81742731, + "PaymentType": "Debit Card" + }, + { + "Id": 15710, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2019-04-14T16:32:53", + "TransactionId": 58936853, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 146, + "CustomerInfo": 64517128, + "PaymentType": "Credit Card" + }, + { + "Id": 15711, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-04-09T11:04:34", + "TransactionId": 63944773, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 726, + "CustomerInfo": 70784688, + "PaymentType": "Cash" + }, + { + "Id": 15712, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2018-06-21T10:02:12", + "TransactionId": 44370512, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 997, + "CustomerInfo": 61188811, + "PaymentType": "Credit Card" + }, + { + "Id": 15713, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-09-28T07:11:51", + "TransactionId": 84568361, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 740, + "CustomerInfo": 89881292, + "PaymentType": "Cash" + }, + { + "Id": 15714, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-07-17T17:30:55", + "TransactionId": 77118450, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 805, + "CustomerInfo": 56527704, + "PaymentType": "Debit Card" + }, + { + "Id": 15715, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2016-07-26T19:01:47", + "TransactionId": 42565082, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 775, + "CustomerInfo": 6784422, + "PaymentType": "Debit Card" + }, + { + "Id": 15716, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2018-04-21T12:52:25", + "TransactionId": 90931428, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 374, + "CustomerInfo": 66249652, + "PaymentType": "Cash" + }, + { + "Id": 15717, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2018-03-08T19:34:45", + "TransactionId": 59604431, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 64, + "CustomerInfo": 75373582, + "PaymentType": "Debit Card" + }, + { + "Id": 15718, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2018-04-26T08:50:30", + "TransactionId": 41264303, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 931, + "CustomerInfo": 87231102, + "PaymentType": "Credit Card" + }, + { + "Id": 15719, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2016-01-14T15:51:59", + "TransactionId": 85005132, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 688, + "CustomerInfo": 45886725, + "PaymentType": "Credit Card" + }, + { + "Id": 15720, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2017-12-17T18:07:47", + "TransactionId": 98695362, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 638, + "CustomerInfo": 69090701, + "PaymentType": "Credit Card" + }, + { + "Id": 15721, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-02-02T17:55:24", + "TransactionId": 37930546, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 140, + "CustomerInfo": 42713966, + "PaymentType": "Cash" + }, + { + "Id": 15722, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2019-04-05T10:43:41", + "TransactionId": 1652259, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 675, + "CustomerInfo": 84509144, + "PaymentType": "Cash" + }, + { + "Id": 15723, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2018-02-18T15:14:59", + "TransactionId": 67175472, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 38, + "CustomerInfo": 80190292, + "PaymentType": "Debit Card" + }, + { + "Id": 15724, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-02-21T16:28:42", + "TransactionId": 65584901, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 630, + "CustomerInfo": 88464662, + "PaymentType": "Debit Card" + }, + { + "Id": 15725, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-07-17T18:04:28", + "TransactionId": 82078120, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 442, + "CustomerInfo": 43126654, + "PaymentType": "Credit Card" + }, + { + "Id": 15726, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-02-14T17:26:44", + "TransactionId": 71048244, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 16, + "CustomerInfo": 98465870, + "PaymentType": "Debit Card" + }, + { + "Id": 15727, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2018-02-28T19:11:25", + "TransactionId": 7210031, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 566, + "CustomerInfo": 93490561, + "PaymentType": "Cash" + }, + { + "Id": 15728, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-07-03T10:16:28", + "TransactionId": 59181132, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 479, + "CustomerInfo": 2306947, + "PaymentType": "Cash" + }, + { + "Id": 15729, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-10-05T15:00:43", + "TransactionId": 32979959, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 729, + "CustomerInfo": 72667681, + "PaymentType": "Debit Card" + }, + { + "Id": 15730, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2016-09-26T15:16:42", + "TransactionId": 18140972, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 196, + "CustomerInfo": 70796126, + "PaymentType": "Credit Card" + }, + { + "Id": 15731, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2016-02-14T07:32:36", + "TransactionId": 80473973, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 740, + "CustomerInfo": 59986559, + "PaymentType": "Credit Card" + }, + { + "Id": 15732, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-08-23T10:01:47", + "TransactionId": 85800145, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 750, + "CustomerInfo": 79341045, + "PaymentType": "Debit Card" + }, + { + "Id": 15733, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-10-19T13:53:20", + "TransactionId": 98693197, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 478, + "CustomerInfo": 58021754, + "PaymentType": "Credit Card" + }, + { + "Id": 15734, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2016-06-25T08:30:55", + "TransactionId": 67659736, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 22, + "CustomerInfo": 18713101, + "PaymentType": "Credit Card" + }, + { + "Id": 15735, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-03-04T11:56:07", + "TransactionId": 88569944, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 522, + "CustomerInfo": 41472352, + "PaymentType": "Debit Card" + }, + { + "Id": 15736, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2016-01-07T10:23:05", + "TransactionId": 60574174, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 207, + "CustomerInfo": 553093, + "PaymentType": "Credit Card" + }, + { + "Id": 15737, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2017-11-20T13:06:58", + "TransactionId": 69638232, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 596, + "CustomerInfo": 18031530, + "PaymentType": "Credit Card" + }, + { + "Id": 15738, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2018-01-10T15:29:05", + "TransactionId": 79213190, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 433, + "CustomerInfo": 63473772, + "PaymentType": "Debit Card" + }, + { + "Id": 15739, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-11-29T12:21:01", + "TransactionId": 13519907, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 129, + "CustomerInfo": 78845840, + "PaymentType": "Cash" + }, + { + "Id": 15740, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-08-07T07:11:08", + "TransactionId": 20258561, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 361, + "CustomerInfo": 73380605, + "PaymentType": "Debit Card" + }, + { + "Id": 15741, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2019-09-30T17:39:42", + "TransactionId": 95889695, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 468, + "CustomerInfo": 45073663, + "PaymentType": "Credit Card" + }, + { + "Id": 15742, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2017-02-28T18:53:25", + "TransactionId": 29167199, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 292, + "CustomerInfo": 7578705, + "PaymentType": "Cash" + }, + { + "Id": 15743, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-04-07T19:07:49", + "TransactionId": 89828272, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 676, + "CustomerInfo": 9708664, + "PaymentType": "Credit Card" + }, + { + "Id": 15744, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-11-21T17:18:14", + "TransactionId": 47924148, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 933, + "CustomerInfo": 28148293, + "PaymentType": "Credit Card" + }, + { + "Id": 15745, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2016-12-08T18:48:49", + "TransactionId": 42374467, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 955, + "CustomerInfo": 93550148, + "PaymentType": "Debit Card" + }, + { + "Id": 15746, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-1", + "TransactionDate": "2017-11-04T15:17:34", + "TransactionId": 54335185, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 233, + "CustomerInfo": 26053937, + "PaymentType": "Debit Card" + }, + { + "Id": 15747, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2019-10-20T14:15:04", + "TransactionId": 16347731, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 65433971, + "PaymentType": "Cash" + }, + { + "Id": 15748, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-03-01T19:01:21", + "TransactionId": 37057175, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 446, + "CustomerInfo": 19366170, + "PaymentType": "Credit Card" + }, + { + "Id": 15749, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2019-04-27T16:15:10", + "TransactionId": 36107663, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 590, + "CustomerInfo": 71993353, + "PaymentType": "Cash" + }, + { + "Id": 15750, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-09-27T18:56:10", + "TransactionId": 59718422, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 299, + "CustomerInfo": 62584891, + "PaymentType": "Debit Card" + }, + { + "Id": 15751, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2017-02-16T16:08:15", + "TransactionId": 78327984, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 342, + "CustomerInfo": 63877033, + "PaymentType": "Credit Card" + }, + { + "Id": 15752, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2016-12-15T19:33:36", + "TransactionId": 3412051, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 718, + "CustomerInfo": 52102509, + "PaymentType": "Cash" + }, + { + "Id": 15753, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2017-02-24T17:54:06", + "TransactionId": 98762279, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 297, + "CustomerInfo": 79272176, + "PaymentType": "Cash" + }, + { + "Id": 15754, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2019-05-16T10:26:33", + "TransactionId": 1842012, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 101, + "CustomerInfo": 6645714, + "PaymentType": "Debit Card" + }, + { + "Id": 15755, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-08-27T07:08:33", + "TransactionId": 57677825, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 302, + "CustomerInfo": 13952514, + "PaymentType": "Cash" + }, + { + "Id": 15756, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2016-03-02T19:23:23", + "TransactionId": 15467677, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 173, + "CustomerInfo": 9309337, + "PaymentType": "Cash" + }, + { + "Id": 15757, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-12-11T14:51:04", + "TransactionId": 32937576, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 476, + "CustomerInfo": 2359772, + "PaymentType": "Credit Card" + }, + { + "Id": 15758, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2017-12-21T08:51:56", + "TransactionId": 31503785, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 783, + "CustomerInfo": 6866290, + "PaymentType": "Cash" + }, + { + "Id": 15759, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2017-09-19T17:49:29", + "TransactionId": 40301924, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 483, + "CustomerInfo": 39985930, + "PaymentType": "Credit Card" + }, + { + "Id": 15760, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-11-12T10:13:00", + "TransactionId": 15571771, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 736, + "CustomerInfo": 90832192, + "PaymentType": "Cash" + }, + { + "Id": 15761, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-06-24T14:43:35", + "TransactionId": 48080730, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 610, + "CustomerInfo": 73259994, + "PaymentType": "Debit Card" + }, + { + "Id": 15762, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2019-12-22T15:21:36", + "TransactionId": 282887, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 107, + "CustomerInfo": 96622991, + "PaymentType": "Cash" + }, + { + "Id": 15763, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2019-07-07T17:16:05", + "TransactionId": 57727987, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 160, + "CustomerInfo": 75343323, + "PaymentType": "Credit Card" + }, + { + "Id": 15764, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2019-03-24T10:50:53", + "TransactionId": 9102031, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 468, + "CustomerInfo": 99011478, + "PaymentType": "Debit Card" + }, + { + "Id": 15765, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2016-06-02T10:42:58", + "TransactionId": 10862453, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 673, + "CustomerInfo": 91870914, + "PaymentType": "Cash" + }, + { + "Id": 15766, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2018-09-12T18:01:18", + "TransactionId": 10124752, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 111, + "CustomerInfo": 594996, + "PaymentType": "Debit Card" + }, + { + "Id": 15767, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2018-08-30T15:21:10", + "TransactionId": 1858369, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 566, + "CustomerInfo": 89518547, + "PaymentType": "Cash" + }, + { + "Id": 15768, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2017-09-06T11:36:23", + "TransactionId": 75108368, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 11926672, + "PaymentType": "Cash" + }, + { + "Id": 15769, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-12-01T08:03:33", + "TransactionId": 32865032, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 592, + "CustomerInfo": 52083316, + "PaymentType": "Cash" + }, + { + "Id": 15770, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2018-12-15T16:41:48", + "TransactionId": 96958306, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 199, + "CustomerInfo": 22483356, + "PaymentType": "Credit Card" + }, + { + "Id": 15771, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-09-28T16:23:14", + "TransactionId": 77058470, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 23321334, + "PaymentType": "Cash" + }, + { + "Id": 15772, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-07-04T19:09:07", + "TransactionId": 16602063, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 657, + "CustomerInfo": 78967863, + "PaymentType": "Debit Card" + }, + { + "Id": 15773, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2017-03-28T14:35:23", + "TransactionId": 60847305, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 996, + "CustomerInfo": 97535027, + "PaymentType": "Cash" + }, + { + "Id": 15774, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2019-01-04T17:56:41", + "TransactionId": 35719891, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 778, + "CustomerInfo": 32007530, + "PaymentType": "Credit Card" + }, + { + "Id": 15775, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2016-02-14T18:06:29", + "TransactionId": 96459934, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 370, + "CustomerInfo": 5081240, + "PaymentType": "Credit Card" + }, + { + "Id": 15776, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2016-01-27T15:37:35", + "TransactionId": 99592118, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 896, + "CustomerInfo": 60219449, + "PaymentType": "Cash" + }, + { + "Id": 15777, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-03-21T12:44:56", + "TransactionId": 31979723, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 72165129, + "PaymentType": "Credit Card" + }, + { + "Id": 15778, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-03-04T13:41:57", + "TransactionId": 27293100, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 674, + "CustomerInfo": 32833946, + "PaymentType": "Credit Card" + }, + { + "Id": 15779, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2016-02-28T19:02:21", + "TransactionId": 43566849, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 453, + "CustomerInfo": 10092723, + "PaymentType": "Cash" + }, + { + "Id": 15780, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-01-16T19:43:32", + "TransactionId": 78907561, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 44445038, + "PaymentType": "Debit Card" + }, + { + "Id": 15781, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-1", + "TransactionDate": "2017-03-04T08:22:42", + "TransactionId": 22352685, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 424, + "CustomerInfo": 27110150, + "PaymentType": "Cash" + }, + { + "Id": 15782, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-01-17T17:16:05", + "TransactionId": 64396796, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 335, + "CustomerInfo": 4349731, + "PaymentType": "Cash" + }, + { + "Id": 15783, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2017-03-23T17:29:02", + "TransactionId": 82309306, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 804, + "CustomerInfo": 18139849, + "PaymentType": "Credit Card" + }, + { + "Id": 15784, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-07-25T15:36:35", + "TransactionId": 50427669, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 352, + "CustomerInfo": 94381210, + "PaymentType": "Credit Card" + }, + { + "Id": 15785, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2019-04-27T18:12:58", + "TransactionId": 26035487, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 262, + "CustomerInfo": 2743950, + "PaymentType": "Cash" + }, + { + "Id": 15786, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-07-23T09:42:03", + "TransactionId": 78390210, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 158, + "CustomerInfo": 58432792, + "PaymentType": "Credit Card" + }, + { + "Id": 15787, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2016-08-04T18:31:06", + "TransactionId": 78444657, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 81, + "CustomerInfo": 91474974, + "PaymentType": "Cash" + }, + { + "Id": 15788, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-07-03T08:41:25", + "TransactionId": 24289813, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 758, + "CustomerInfo": 7951438, + "PaymentType": "Cash" + }, + { + "Id": 15789, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2018-11-25T14:29:02", + "TransactionId": 25986978, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 831, + "CustomerInfo": 68946949, + "PaymentType": "Credit Card" + }, + { + "Id": 15790, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-06-09T17:06:09", + "TransactionId": 26010211, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 255, + "CustomerInfo": 49214591, + "PaymentType": "Cash" + }, + { + "Id": 15791, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-09-07T18:55:09", + "TransactionId": 69573382, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 549, + "CustomerInfo": 91187722, + "PaymentType": "Credit Card" + }, + { + "Id": 15792, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-06-02T10:31:00", + "TransactionId": 71477146, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 738, + "CustomerInfo": 30399633, + "PaymentType": "Debit Card" + }, + { + "Id": 15793, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2016-03-29T13:33:10", + "TransactionId": 78812669, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 142, + "CustomerInfo": 95520533, + "PaymentType": "Credit Card" + }, + { + "Id": 15794, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-03-03T17:17:48", + "TransactionId": 42816067, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 435, + "CustomerInfo": 50054326, + "PaymentType": "Cash" + }, + { + "Id": 15795, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-02-03T07:02:47", + "TransactionId": 62390428, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 324, + "CustomerInfo": 56256425, + "PaymentType": "Credit Card" + }, + { + "Id": 15796, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2019-11-22T14:59:51", + "TransactionId": 54032043, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 545, + "CustomerInfo": 34996620, + "PaymentType": "Credit Card" + }, + { + "Id": 15797, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2016-11-11T07:53:37", + "TransactionId": 72023837, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 705, + "CustomerInfo": 4114540, + "PaymentType": "Credit Card" + }, + { + "Id": 15798, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-11-09T16:54:46", + "TransactionId": 88178186, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 576, + "CustomerInfo": 56016561, + "PaymentType": "Credit Card" + }, + { + "Id": 15799, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2017-05-30T13:28:34", + "TransactionId": 56325898, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 561, + "CustomerInfo": 34492729, + "PaymentType": "Credit Card" + }, + { + "Id": 15800, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2019-11-22T08:21:07", + "TransactionId": 18958733, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 611, + "CustomerInfo": 35531305, + "PaymentType": "Credit Card" + }, + { + "Id": 15801, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-12-10T16:16:54", + "TransactionId": 810232, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 742, + "CustomerInfo": 51646649, + "PaymentType": "Cash" + }, + { + "Id": 15802, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2017-12-20T08:10:28", + "TransactionId": 73728317, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 95512357, + "PaymentType": "Cash" + }, + { + "Id": 15803, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-08-09T13:59:14", + "TransactionId": 38948455, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 292, + "CustomerInfo": 51360395, + "PaymentType": "Debit Card" + }, + { + "Id": 15804, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2017-07-14T18:06:20", + "TransactionId": 37143142, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 584, + "CustomerInfo": 55846092, + "PaymentType": "Credit Card" + }, + { + "Id": 15805, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-10-27T09:05:02", + "TransactionId": 35880787, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 525, + "CustomerInfo": 18840359, + "PaymentType": "Credit Card" + }, + { + "Id": 15806, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2018-10-13T10:50:10", + "TransactionId": 41094181, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 365, + "CustomerInfo": 72403159, + "PaymentType": "Cash" + }, + { + "Id": 15807, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2016-01-30T10:40:39", + "TransactionId": 14719304, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 440, + "CustomerInfo": 50364410, + "PaymentType": "Debit Card" + }, + { + "Id": 15808, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-03-01T11:57:07", + "TransactionId": 65236445, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 951, + "CustomerInfo": 95600580, + "PaymentType": "Debit Card" + }, + { + "Id": 15809, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2018-03-27T09:01:09", + "TransactionId": 24711828, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 252, + "CustomerInfo": 60105507, + "PaymentType": "Cash" + }, + { + "Id": 15810, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-05-13T09:21:45", + "TransactionId": 64439689, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 106, + "CustomerInfo": 52852229, + "PaymentType": "Credit Card" + }, + { + "Id": 15811, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-07-25T09:12:49", + "TransactionId": 90431664, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 451, + "CustomerInfo": 97381477, + "PaymentType": "Debit Card" + }, + { + "Id": 15812, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-07-26T19:22:31", + "TransactionId": 77669358, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 285, + "CustomerInfo": 24380074, + "PaymentType": "Cash" + }, + { + "Id": 15813, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2019-12-29T07:59:57", + "TransactionId": 97645868, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 751, + "CustomerInfo": 88111085, + "PaymentType": "Debit Card" + }, + { + "Id": 15814, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-01-08T07:43:06", + "TransactionId": 38440303, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 139, + "CustomerInfo": 79774980, + "PaymentType": "Credit Card" + }, + { + "Id": 15815, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-05-11T09:29:31", + "TransactionId": 57819928, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 366, + "CustomerInfo": 52059830, + "PaymentType": "Debit Card" + }, + { + "Id": 15816, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2019-11-28T19:37:12", + "TransactionId": 70680259, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 489, + "CustomerInfo": 38896634, + "PaymentType": "Credit Card" + }, + { + "Id": 15817, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2017-07-27T13:36:03", + "TransactionId": 37259155, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 331, + "CustomerInfo": 71678819, + "PaymentType": "Credit Card" + }, + { + "Id": 15818, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-10-03T08:59:51", + "TransactionId": 75953460, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 853, + "CustomerInfo": 79987958, + "PaymentType": "Credit Card" + }, + { + "Id": 15819, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2018-10-22T17:53:40", + "TransactionId": 96305686, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 605, + "CustomerInfo": 77804088, + "PaymentType": "Credit Card" + }, + { + "Id": 15820, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2019-08-14T14:28:28", + "TransactionId": 7581902, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 314, + "CustomerInfo": 30054034, + "PaymentType": "Credit Card" + }, + { + "Id": 15821, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-10-04T12:47:40", + "TransactionId": 27406370, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 336, + "CustomerInfo": 5309812, + "PaymentType": "Debit Card" + }, + { + "Id": 15822, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2017-05-20T13:05:23", + "TransactionId": 28853397, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 352, + "CustomerInfo": 19804405, + "PaymentType": "Debit Card" + }, + { + "Id": 15823, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2017-10-12T19:26:59", + "TransactionId": 21393920, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 455, + "CustomerInfo": 48171030, + "PaymentType": "Debit Card" + }, + { + "Id": 15824, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2019-11-16T19:38:47", + "TransactionId": 94869732, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 212, + "CustomerInfo": 29493399, + "PaymentType": "Credit Card" + }, + { + "Id": 15825, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2018-03-31T13:34:11", + "TransactionId": 94264514, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 879, + "CustomerInfo": 5395903, + "PaymentType": "Credit Card" + }, + { + "Id": 15826, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2019-04-23T09:15:33", + "TransactionId": 85995702, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 213, + "CustomerInfo": 66539573, + "PaymentType": "Cash" + }, + { + "Id": 15827, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-05-07T15:17:17", + "TransactionId": 14467589, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 678, + "CustomerInfo": 96565700, + "PaymentType": "Cash" + }, + { + "Id": 15828, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2016-12-06T09:58:36", + "TransactionId": 5224255, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 545, + "CustomerInfo": 29043557, + "PaymentType": "Credit Card" + }, + { + "Id": 15829, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-07-13T10:27:50", + "TransactionId": 94167414, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 952, + "CustomerInfo": 79276848, + "PaymentType": "Credit Card" + }, + { + "Id": 15830, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2018-03-27T15:18:35", + "TransactionId": 44569172, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 963, + "CustomerInfo": 21372397, + "PaymentType": "Debit Card" + }, + { + "Id": 15831, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-02-13T14:39:33", + "TransactionId": 20816792, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 711, + "CustomerInfo": 87832277, + "PaymentType": "Debit Card" + }, + { + "Id": 15832, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-10-07T11:01:49", + "TransactionId": 62547650, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 685, + "CustomerInfo": 85027531, + "PaymentType": "Cash" + }, + { + "Id": 15833, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-11-13T09:48:06", + "TransactionId": 82781482, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 824, + "CustomerInfo": 61056396, + "PaymentType": "Debit Card" + }, + { + "Id": 15834, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2018-05-26T07:16:36", + "TransactionId": 7991465, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 667, + "CustomerInfo": 70644839, + "PaymentType": "Credit Card" + }, + { + "Id": 15835, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2016-05-15T15:46:39", + "TransactionId": 12367134, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 326, + "CustomerInfo": 74418440, + "PaymentType": "Credit Card" + }, + { + "Id": 15836, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2017-09-28T11:46:11", + "TransactionId": 91649248, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 640, + "CustomerInfo": 95187398, + "PaymentType": "Debit Card" + }, + { + "Id": 15837, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2016-10-21T19:42:14", + "TransactionId": 95169301, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 86894320, + "PaymentType": "Credit Card" + }, + { + "Id": 15838, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2016-03-06T08:43:52", + "TransactionId": 5646068, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 939, + "CustomerInfo": 61702894, + "PaymentType": "Credit Card" + }, + { + "Id": 15839, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2019-08-05T10:31:26", + "TransactionId": 1387638, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 79, + "CustomerInfo": 51712083, + "PaymentType": "Debit Card" + }, + { + "Id": 15840, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2016-11-07T13:15:45", + "TransactionId": 90614252, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 817, + "CustomerInfo": 87344934, + "PaymentType": "Debit Card" + }, + { + "Id": 15841, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2017-05-07T11:09:27", + "TransactionId": 59657437, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 240, + "CustomerInfo": 75864443, + "PaymentType": "Credit Card" + }, + { + "Id": 15842, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2017-10-16T19:54:12", + "TransactionId": 16506691, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 806, + "CustomerInfo": 19211294, + "PaymentType": "Credit Card" + }, + { + "Id": 15843, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2016-11-26T08:12:46", + "TransactionId": 4389885, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 907, + "CustomerInfo": 45910933, + "PaymentType": "Debit Card" + }, + { + "Id": 15844, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2016-05-03T08:13:47", + "TransactionId": 69212110, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 912, + "CustomerInfo": 34011855, + "PaymentType": "Credit Card" + }, + { + "Id": 15845, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-11-04T12:44:47", + "TransactionId": 91050290, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 7, + "CustomerInfo": 91555355, + "PaymentType": "Credit Card" + }, + { + "Id": 15846, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2018-11-18T11:02:59", + "TransactionId": 85723404, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 187, + "CustomerInfo": 75629655, + "PaymentType": "Cash" + }, + { + "Id": 15847, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2016-10-04T08:30:37", + "TransactionId": 40103843, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 276, + "CustomerInfo": 29736638, + "PaymentType": "Credit Card" + }, + { + "Id": 15848, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-11-11T17:13:38", + "TransactionId": 78813337, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 601, + "CustomerInfo": 55096339, + "PaymentType": "Cash" + }, + { + "Id": 15849, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2017-05-01T11:46:28", + "TransactionId": 71718520, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 328, + "CustomerInfo": 55010450, + "PaymentType": "Credit Card" + }, + { + "Id": 15850, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-09-01T15:05:20", + "TransactionId": 9519121, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 873, + "CustomerInfo": 86212816, + "PaymentType": "Credit Card" + }, + { + "Id": 15851, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2017-05-28T12:22:11", + "TransactionId": 22247346, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 988, + "CustomerInfo": 29421762, + "PaymentType": "Cash" + }, + { + "Id": 15852, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2016-10-07T11:45:19", + "TransactionId": 74722726, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 400, + "CustomerInfo": 33682446, + "PaymentType": "Credit Card" + }, + { + "Id": 15853, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-08-30T12:00:43", + "TransactionId": 64501375, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 475, + "CustomerInfo": 30121134, + "PaymentType": "Credit Card" + }, + { + "Id": 15854, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-04-18T07:19:55", + "TransactionId": 91097360, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 417, + "CustomerInfo": 62457014, + "PaymentType": "Cash" + }, + { + "Id": 15855, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-02-03T11:07:18", + "TransactionId": 41006370, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 660, + "CustomerInfo": 74691044, + "PaymentType": "Cash" + }, + { + "Id": 15856, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2016-11-05T07:56:38", + "TransactionId": 70642957, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 578, + "CustomerInfo": 61516156, + "PaymentType": "Credit Card" + }, + { + "Id": 15857, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2016-06-11T16:50:01", + "TransactionId": 89287404, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 759, + "CustomerInfo": 68948300, + "PaymentType": "Debit Card" + }, + { + "Id": 15858, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-04-19T11:07:09", + "TransactionId": 83664475, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 30451502, + "PaymentType": "Credit Card" + }, + { + "Id": 15859, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2019-01-16T11:10:54", + "TransactionId": 61133193, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 116, + "CustomerInfo": 74609886, + "PaymentType": "Credit Card" + }, + { + "Id": 15860, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2016-07-13T11:43:09", + "TransactionId": 50095099, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 496, + "CustomerInfo": 42364520, + "PaymentType": "Credit Card" + }, + { + "Id": 15861, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2018-12-25T19:29:51", + "TransactionId": 63330566, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 101, + "CustomerInfo": 44809470, + "PaymentType": "Cash" + }, + { + "Id": 15862, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2017-06-20T17:06:09", + "TransactionId": 27483496, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 138, + "CustomerInfo": 90045739, + "PaymentType": "Cash" + }, + { + "Id": 15863, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2016-12-19T15:07:21", + "TransactionId": 57371551, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 27, + "CustomerInfo": 4015798, + "PaymentType": "Cash" + }, + { + "Id": 15864, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2016-12-04T19:06:14", + "TransactionId": 85577006, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 673, + "CustomerInfo": 47764726, + "PaymentType": "Credit Card" + }, + { + "Id": 15865, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2019-01-12T19:10:16", + "TransactionId": 93753203, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 611, + "CustomerInfo": 28712232, + "PaymentType": "Debit Card" + }, + { + "Id": 15866, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2017-03-09T15:02:27", + "TransactionId": 42057360, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 672, + "CustomerInfo": 73183131, + "PaymentType": "Debit Card" + }, + { + "Id": 15867, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2016-02-25T09:50:33", + "TransactionId": 56104466, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 402, + "CustomerInfo": 2363669, + "PaymentType": "Cash" + }, + { + "Id": 15868, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-05-29T09:54:09", + "TransactionId": 7311118, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 602, + "CustomerInfo": 67450603, + "PaymentType": "Debit Card" + }, + { + "Id": 15869, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2017-11-22T12:37:09", + "TransactionId": 94089170, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 535, + "CustomerInfo": 56114245, + "PaymentType": "Debit Card" + }, + { + "Id": 15870, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2018-09-19T12:54:17", + "TransactionId": 28299674, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 406, + "CustomerInfo": 67618846, + "PaymentType": "Cash" + }, + { + "Id": 15871, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2019-07-10T10:57:56", + "TransactionId": 80895859, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 728, + "CustomerInfo": 38604018, + "PaymentType": "Credit Card" + }, + { + "Id": 15872, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2019-11-24T11:34:05", + "TransactionId": 33736205, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 527, + "CustomerInfo": 12047727, + "PaymentType": "Cash" + }, + { + "Id": 15873, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2018-11-01T09:46:57", + "TransactionId": 74876217, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 37, + "CustomerInfo": 17150465, + "PaymentType": "Credit Card" + }, + { + "Id": 15874, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-06-24T10:19:21", + "TransactionId": 7934302, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 163, + "CustomerInfo": 39131028, + "PaymentType": "Cash" + }, + { + "Id": 15875, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-08-28T18:31:49", + "TransactionId": 30397397, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 106, + "CustomerInfo": 45978377, + "PaymentType": "Cash" + }, + { + "Id": 15876, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2016-11-30T13:02:56", + "TransactionId": 42289930, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 821, + "CustomerInfo": 73768692, + "PaymentType": "Debit Card" + }, + { + "Id": 15877, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2016-02-16T18:45:22", + "TransactionId": 78454655, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 731, + "CustomerInfo": 87619377, + "PaymentType": "Debit Card" + }, + { + "Id": 15878, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2016-01-07T07:33:27", + "TransactionId": 58084214, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 217, + "CustomerInfo": 38402735, + "PaymentType": "Cash" + }, + { + "Id": 15879, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2019-11-25T08:04:51", + "TransactionId": 27792553, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 116, + "CustomerInfo": 67644234, + "PaymentType": "Credit Card" + }, + { + "Id": 15880, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2017-10-30T16:14:01", + "TransactionId": 20192207, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 89695868, + "PaymentType": "Cash" + }, + { + "Id": 15881, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-12-11T12:15:42", + "TransactionId": 58296597, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 207, + "CustomerInfo": 53739535, + "PaymentType": "Credit Card" + }, + { + "Id": 15882, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2016-09-26T10:15:10", + "TransactionId": 43710033, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 949, + "CustomerInfo": 41516660, + "PaymentType": "Credit Card" + }, + { + "Id": 15883, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2019-03-09T12:26:38", + "TransactionId": 90229704, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 996, + "CustomerInfo": 5911607, + "PaymentType": "Credit Card" + }, + { + "Id": 15884, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2016-11-30T09:04:11", + "TransactionId": 54928130, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 368, + "CustomerInfo": 23666278, + "PaymentType": "Credit Card" + }, + { + "Id": 15885, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2016-06-19T14:46:11", + "TransactionId": 47569310, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 912, + "CustomerInfo": 95060271, + "PaymentType": "Debit Card" + }, + { + "Id": 15886, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-11-03T15:26:56", + "TransactionId": 83121724, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 29, + "CustomerInfo": 64926429, + "PaymentType": "Debit Card" + }, + { + "Id": 15887, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-02-02T15:04:02", + "TransactionId": 2100250, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 711, + "CustomerInfo": 93509472, + "PaymentType": "Debit Card" + }, + { + "Id": 15888, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-08-13T07:05:14", + "TransactionId": 97049026, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 733, + "CustomerInfo": 44510485, + "PaymentType": "Cash" + }, + { + "Id": 15889, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-03-25T09:09:56", + "TransactionId": 34294996, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 872, + "CustomerInfo": 1825235, + "PaymentType": "Credit Card" + }, + { + "Id": 15890, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-08-22T12:09:04", + "TransactionId": 81716030, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 392, + "CustomerInfo": 29756094, + "PaymentType": "Credit Card" + }, + { + "Id": 15891, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-02-27T07:43:58", + "TransactionId": 48133691, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 725, + "CustomerInfo": 85767984, + "PaymentType": "Debit Card" + }, + { + "Id": 15892, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2019-01-04T12:45:04", + "TransactionId": 69894241, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 38, + "CustomerInfo": 56114085, + "PaymentType": "Credit Card" + }, + { + "Id": 15893, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2017-12-25T16:34:28", + "TransactionId": 14013680, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 423, + "CustomerInfo": 15951352, + "PaymentType": "Debit Card" + }, + { + "Id": 15894, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2018-07-12T13:46:42", + "TransactionId": 81820007, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 478, + "CustomerInfo": 13594990, + "PaymentType": "Cash" + }, + { + "Id": 15895, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2018-01-06T10:38:56", + "TransactionId": 65389214, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 929, + "CustomerInfo": 50274635, + "PaymentType": "Debit Card" + }, + { + "Id": 15896, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2018-10-14T15:00:09", + "TransactionId": 75813861, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 777, + "CustomerInfo": 75191841, + "PaymentType": "Debit Card" + }, + { + "Id": 15897, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2019-12-29T15:38:27", + "TransactionId": 64770505, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 88, + "CustomerInfo": 86659765, + "PaymentType": "Cash" + }, + { + "Id": 15898, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-03-02T10:56:12", + "TransactionId": 21856482, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 25, + "CustomerInfo": 40626145, + "PaymentType": "Credit Card" + }, + { + "Id": 15899, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2017-12-16T11:40:51", + "TransactionId": 4904027, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 695, + "CustomerInfo": 62470088, + "PaymentType": "Debit Card" + }, + { + "Id": 15900, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2017-03-10T14:46:19", + "TransactionId": 88795055, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 429, + "CustomerInfo": 90058326, + "PaymentType": "Credit Card" + }, + { + "Id": 15901, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2019-07-02T08:57:07", + "TransactionId": 39211145, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 439, + "CustomerInfo": 25163450, + "PaymentType": "Cash" + }, + { + "Id": 15902, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2018-06-02T16:46:34", + "TransactionId": 1683049, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 97, + "CustomerInfo": 38699244, + "PaymentType": "Credit Card" + }, + { + "Id": 15903, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2017-08-01T08:46:45", + "TransactionId": 68020693, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 626, + "CustomerInfo": 259468, + "PaymentType": "Credit Card" + }, + { + "Id": 15904, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2019-10-09T11:22:25", + "TransactionId": 4551638, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 158, + "CustomerInfo": 98158790, + "PaymentType": "Credit Card" + }, + { + "Id": 15905, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-03-03T11:24:00", + "TransactionId": 28318350, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 451, + "CustomerInfo": 21204281, + "PaymentType": "Credit Card" + }, + { + "Id": 15906, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2017-04-26T13:28:51", + "TransactionId": 4091729, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 425, + "CustomerInfo": 40223941, + "PaymentType": "Credit Card" + }, + { + "Id": 15907, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2019-07-12T11:59:25", + "TransactionId": 80700756, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 936, + "CustomerInfo": 58792568, + "PaymentType": "Debit Card" + }, + { + "Id": 15908, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2016-02-25T16:47:08", + "TransactionId": 74855838, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 98, + "CustomerInfo": 2313226, + "PaymentType": "Cash" + }, + { + "Id": 15909, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-04-27T10:37:47", + "TransactionId": 84273693, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 289, + "CustomerInfo": 84772515, + "PaymentType": "Cash" + }, + { + "Id": 15910, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2016-12-20T16:57:13", + "TransactionId": 62999973, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 183, + "CustomerInfo": 99524752, + "PaymentType": "Cash" + }, + { + "Id": 15911, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-10-27T18:26:30", + "TransactionId": 39837200, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 596, + "CustomerInfo": 67849708, + "PaymentType": "Credit Card" + }, + { + "Id": 15912, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2019-06-27T14:48:29", + "TransactionId": 82200309, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 281, + "CustomerInfo": 69037953, + "PaymentType": "Debit Card" + }, + { + "Id": 15913, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2016-02-04T17:03:33", + "TransactionId": 84723503, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 761, + "CustomerInfo": 39894538, + "PaymentType": "Cash" + }, + { + "Id": 15914, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2016-09-26T19:48:35", + "TransactionId": 60785669, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 160, + "CustomerInfo": 52750884, + "PaymentType": "Debit Card" + }, + { + "Id": 15915, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-10-13T12:27:48", + "TransactionId": 46084873, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 19483657, + "PaymentType": "Debit Card" + }, + { + "Id": 15916, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-02-25T12:36:35", + "TransactionId": 34252500, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 795, + "CustomerInfo": 46510932, + "PaymentType": "Debit Card" + }, + { + "Id": 15917, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2017-04-09T16:47:51", + "TransactionId": 2699371, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 587, + "CustomerInfo": 82298385, + "PaymentType": "Cash" + }, + { + "Id": 15918, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2016-01-16T10:19:38", + "TransactionId": 53087134, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 387, + "CustomerInfo": 62569619, + "PaymentType": "Debit Card" + }, + { + "Id": 15919, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2017-05-26T12:22:54", + "TransactionId": 64911675, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 848, + "CustomerInfo": 98558056, + "PaymentType": "Cash" + }, + { + "Id": 15920, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2019-04-26T09:05:37", + "TransactionId": 39401382, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 950, + "CustomerInfo": 3848038, + "PaymentType": "Cash" + }, + { + "Id": 15921, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2016-05-05T19:36:55", + "TransactionId": 5211174, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 22, + "CustomerInfo": 4284579, + "PaymentType": "Debit Card" + }, + { + "Id": 15922, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-08-14T12:08:21", + "TransactionId": 2493798, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 541, + "CustomerInfo": 5568740, + "PaymentType": "Credit Card" + }, + { + "Id": 15923, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-06-06T19:32:18", + "TransactionId": 58589415, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 306, + "CustomerInfo": 78034716, + "PaymentType": "Debit Card" + }, + { + "Id": 15924, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-02-25T13:34:11", + "TransactionId": 69142683, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 11, + "CustomerInfo": 79708890, + "PaymentType": "Credit Card" + }, + { + "Id": 15925, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2017-11-27T07:24:49", + "TransactionId": 25308304, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 911, + "CustomerInfo": 75278308, + "PaymentType": "Debit Card" + }, + { + "Id": 15926, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2016-04-23T19:07:24", + "TransactionId": 89542316, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 960, + "CustomerInfo": 48516647, + "PaymentType": "Debit Card" + }, + { + "Id": 15927, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-05-18T09:26:12", + "TransactionId": 43728791, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 829, + "CustomerInfo": 822168, + "PaymentType": "Cash" + }, + { + "Id": 15928, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2016-12-27T13:32:44", + "TransactionId": 86069807, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 434, + "CustomerInfo": 91701618, + "PaymentType": "Debit Card" + }, + { + "Id": 15929, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2016-12-07T16:16:02", + "TransactionId": 23540300, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 314, + "CustomerInfo": 28181657, + "PaymentType": "Debit Card" + }, + { + "Id": 15930, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2016-11-06T19:12:17", + "TransactionId": 69617795, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 513, + "CustomerInfo": 5917161, + "PaymentType": "Credit Card" + }, + { + "Id": 15931, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-05-08T16:14:36", + "TransactionId": 12147552, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 803, + "CustomerInfo": 6656263, + "PaymentType": "Debit Card" + }, + { + "Id": 15932, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2019-10-07T10:00:03", + "TransactionId": 83588061, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 823, + "CustomerInfo": 23892395, + "PaymentType": "Debit Card" + }, + { + "Id": 15933, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-02-17T13:59:31", + "TransactionId": 66608484, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 607, + "CustomerInfo": 13787194, + "PaymentType": "Cash" + }, + { + "Id": 15934, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2019-03-21T07:05:40", + "TransactionId": 82194334, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 105, + "CustomerInfo": 18068640, + "PaymentType": "Debit Card" + }, + { + "Id": 15935, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2019-10-29T12:58:02", + "TransactionId": 18508876, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 794, + "CustomerInfo": 57719134, + "PaymentType": "Debit Card" + }, + { + "Id": 15936, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-04-30T11:58:51", + "TransactionId": 6442041, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 941, + "CustomerInfo": 55788349, + "PaymentType": "Credit Card" + }, + { + "Id": 15937, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-01-11T18:50:41", + "TransactionId": 48858962, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 505, + "CustomerInfo": 43927662, + "PaymentType": "Credit Card" + }, + { + "Id": 15938, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2017-01-04T17:10:28", + "TransactionId": 51230392, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 761, + "CustomerInfo": 95605426, + "PaymentType": "Debit Card" + }, + { + "Id": 15939, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-02-01T12:09:56", + "TransactionId": 31507473, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 913, + "CustomerInfo": 20426710, + "PaymentType": "Debit Card" + }, + { + "Id": 15940, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2017-11-17T16:09:07", + "TransactionId": 9653942, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 13, + "CustomerInfo": 42446314, + "PaymentType": "Cash" + }, + { + "Id": 15941, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2019-06-06T15:14:59", + "TransactionId": 16243952, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 559, + "CustomerInfo": 33009278, + "PaymentType": "Credit Card" + }, + { + "Id": 15942, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2017-04-17T17:30:37", + "TransactionId": 73487842, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 404, + "CustomerInfo": 72782733, + "PaymentType": "Debit Card" + }, + { + "Id": 15943, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-08-15T12:09:22", + "TransactionId": 34031047, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 743, + "CustomerInfo": 74131524, + "PaymentType": "Cash" + }, + { + "Id": 15944, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-06-26T16:57:22", + "TransactionId": 73931785, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 38, + "CustomerInfo": 74056864, + "PaymentType": "Credit Card" + }, + { + "Id": 15945, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2019-03-26T14:14:47", + "TransactionId": 26043920, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 992, + "CustomerInfo": 77034701, + "PaymentType": "Cash" + }, + { + "Id": 15946, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2017-12-13T12:03:53", + "TransactionId": 82095071, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 746, + "CustomerInfo": 3734749, + "PaymentType": "Debit Card" + }, + { + "Id": 15947, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-5", + "TransactionDate": "2017-01-20T12:42:29", + "TransactionId": 57913760, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 669, + "CustomerInfo": 27754126, + "PaymentType": "Cash" + }, + { + "Id": 15948, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-02-27T18:15:59", + "TransactionId": 45634010, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 373, + "CustomerInfo": 48399091, + "PaymentType": "Cash" + }, + { + "Id": 15949, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2016-12-24T11:50:30", + "TransactionId": 61155830, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 992, + "CustomerInfo": 35910731, + "PaymentType": "Debit Card" + }, + { + "Id": 15950, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-01-01T09:58:54", + "TransactionId": 71949291, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 659, + "CustomerInfo": 22925020, + "PaymentType": "Cash" + }, + { + "Id": 15951, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2019-02-01T09:02:18", + "TransactionId": 65987859, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 504, + "CustomerInfo": 55015477, + "PaymentType": "Debit Card" + }, + { + "Id": 15952, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-01-24T10:22:05", + "TransactionId": 3156191, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 971, + "CustomerInfo": 22354684, + "PaymentType": "Cash" + }, + { + "Id": 15953, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2019-01-26T16:11:43", + "TransactionId": 74104081, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 824, + "CustomerInfo": 81933951, + "PaymentType": "Debit Card" + }, + { + "Id": 15954, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-03-23T11:33:39", + "TransactionId": 35736671, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 352, + "CustomerInfo": 42797855, + "PaymentType": "Debit Card" + }, + { + "Id": 15955, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2018-07-01T11:21:42", + "TransactionId": 54778355, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 703, + "CustomerInfo": 16307692, + "PaymentType": "Debit Card" + }, + { + "Id": 15956, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-01-31T17:52:31", + "TransactionId": 55017784, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 560, + "CustomerInfo": 66626287, + "PaymentType": "Cash" + }, + { + "Id": 15957, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2019-11-18T11:31:12", + "TransactionId": 58791063, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 61, + "CustomerInfo": 42463371, + "PaymentType": "Debit Card" + }, + { + "Id": 15958, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2018-02-07T17:36:23", + "TransactionId": 82768293, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 361, + "CustomerInfo": 99832015, + "PaymentType": "Debit Card" + }, + { + "Id": 15959, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-01-20T08:18:40", + "TransactionId": 14282913, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 215, + "CustomerInfo": 71531004, + "PaymentType": "Debit Card" + }, + { + "Id": 15960, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2018-02-09T11:00:06", + "TransactionId": 41240006, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 121, + "CustomerInfo": 23389082, + "PaymentType": "Debit Card" + }, + { + "Id": 15961, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2016-04-08T07:37:55", + "TransactionId": 47880498, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 55, + "CustomerInfo": 22893079, + "PaymentType": "Cash" + }, + { + "Id": 15962, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2016-01-04T17:04:08", + "TransactionId": 13117173, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 127, + "CustomerInfo": 44146917, + "PaymentType": "Debit Card" + }, + { + "Id": 15963, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-10-16T15:37:44", + "TransactionId": 56196790, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 557, + "CustomerInfo": 3734614, + "PaymentType": "Credit Card" + }, + { + "Id": 15964, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2016-05-21T07:45:24", + "TransactionId": 45048585, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 765, + "CustomerInfo": 5054353, + "PaymentType": "Credit Card" + }, + { + "Id": 15965, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-06-27T16:49:09", + "TransactionId": 80146731, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 24052, + "PaymentType": "Debit Card" + }, + { + "Id": 15966, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2019-02-16T17:17:57", + "TransactionId": 65394484, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 890, + "CustomerInfo": 97259979, + "PaymentType": "Debit Card" + }, + { + "Id": 15967, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-12-27T17:16:22", + "TransactionId": 97802549, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 30126063, + "PaymentType": "Debit Card" + }, + { + "Id": 15968, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2018-11-10T07:10:08", + "TransactionId": 21399225, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 637, + "CustomerInfo": 76937712, + "PaymentType": "Debit Card" + }, + { + "Id": 15969, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-07-23T11:08:44", + "TransactionId": 1206171, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 126, + "CustomerInfo": 87568396, + "PaymentType": "Debit Card" + }, + { + "Id": 15970, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2019-05-20T10:02:30", + "TransactionId": 45390749, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 269, + "CustomerInfo": 49941348, + "PaymentType": "Debit Card" + }, + { + "Id": 15971, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-06-20T17:02:33", + "TransactionId": 87530719, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 493, + "CustomerInfo": 11593773, + "PaymentType": "Debit Card" + }, + { + "Id": 15972, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2016-04-01T17:16:22", + "TransactionId": 38551090, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 844, + "CustomerInfo": 53325736, + "PaymentType": "Credit Card" + }, + { + "Id": 15973, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2019-06-03T17:17:14", + "TransactionId": 49936008, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 201, + "CustomerInfo": 69809290, + "PaymentType": "Debit Card" + }, + { + "Id": 15974, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2018-04-09T11:32:38", + "TransactionId": 60851717, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 690, + "CustomerInfo": 62773088, + "PaymentType": "Cash" + }, + { + "Id": 15975, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-04-27T08:11:46", + "TransactionId": 98666079, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 139, + "CustomerInfo": 35805531, + "PaymentType": "Cash" + }, + { + "Id": 15976, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2018-09-04T12:18:35", + "TransactionId": 98697718, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 112, + "CustomerInfo": 91501876, + "PaymentType": "Cash" + }, + { + "Id": 15977, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2019-10-02T16:19:12", + "TransactionId": 85824916, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 605, + "CustomerInfo": 60041640, + "PaymentType": "Debit Card" + }, + { + "Id": 15978, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2019-11-21T16:00:29", + "TransactionId": 44180008, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 748, + "CustomerInfo": 84694629, + "PaymentType": "Cash" + }, + { + "Id": 15979, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-04-23T10:23:57", + "TransactionId": 28619484, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 537, + "CustomerInfo": 78444225, + "PaymentType": "Credit Card" + }, + { + "Id": 15980, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2018-12-31T07:45:07", + "TransactionId": 32043711, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 989, + "CustomerInfo": 45603841, + "PaymentType": "Credit Card" + }, + { + "Id": 15981, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2017-07-06T08:41:25", + "TransactionId": 72432478, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 109, + "CustomerInfo": 58360454, + "PaymentType": "Debit Card" + }, + { + "Id": 15982, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-09-15T12:44:56", + "TransactionId": 26047168, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 335, + "CustomerInfo": 87622412, + "PaymentType": "Credit Card" + }, + { + "Id": 15983, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-03-01T15:56:44", + "TransactionId": 28033379, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 868, + "CustomerInfo": 79828674, + "PaymentType": "Cash" + }, + { + "Id": 15984, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2018-10-11T07:39:04", + "TransactionId": 96157627, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 930, + "CustomerInfo": 77127234, + "PaymentType": "Debit Card" + }, + { + "Id": 15985, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-05-27T07:41:40", + "TransactionId": 71463247, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 16, + "CustomerInfo": 79571935, + "PaymentType": "Debit Card" + }, + { + "Id": 15986, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2018-05-04T10:09:16", + "TransactionId": 52616717, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 225, + "CustomerInfo": 64136895, + "PaymentType": "Debit Card" + }, + { + "Id": 15987, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2017-09-11T16:44:41", + "TransactionId": 7796498, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 281, + "CustomerInfo": 26022537, + "PaymentType": "Credit Card" + }, + { + "Id": 15988, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-05-27T15:45:04", + "TransactionId": 72541407, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 102, + "CustomerInfo": 78653652, + "PaymentType": "Debit Card" + }, + { + "Id": 15989, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2018-04-18T08:52:48", + "TransactionId": 45925710, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 170, + "CustomerInfo": 33802763, + "PaymentType": "Credit Card" + }, + { + "Id": 15990, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2016-07-10T12:57:45", + "TransactionId": 79841531, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 654, + "CustomerInfo": 81561652, + "PaymentType": "Credit Card" + }, + { + "Id": 15991, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2019-08-20T14:05:25", + "TransactionId": 91973956, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 784, + "CustomerInfo": 77741748, + "PaymentType": "Debit Card" + }, + { + "Id": 15992, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-04-30T19:25:15", + "TransactionId": 19169066, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 908, + "CustomerInfo": 69711742, + "PaymentType": "Cash" + }, + { + "Id": 15993, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2017-06-10T17:32:12", + "TransactionId": 29985849, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 277, + "CustomerInfo": 62960523, + "PaymentType": "Debit Card" + }, + { + "Id": 15994, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-11-06T13:35:11", + "TransactionId": 93797765, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 177, + "CustomerInfo": 75546758, + "PaymentType": "Cash" + }, + { + "Id": 15995, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2016-11-29T12:06:46", + "TransactionId": 60792255, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 72899334, + "PaymentType": "Debit Card" + }, + { + "Id": 15996, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2019-10-25T17:12:37", + "TransactionId": 4159584, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 37, + "CustomerInfo": 59744932, + "PaymentType": "Credit Card" + }, + { + "Id": 15997, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2016-10-05T12:06:46", + "TransactionId": 24816027, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 307, + "CustomerInfo": 37766749, + "PaymentType": "Debit Card" + }, + { + "Id": 15998, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2017-07-25T12:51:42", + "TransactionId": 11598072, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 38472432, + "PaymentType": "Cash" + }, + { + "Id": 15999, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2019-11-10T15:00:17", + "TransactionId": 13731544, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 488, + "CustomerInfo": 36649481, + "PaymentType": "Debit Card" + }, + { + "Id": 16000, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2019-03-11T16:38:12", + "TransactionId": 20920922, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 398, + "CustomerInfo": 50583145, + "PaymentType": "Debit Card" + }, + { + "Id": 16001, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2019-03-28T12:01:00", + "TransactionId": 30340089, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 941, + "CustomerInfo": 25863191, + "PaymentType": "Debit Card" + }, + { + "Id": 16002, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-06-13T17:57:24", + "TransactionId": 38335980, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 213, + "CustomerInfo": 94808551, + "PaymentType": "Credit Card" + }, + { + "Id": 16003, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2019-08-03T12:38:01", + "TransactionId": 37219237, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 443, + "CustomerInfo": 13410858, + "PaymentType": "Debit Card" + }, + { + "Id": 16004, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2017-07-17T12:38:01", + "TransactionId": 44774892, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 302, + "CustomerInfo": 88339281, + "PaymentType": "Debit Card" + }, + { + "Id": 16005, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-04-25T07:01:21", + "TransactionId": 5349546, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 909, + "CustomerInfo": 59243752, + "PaymentType": "Cash" + }, + { + "Id": 16006, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2018-11-14T15:19:52", + "TransactionId": 29984562, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 287, + "CustomerInfo": 72249507, + "PaymentType": "Credit Card" + }, + { + "Id": 16007, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2017-10-21T18:28:05", + "TransactionId": 47181619, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 814, + "CustomerInfo": 55718555, + "PaymentType": "Credit Card" + }, + { + "Id": 16008, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2019-08-21T17:21:16", + "TransactionId": 29480445, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 130, + "CustomerInfo": 899247, + "PaymentType": "Credit Card" + }, + { + "Id": 16009, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2017-07-22T09:59:54", + "TransactionId": 73372590, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 271, + "CustomerInfo": 62571325, + "PaymentType": "Credit Card" + }, + { + "Id": 16010, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2016-03-19T14:53:05", + "TransactionId": 5472636, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 937, + "CustomerInfo": 7635020, + "PaymentType": "Credit Card" + }, + { + "Id": 16011, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2017-09-30T19:43:58", + "TransactionId": 76384604, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 957, + "CustomerInfo": 26578348, + "PaymentType": "Cash" + }, + { + "Id": 16012, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2016-02-13T13:07:41", + "TransactionId": 88728794, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 117, + "CustomerInfo": 82080510, + "PaymentType": "Credit Card" + }, + { + "Id": 16013, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-09-28T17:20:07", + "TransactionId": 49800129, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 961, + "CustomerInfo": 57972087, + "PaymentType": "Debit Card" + }, + { + "Id": 16014, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2019-04-17T13:16:02", + "TransactionId": 11505079, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 341, + "CustomerInfo": 19747055, + "PaymentType": "Debit Card" + }, + { + "Id": 16015, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2017-12-16T17:54:32", + "TransactionId": 40278762, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 919, + "CustomerInfo": 24918359, + "PaymentType": "Debit Card" + }, + { + "Id": 16016, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2018-10-17T12:56:18", + "TransactionId": 14687668, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 834, + "CustomerInfo": 85242332, + "PaymentType": "Debit Card" + }, + { + "Id": 16017, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-05-11T14:51:30", + "TransactionId": 85255502, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 532, + "CustomerInfo": 14569373, + "PaymentType": "Debit Card" + }, + { + "Id": 16018, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2016-06-01T15:24:12", + "TransactionId": 6311305, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 437, + "CustomerInfo": 863621, + "PaymentType": "Credit Card" + }, + { + "Id": 16019, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2019-03-08T14:20:41", + "TransactionId": 3936244, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 825, + "CustomerInfo": 4346921, + "PaymentType": "Cash" + }, + { + "Id": 16020, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-02-25T10:01:12", + "TransactionId": 41696756, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 756, + "CustomerInfo": 91681719, + "PaymentType": "Debit Card" + }, + { + "Id": 16021, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2018-11-03T13:48:17", + "TransactionId": 82034185, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 660, + "CustomerInfo": 80516252, + "PaymentType": "Debit Card" + }, + { + "Id": 16022, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2017-09-05T19:57:39", + "TransactionId": 81730765, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 209, + "CustomerInfo": 17096016, + "PaymentType": "Cash" + }, + { + "Id": 16023, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2016-05-07T12:43:38", + "TransactionId": 1268298, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 132, + "CustomerInfo": 93359195, + "PaymentType": "Cash" + }, + { + "Id": 16024, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-09-01T18:12:14", + "TransactionId": 9532787, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 799, + "CustomerInfo": 57545807, + "PaymentType": "Credit Card" + }, + { + "Id": 16025, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2016-06-12T11:15:48", + "TransactionId": 33928546, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 611, + "CustomerInfo": 62360742, + "PaymentType": "Cash" + }, + { + "Id": 16026, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2019-11-23T07:59:57", + "TransactionId": 66089042, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 949, + "CustomerInfo": 24036781, + "PaymentType": "Credit Card" + }, + { + "Id": 16027, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2017-10-03T18:24:37", + "TransactionId": 64399491, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 882, + "CustomerInfo": 84342218, + "PaymentType": "Cash" + }, + { + "Id": 16028, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-02-04T17:20:24", + "TransactionId": 65322182, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 601, + "CustomerInfo": 1649966, + "PaymentType": "Cash" + }, + { + "Id": 16029, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2018-12-05T15:47:57", + "TransactionId": 84478159, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 674, + "CustomerInfo": 19930994, + "PaymentType": "Cash" + }, + { + "Id": 16030, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-06-27T12:45:22", + "TransactionId": 11541087, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 161, + "CustomerInfo": 48289066, + "PaymentType": "Debit Card" + }, + { + "Id": 16031, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2019-07-30T07:38:04", + "TransactionId": 38319539, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 90, + "CustomerInfo": 47755212, + "PaymentType": "Debit Card" + }, + { + "Id": 16032, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2017-09-10T10:04:22", + "TransactionId": 81959799, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 666, + "CustomerInfo": 21683751, + "PaymentType": "Credit Card" + }, + { + "Id": 16033, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2017-05-08T10:03:48", + "TransactionId": 17197142, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 100, + "CustomerInfo": 3831626, + "PaymentType": "Credit Card" + }, + { + "Id": 16034, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-08-31T18:09:56", + "TransactionId": 6716146, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 146, + "CustomerInfo": 78217737, + "PaymentType": "Cash" + }, + { + "Id": 16035, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-09-28T10:07:32", + "TransactionId": 91666958, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 336, + "CustomerInfo": 32561916, + "PaymentType": "Cash" + }, + { + "Id": 16036, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2018-09-29T12:50:50", + "TransactionId": 77510790, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 964, + "CustomerInfo": 44064977, + "PaymentType": "Credit Card" + }, + { + "Id": 16037, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-04-23T13:19:21", + "TransactionId": 42915776, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 675, + "CustomerInfo": 32249829, + "PaymentType": "Cash" + }, + { + "Id": 16038, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-02-16T09:47:48", + "TransactionId": 8739397, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 109, + "CustomerInfo": 85943624, + "PaymentType": "Credit Card" + }, + { + "Id": 16039, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2016-06-03T08:18:32", + "TransactionId": 25488206, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 271, + "CustomerInfo": 81176072, + "PaymentType": "Cash" + }, + { + "Id": 16040, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-04-14T15:52:42", + "TransactionId": 15988892, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 917, + "CustomerInfo": 99169811, + "PaymentType": "Cash" + }, + { + "Id": 16041, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-05-13T13:46:08", + "TransactionId": 24718227, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 308, + "CustomerInfo": 66951974, + "PaymentType": "Credit Card" + }, + { + "Id": 16042, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-11-12T10:22:57", + "TransactionId": 74079525, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 689, + "CustomerInfo": 22130652, + "PaymentType": "Cash" + }, + { + "Id": 16043, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2019-06-20T09:27:56", + "TransactionId": 90368175, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 924, + "CustomerInfo": 9768129, + "PaymentType": "Debit Card" + }, + { + "Id": 16044, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-3", + "TransactionDate": "2018-09-05T18:06:03", + "TransactionId": 82940881, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 308, + "CustomerInfo": 12232618, + "PaymentType": "Credit Card" + }, + { + "Id": 16045, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2016-11-03T11:53:31", + "TransactionId": 17856851, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 997, + "CustomerInfo": 45955400, + "PaymentType": "Credit Card" + }, + { + "Id": 16046, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-05-10T07:23:14", + "TransactionId": 23744057, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 614, + "CustomerInfo": 40026670, + "PaymentType": "Cash" + }, + { + "Id": 16047, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2017-08-12T11:21:24", + "TransactionId": 26566197, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 994, + "CustomerInfo": 70112917, + "PaymentType": "Cash" + }, + { + "Id": 16048, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2018-09-26T14:21:42", + "TransactionId": 6949336, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 423, + "CustomerInfo": 26105685, + "PaymentType": "Debit Card" + }, + { + "Id": 16049, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2018-01-17T09:31:06", + "TransactionId": 68471215, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 617, + "CustomerInfo": 76765210, + "PaymentType": "Credit Card" + }, + { + "Id": 16050, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-09-17T10:18:37", + "TransactionId": 62020874, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 969, + "CustomerInfo": 66882329, + "PaymentType": "Credit Card" + }, + { + "Id": 16051, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2017-11-27T13:41:14", + "TransactionId": 7719815, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 5814429, + "PaymentType": "Cash" + }, + { + "Id": 16052, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2017-04-01T08:29:37", + "TransactionId": 54161174, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 441, + "CustomerInfo": 76047438, + "PaymentType": "Debit Card" + }, + { + "Id": 16053, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2017-09-22T18:10:57", + "TransactionId": 35177709, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 68, + "CustomerInfo": 51359131, + "PaymentType": "Debit Card" + }, + { + "Id": 16054, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2018-10-20T10:18:37", + "TransactionId": 33984006, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 16, + "CustomerInfo": 6746058, + "PaymentType": "Credit Card" + }, + { + "Id": 16055, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-03-23T16:19:03", + "TransactionId": 96866001, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 971, + "CustomerInfo": 95268728, + "PaymentType": "Cash" + }, + { + "Id": 16056, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-03-21T09:33:59", + "TransactionId": 38958301, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 170, + "CustomerInfo": 76581900, + "PaymentType": "Cash" + }, + { + "Id": 16057, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-03-17T18:46:13", + "TransactionId": 93949557, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 337, + "CustomerInfo": 65937810, + "PaymentType": "Debit Card" + }, + { + "Id": 16058, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2019-01-16T14:41:34", + "TransactionId": 75019975, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 939, + "CustomerInfo": 56800000, + "PaymentType": "Cash" + }, + { + "Id": 16059, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2016-04-05T11:05:00", + "TransactionId": 8587504, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 68263743, + "PaymentType": "Credit Card" + }, + { + "Id": 16060, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-03-01T12:51:07", + "TransactionId": 36611136, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 82, + "CustomerInfo": 10766569, + "PaymentType": "Credit Card" + }, + { + "Id": 16061, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-10-25T19:59:31", + "TransactionId": 99989507, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 486, + "CustomerInfo": 34963228, + "PaymentType": "Debit Card" + }, + { + "Id": 16062, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2016-08-12T14:51:04", + "TransactionId": 85915656, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 291, + "CustomerInfo": 98267535, + "PaymentType": "Credit Card" + }, + { + "Id": 16063, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2019-12-01T07:55:55", + "TransactionId": 53460428, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 244, + "CustomerInfo": 85195175, + "PaymentType": "Cash" + }, + { + "Id": 16064, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2019-04-21T08:25:09", + "TransactionId": 62632828, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 662, + "CustomerInfo": 13560773, + "PaymentType": "Debit Card" + }, + { + "Id": 16065, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-02-28T13:44:07", + "TransactionId": 71499772, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 15, + "CustomerInfo": 34842143, + "PaymentType": "Credit Card" + }, + { + "Id": 16066, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-09-23T19:21:39", + "TransactionId": 89634053, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 704, + "CustomerInfo": 24124137, + "PaymentType": "Cash" + }, + { + "Id": 16067, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2018-12-28T18:04:11", + "TransactionId": 93534326, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 787, + "CustomerInfo": 35511385, + "PaymentType": "Credit Card" + }, + { + "Id": 16068, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-04-18T19:00:03", + "TransactionId": 63083460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 537, + "CustomerInfo": 92465583, + "PaymentType": "Cash" + }, + { + "Id": 16069, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-02-23T13:58:22", + "TransactionId": 19319438, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 749, + "CustomerInfo": 24351869, + "PaymentType": "Cash" + }, + { + "Id": 16070, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2017-04-28T16:26:41", + "TransactionId": 3880771, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 47, + "CustomerInfo": 67323556, + "PaymentType": "Cash" + }, + { + "Id": 16071, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-11-30T15:01:18", + "TransactionId": 13779832, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 898, + "CustomerInfo": 75061836, + "PaymentType": "Debit Card" + }, + { + "Id": 16072, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2016-08-29T14:46:11", + "TransactionId": 11281303, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 445, + "CustomerInfo": 83147026, + "PaymentType": "Credit Card" + }, + { + "Id": 16073, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2016-04-17T08:09:27", + "TransactionId": 20906319, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 407, + "CustomerInfo": 35389338, + "PaymentType": "Debit Card" + }, + { + "Id": 16074, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-03-30T08:02:07", + "TransactionId": 25004393, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 180, + "CustomerInfo": 61248103, + "PaymentType": "Cash" + }, + { + "Id": 16075, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2017-06-09T18:01:35", + "TransactionId": 73118984, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 774, + "CustomerInfo": 86808982, + "PaymentType": "Cash" + }, + { + "Id": 16076, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2016-12-22T08:56:24", + "TransactionId": 52724335, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 82863302, + "PaymentType": "Cash" + }, + { + "Id": 16077, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-03-25T08:13:29", + "TransactionId": 3889622, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 817, + "CustomerInfo": 81447352, + "PaymentType": "Credit Card" + }, + { + "Id": 16078, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-11-20T17:56:24", + "TransactionId": 81129433, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 392, + "CustomerInfo": 60151063, + "PaymentType": "Debit Card" + }, + { + "Id": 16079, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2017-08-08T11:25:09", + "TransactionId": 99195747, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 853, + "CustomerInfo": 77327819, + "PaymentType": "Credit Card" + }, + { + "Id": 16080, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2017-04-05T19:18:20", + "TransactionId": 24160653, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 453, + "CustomerInfo": 96069321, + "PaymentType": "Cash" + }, + { + "Id": 16081, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2017-07-29T19:37:47", + "TransactionId": 32648491, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 754, + "CustomerInfo": 40690736, + "PaymentType": "Credit Card" + }, + { + "Id": 16082, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-12-19T14:31:38", + "TransactionId": 56234125, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 571, + "CustomerInfo": 93559821, + "PaymentType": "Debit Card" + }, + { + "Id": 16083, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2016-11-10T13:26:24", + "TransactionId": 2378349, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 803, + "CustomerInfo": 19995614, + "PaymentType": "Credit Card" + }, + { + "Id": 16084, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-01-27T10:01:47", + "TransactionId": 33717179, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 442, + "CustomerInfo": 79129131, + "PaymentType": "Debit Card" + }, + { + "Id": 16085, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-04-11T09:04:11", + "TransactionId": 52813270, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 121, + "CustomerInfo": 62527443, + "PaymentType": "Debit Card" + }, + { + "Id": 16086, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-06-09T10:33:36", + "TransactionId": 6485929, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 99, + "CustomerInfo": 50764909, + "PaymentType": "Debit Card" + }, + { + "Id": 16087, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2016-09-05T09:54:17", + "TransactionId": 22865827, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 148, + "CustomerInfo": 81606527, + "PaymentType": "Cash" + }, + { + "Id": 16088, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-08-02T13:43:49", + "TransactionId": 11897351, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 852, + "CustomerInfo": 68848740, + "PaymentType": "Debit Card" + }, + { + "Id": 16089, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2019-06-22T10:21:30", + "TransactionId": 98230737, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 888, + "CustomerInfo": 25740887, + "PaymentType": "Cash" + }, + { + "Id": 16090, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-08-19T09:02:10", + "TransactionId": 34379570, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 512, + "CustomerInfo": 60145157, + "PaymentType": "Debit Card" + }, + { + "Id": 16091, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2018-07-28T17:48:20", + "TransactionId": 85897974, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 830, + "CustomerInfo": 14085327, + "PaymentType": "Debit Card" + }, + { + "Id": 16092, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2019-09-19T13:23:23", + "TransactionId": 6938555, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 606, + "CustomerInfo": 88324028, + "PaymentType": "Cash" + }, + { + "Id": 16093, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-10-02T11:45:36", + "TransactionId": 69992774, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 573, + "CustomerInfo": 20890671, + "PaymentType": "Cash" + }, + { + "Id": 16094, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2018-05-19T14:08:01", + "TransactionId": 68044471, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 809, + "CustomerInfo": 37630451, + "PaymentType": "Cash" + }, + { + "Id": 16095, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-06-23T13:21:30", + "TransactionId": 21995971, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 711, + "CustomerInfo": 57106938, + "PaymentType": "Credit Card" + }, + { + "Id": 16096, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-05-14T17:38:33", + "TransactionId": 86364430, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 20354244, + "PaymentType": "Debit Card" + }, + { + "Id": 16097, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-10-13T07:04:39", + "TransactionId": 42919413, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 808, + "CustomerInfo": 83136762, + "PaymentType": "Debit Card" + }, + { + "Id": 16098, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-09-14T08:36:58", + "TransactionId": 75641787, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 274, + "CustomerInfo": 52964995, + "PaymentType": "Cash" + }, + { + "Id": 16099, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2017-03-29T11:02:33", + "TransactionId": 34420333, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 123, + "CustomerInfo": 33364907, + "PaymentType": "Debit Card" + }, + { + "Id": 16100, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2018-03-22T12:09:56", + "TransactionId": 91521253, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 787, + "CustomerInfo": 90058238, + "PaymentType": "Cash" + }, + { + "Id": 16101, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-07-12T12:04:36", + "TransactionId": 47860039, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 692, + "CustomerInfo": 60690129, + "PaymentType": "Debit Card" + }, + { + "Id": 16102, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2016-12-27T18:14:24", + "TransactionId": 53521790, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 212, + "CustomerInfo": 14508370, + "PaymentType": "Cash" + }, + { + "Id": 16103, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2017-05-09T15:59:37", + "TransactionId": 11480076, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 484, + "CustomerInfo": 24502988, + "PaymentType": "Credit Card" + }, + { + "Id": 16104, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2019-09-26T09:00:00", + "TransactionId": 84462236, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 577, + "CustomerInfo": 84416111, + "PaymentType": "Debit Card" + }, + { + "Id": 16105, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2016-02-11T13:35:54", + "TransactionId": 98939358, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 871, + "CustomerInfo": 16154172, + "PaymentType": "Debit Card" + }, + { + "Id": 16106, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-02-10T11:19:49", + "TransactionId": 55707603, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 94088544, + "PaymentType": "Cash" + }, + { + "Id": 16107, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2016-06-19T17:40:42", + "TransactionId": 90867374, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 841, + "CustomerInfo": 13099377, + "PaymentType": "Credit Card" + }, + { + "Id": 16108, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2016-12-29T13:25:58", + "TransactionId": 88652624, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 17, + "CustomerInfo": 48111458, + "PaymentType": "Cash" + }, + { + "Id": 16109, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2018-04-11T19:12:43", + "TransactionId": 54344138, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 363, + "CustomerInfo": 53377571, + "PaymentType": "Cash" + }, + { + "Id": 16110, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-08-18T08:13:12", + "TransactionId": 10262697, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 79189217, + "PaymentType": "Credit Card" + }, + { + "Id": 16111, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-06-02T15:08:38", + "TransactionId": 3852537, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 613, + "CustomerInfo": 42894900, + "PaymentType": "Debit Card" + }, + { + "Id": 16112, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2017-01-29T18:08:38", + "TransactionId": 83140447, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 522, + "CustomerInfo": 6057000, + "PaymentType": "Credit Card" + }, + { + "Id": 16113, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-08-12T16:55:12", + "TransactionId": 36088222, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 266, + "CustomerInfo": 74684010, + "PaymentType": "Credit Card" + }, + { + "Id": 16114, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2018-06-12T13:34:19", + "TransactionId": 31254809, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 511, + "CustomerInfo": 49165711, + "PaymentType": "Credit Card" + }, + { + "Id": 16115, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2018-12-28T09:47:57", + "TransactionId": 42169979, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 819, + "CustomerInfo": 4659400, + "PaymentType": "Cash" + }, + { + "Id": 16116, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2018-10-05T15:54:00", + "TransactionId": 38610492, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 2, + "CustomerInfo": 61026557, + "PaymentType": "Cash" + }, + { + "Id": 16117, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2016-06-02T08:54:40", + "TransactionId": 7133240, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 984, + "CustomerInfo": 10873886, + "PaymentType": "Credit Card" + }, + { + "Id": 16118, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-12-19T12:06:55", + "TransactionId": 47645748, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 88, + "CustomerInfo": 19077731, + "PaymentType": "Debit Card" + }, + { + "Id": 16119, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-05-22T07:16:19", + "TransactionId": 98104204, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 349, + "CustomerInfo": 2478230, + "PaymentType": "Credit Card" + }, + { + "Id": 16120, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-09-04T17:14:04", + "TransactionId": 71913327, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 715, + "CustomerInfo": 43510484, + "PaymentType": "Cash" + }, + { + "Id": 16121, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-04-07T12:31:41", + "TransactionId": 24286836, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 239, + "CustomerInfo": 2159860, + "PaymentType": "Cash" + }, + { + "Id": 16122, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2018-11-06T18:30:23", + "TransactionId": 83493582, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 663, + "CustomerInfo": 63693128, + "PaymentType": "Credit Card" + }, + { + "Id": 16123, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2018-02-10T16:28:16", + "TransactionId": 36387509, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 222, + "CustomerInfo": 91022643, + "PaymentType": "Cash" + }, + { + "Id": 16124, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2019-07-31T13:31:52", + "TransactionId": 26667129, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 837, + "CustomerInfo": 4724521, + "PaymentType": "Credit Card" + }, + { + "Id": 16125, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-10-20T18:04:02", + "TransactionId": 7078165, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 20, + "CustomerInfo": 40178213, + "PaymentType": "Debit Card" + }, + { + "Id": 16126, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2016-06-15T09:37:44", + "TransactionId": 37137368, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 230, + "CustomerInfo": 92079410, + "PaymentType": "Cash" + }, + { + "Id": 16127, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2017-02-17T13:35:54", + "TransactionId": 93925173, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 537, + "CustomerInfo": 38438059, + "PaymentType": "Credit Card" + }, + { + "Id": 16128, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2017-02-15T07:23:57", + "TransactionId": 58003050, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 968, + "CustomerInfo": 83232059, + "PaymentType": "Cash" + }, + { + "Id": 16129, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2018-03-19T09:59:02", + "TransactionId": 11500856, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 226, + "CustomerInfo": 64914830, + "PaymentType": "Credit Card" + }, + { + "Id": 16130, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2018-04-05T09:28:22", + "TransactionId": 59435298, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 468, + "CustomerInfo": 45630610, + "PaymentType": "Credit Card" + }, + { + "Id": 16131, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2018-10-19T19:13:52", + "TransactionId": 20978998, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 616, + "CustomerInfo": 71364864, + "PaymentType": "Debit Card" + }, + { + "Id": 16132, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-11-11T13:48:17", + "TransactionId": 37588482, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 938, + "CustomerInfo": 86692506, + "PaymentType": "Cash" + }, + { + "Id": 16133, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-04-01T14:14:30", + "TransactionId": 77638120, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 21940728, + "PaymentType": "Debit Card" + }, + { + "Id": 16134, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2016-08-30T08:41:00", + "TransactionId": 23394951, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 209, + "CustomerInfo": 72667235, + "PaymentType": "Debit Card" + }, + { + "Id": 16135, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-08-30T12:25:21", + "TransactionId": 28172762, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 90, + "CustomerInfo": 49673424, + "PaymentType": "Debit Card" + }, + { + "Id": 16136, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2017-07-21T11:45:10", + "TransactionId": 83437850, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 38, + "CustomerInfo": 62673225, + "PaymentType": "Cash" + }, + { + "Id": 16137, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2018-12-26T16:51:53", + "TransactionId": 4309455, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 915, + "CustomerInfo": 65718240, + "PaymentType": "Cash" + }, + { + "Id": 16138, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-03-08T17:31:38", + "TransactionId": 19191858, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 657, + "CustomerInfo": 83524745, + "PaymentType": "Cash" + }, + { + "Id": 16139, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2016-05-09T15:38:18", + "TransactionId": 31502895, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 605, + "CustomerInfo": 38481290, + "PaymentType": "Credit Card" + }, + { + "Id": 16140, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2017-02-20T10:39:22", + "TransactionId": 60075965, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 903, + "CustomerInfo": 9792822, + "PaymentType": "Debit Card" + }, + { + "Id": 16141, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-04-15T18:57:19", + "TransactionId": 87591080, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 89, + "CustomerInfo": 55115153, + "PaymentType": "Debit Card" + }, + { + "Id": 16142, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-02-16T16:36:55", + "TransactionId": 53564043, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 620, + "CustomerInfo": 17600877, + "PaymentType": "Cash" + }, + { + "Id": 16143, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-10-16T08:46:54", + "TransactionId": 70219242, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 62, + "CustomerInfo": 57327992, + "PaymentType": "Debit Card" + }, + { + "Id": 16144, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2018-04-29T16:22:48", + "TransactionId": 37636879, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 696, + "CustomerInfo": 23229690, + "PaymentType": "Debit Card" + }, + { + "Id": 16145, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-09-13T16:50:27", + "TransactionId": 69469842, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 838, + "CustomerInfo": 5805388, + "PaymentType": "Debit Card" + }, + { + "Id": 16146, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2016-12-03T07:34:54", + "TransactionId": 27173514, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 718, + "CustomerInfo": 86484434, + "PaymentType": "Cash" + }, + { + "Id": 16147, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-02-04T07:59:23", + "TransactionId": 13693073, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 725, + "CustomerInfo": 97274714, + "PaymentType": "Cash" + }, + { + "Id": 16148, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-4", + "TransactionDate": "2017-05-13T16:50:44", + "TransactionId": 19736621, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 441, + "CustomerInfo": 65595221, + "PaymentType": "Cash" + }, + { + "Id": 16149, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2017-03-11T07:55:47", + "TransactionId": 93520115, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 476, + "CustomerInfo": 99854530, + "PaymentType": "Cash" + }, + { + "Id": 16150, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2016-05-18T08:52:39", + "TransactionId": 66820013, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 945, + "CustomerInfo": 2730193, + "PaymentType": "Debit Card" + }, + { + "Id": 16151, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-09-05T11:07:00", + "TransactionId": 48522517, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 392, + "CustomerInfo": 93560854, + "PaymentType": "Cash" + }, + { + "Id": 16152, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-09-17T13:22:22", + "TransactionId": 78146000, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 220, + "CustomerInfo": 33113695, + "PaymentType": "Credit Card" + }, + { + "Id": 16153, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-10-31T07:22:31", + "TransactionId": 48084161, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 23, + "CustomerInfo": 76390390, + "PaymentType": "Credit Card" + }, + { + "Id": 16154, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2019-10-20T10:38:04", + "TransactionId": 57085321, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 214, + "CustomerInfo": 21835426, + "PaymentType": "Cash" + }, + { + "Id": 16155, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2018-11-10T07:11:43", + "TransactionId": 9766362, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 213, + "CustomerInfo": 13049372, + "PaymentType": "Credit Card" + }, + { + "Id": 16156, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-06-27T17:14:12", + "TransactionId": 16460347, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 140, + "CustomerInfo": 32986425, + "PaymentType": "Cash" + }, + { + "Id": 16157, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-05-23T09:45:04", + "TransactionId": 34398780, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 456, + "CustomerInfo": 52132220, + "PaymentType": "Credit Card" + }, + { + "Id": 16158, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2016-06-16T15:30:58", + "TransactionId": 70776127, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 841, + "CustomerInfo": 89131472, + "PaymentType": "Cash" + }, + { + "Id": 16159, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2018-01-17T15:35:25", + "TransactionId": 85355711, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 346, + "CustomerInfo": 43981876, + "PaymentType": "Cash" + }, + { + "Id": 16160, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-11-22T14:48:37", + "TransactionId": 19412504, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 736, + "CustomerInfo": 65427239, + "PaymentType": "Debit Card" + }, + { + "Id": 16161, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2018-11-01T19:40:22", + "TransactionId": 2909404, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 899, + "CustomerInfo": 6127047, + "PaymentType": "Debit Card" + }, + { + "Id": 16162, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-01-25T16:42:14", + "TransactionId": 17772222, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 952, + "CustomerInfo": 94509509, + "PaymentType": "Debit Card" + }, + { + "Id": 16163, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2016-04-03T12:43:12", + "TransactionId": 20576111, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 279, + "CustomerInfo": 79553976, + "PaymentType": "Credit Card" + }, + { + "Id": 16164, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2017-10-07T13:01:21", + "TransactionId": 53220242, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 924, + "CustomerInfo": 33928507, + "PaymentType": "Debit Card" + }, + { + "Id": 16165, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2016-08-31T10:32:27", + "TransactionId": 46084339, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 5, + "CustomerInfo": 62734402, + "PaymentType": "Credit Card" + }, + { + "Id": 16166, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2016-05-23T14:31:29", + "TransactionId": 26824470, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 232, + "CustomerInfo": 52791645, + "PaymentType": "Credit Card" + }, + { + "Id": 16167, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2018-05-28T15:39:01", + "TransactionId": 27297963, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 548, + "CustomerInfo": 31071834, + "PaymentType": "Debit Card" + }, + { + "Id": 16168, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2018-11-07T14:17:05", + "TransactionId": 13665799, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 497, + "CustomerInfo": 61101459, + "PaymentType": "Credit Card" + }, + { + "Id": 16169, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2017-12-02T09:57:36", + "TransactionId": 81995015, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 241, + "CustomerInfo": 82043553, + "PaymentType": "Credit Card" + }, + { + "Id": 16170, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2018-11-22T19:54:12", + "TransactionId": 11571884, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 71, + "CustomerInfo": 6192104, + "PaymentType": "Cash" + }, + { + "Id": 16171, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2018-02-22T16:23:23", + "TransactionId": 79167938, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 23, + "CustomerInfo": 48132060, + "PaymentType": "Cash" + }, + { + "Id": 16172, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-03-07T12:54:43", + "TransactionId": 8804672, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 774, + "CustomerInfo": 41468354, + "PaymentType": "Cash" + }, + { + "Id": 16173, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2017-03-02T09:47:14", + "TransactionId": 72244441, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 808, + "CustomerInfo": 45172752, + "PaymentType": "Cash" + }, + { + "Id": 16174, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-08-07T08:18:58", + "TransactionId": 51534324, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 670, + "CustomerInfo": 46864385, + "PaymentType": "Cash" + }, + { + "Id": 16175, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2018-05-13T16:23:31", + "TransactionId": 52656630, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 511, + "CustomerInfo": 4578049, + "PaymentType": "Credit Card" + }, + { + "Id": 16176, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2017-04-21T08:27:53", + "TransactionId": 10117527, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 751, + "CustomerInfo": 37885420, + "PaymentType": "Cash" + }, + { + "Id": 16177, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2019-04-27T16:07:32", + "TransactionId": 28720038, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 75838724, + "PaymentType": "Debit Card" + }, + { + "Id": 16178, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-12-28T13:42:58", + "TransactionId": 27035066, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 33289060, + "PaymentType": "Cash" + }, + { + "Id": 16179, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2016-12-03T19:37:03", + "TransactionId": 53077620, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 631, + "CustomerInfo": 27796011, + "PaymentType": "Cash" + }, + { + "Id": 16180, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2017-04-30T19:53:20", + "TransactionId": 32613961, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 323, + "CustomerInfo": 9686749, + "PaymentType": "Cash" + }, + { + "Id": 16181, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2019-12-19T08:56:15", + "TransactionId": 83365494, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 716, + "CustomerInfo": 28558185, + "PaymentType": "Debit Card" + }, + { + "Id": 16182, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-03-11T08:49:47", + "TransactionId": 76011740, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 889, + "CustomerInfo": 85265397, + "PaymentType": "Debit Card" + }, + { + "Id": 16183, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2019-02-02T17:49:29", + "TransactionId": 96823370, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 104, + "CustomerInfo": 85608267, + "PaymentType": "Debit Card" + }, + { + "Id": 16184, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-10-25T15:25:38", + "TransactionId": 13025362, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 870, + "CustomerInfo": 33649273, + "PaymentType": "Debit Card" + }, + { + "Id": 16185, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-04-13T17:32:12", + "TransactionId": 21724455, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 416, + "CustomerInfo": 56263028, + "PaymentType": "Debit Card" + }, + { + "Id": 16186, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2018-09-23T14:48:03", + "TransactionId": 34398238, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 85, + "CustomerInfo": 1826312, + "PaymentType": "Credit Card" + }, + { + "Id": 16187, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2018-09-13T17:40:42", + "TransactionId": 5625600, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 164, + "CustomerInfo": 84184462, + "PaymentType": "Cash" + }, + { + "Id": 16188, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2016-07-16T13:00:03", + "TransactionId": 51476500, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 806, + "CustomerInfo": 12257864, + "PaymentType": "Credit Card" + }, + { + "Id": 16189, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-10-01T18:59:20", + "TransactionId": 86701686, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 882, + "CustomerInfo": 98945489, + "PaymentType": "Credit Card" + }, + { + "Id": 16190, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2018-06-08T15:19:35", + "TransactionId": 19367577, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 56, + "CustomerInfo": 94254091, + "PaymentType": "Cash" + }, + { + "Id": 16191, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2017-12-03T10:12:43", + "TransactionId": 90417309, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 424, + "CustomerInfo": 62741038, + "PaymentType": "Cash" + }, + { + "Id": 16192, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2016-12-31T12:48:40", + "TransactionId": 84235379, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 276, + "CustomerInfo": 4686961, + "PaymentType": "Credit Card" + }, + { + "Id": 16193, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-07-08T09:05:46", + "TransactionId": 25626307, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 922, + "CustomerInfo": 37861885, + "PaymentType": "Cash" + }, + { + "Id": 16194, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2017-06-28T10:23:40", + "TransactionId": 8904603, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 637, + "CustomerInfo": 30952186, + "PaymentType": "Cash" + }, + { + "Id": 16195, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2016-08-27T14:13:12", + "TransactionId": 98245340, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 8, + "CustomerInfo": 7862375, + "PaymentType": "Credit Card" + }, + { + "Id": 16196, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-11-24T14:42:26", + "TransactionId": 955497, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 619, + "CustomerInfo": 33943292, + "PaymentType": "Credit Card" + }, + { + "Id": 16197, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2017-10-25T08:19:49", + "TransactionId": 36276982, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 485, + "CustomerInfo": 66986560, + "PaymentType": "Debit Card" + }, + { + "Id": 16198, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2018-02-26T12:54:17", + "TransactionId": 52804549, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 988, + "CustomerInfo": 63096094, + "PaymentType": "Debit Card" + }, + { + "Id": 16199, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-01-22T13:09:24", + "TransactionId": 7472568, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 286, + "CustomerInfo": 96157162, + "PaymentType": "Debit Card" + }, + { + "Id": 16200, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2016-07-12T15:51:50", + "TransactionId": 73197506, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 777, + "CustomerInfo": 8084933, + "PaymentType": "Credit Card" + }, + { + "Id": 16201, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-03-08T18:35:34", + "TransactionId": 87834117, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 438, + "CustomerInfo": 18336221, + "PaymentType": "Cash" + }, + { + "Id": 16202, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2019-03-11T15:00:09", + "TransactionId": 25188761, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 786, + "CustomerInfo": 51725423, + "PaymentType": "Cash" + }, + { + "Id": 16203, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-02-27T12:45:04", + "TransactionId": 96968248, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 173, + "CustomerInfo": 63610284, + "PaymentType": "Debit Card" + }, + { + "Id": 16204, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2017-03-23T08:15:48", + "TransactionId": 80173714, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 429, + "CustomerInfo": 59385053, + "PaymentType": "Cash" + }, + { + "Id": 16205, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2017-10-30T16:32:44", + "TransactionId": 90323447, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 27, + "CustomerInfo": 4802517, + "PaymentType": "Cash" + }, + { + "Id": 16206, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-07-18T14:46:28", + "TransactionId": 21306828, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 152, + "CustomerInfo": 42698312, + "PaymentType": "Debit Card" + }, + { + "Id": 16207, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2017-04-18T13:07:24", + "TransactionId": 4539071, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 191, + "CustomerInfo": 47053952, + "PaymentType": "Credit Card" + }, + { + "Id": 16208, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2017-07-05T07:05:14", + "TransactionId": 2805463, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 997, + "CustomerInfo": 58598272, + "PaymentType": "Cash" + }, + { + "Id": 16209, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2018-06-21T10:02:21", + "TransactionId": 45484634, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 874, + "CustomerInfo": 68011899, + "PaymentType": "Debit Card" + }, + { + "Id": 16210, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2017-07-04T09:25:29", + "TransactionId": 65934136, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 462, + "CustomerInfo": 42843350, + "PaymentType": "Cash" + }, + { + "Id": 16211, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2018-06-05T13:16:02", + "TransactionId": 60381391, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 992, + "CustomerInfo": 19826044, + "PaymentType": "Credit Card" + }, + { + "Id": 16212, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2019-08-25T15:58:02", + "TransactionId": 28663151, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 335, + "CustomerInfo": 25428369, + "PaymentType": "Cash" + }, + { + "Id": 16213, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2018-08-14T12:50:33", + "TransactionId": 21855300, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 432, + "CustomerInfo": 27509072, + "PaymentType": "Credit Card" + }, + { + "Id": 16214, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2017-10-05T19:09:33", + "TransactionId": 52730504, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 614, + "CustomerInfo": 13215922, + "PaymentType": "Cash" + }, + { + "Id": 16215, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-11-26T10:24:58", + "TransactionId": 79106344, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 519, + "CustomerInfo": 99075213, + "PaymentType": "Cash" + }, + { + "Id": 16216, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2018-04-23T19:11:51", + "TransactionId": 29433932, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 80521347, + "PaymentType": "Cash" + }, + { + "Id": 16217, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2019-05-04T17:55:24", + "TransactionId": 51491930, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 787, + "CustomerInfo": 68500636, + "PaymentType": "Debit Card" + }, + { + "Id": 16218, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2016-10-11T14:44:01", + "TransactionId": 17925726, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 664, + "CustomerInfo": 72361666, + "PaymentType": "Cash" + }, + { + "Id": 16219, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-01-15T10:37:29", + "TransactionId": 23335719, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 797, + "CustomerInfo": 58800373, + "PaymentType": "Credit Card" + }, + { + "Id": 16220, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-09-21T10:19:47", + "TransactionId": 43708141, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 545, + "CustomerInfo": 45164438, + "PaymentType": "Debit Card" + }, + { + "Id": 16221, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-02-16T09:07:55", + "TransactionId": 93177856, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 104, + "CustomerInfo": 4091276, + "PaymentType": "Cash" + }, + { + "Id": 16222, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2016-11-06T17:20:07", + "TransactionId": 67690412, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 748, + "CustomerInfo": 30358570, + "PaymentType": "Credit Card" + }, + { + "Id": 16223, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2016-05-24T08:54:23", + "TransactionId": 99681316, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 652, + "CustomerInfo": 43899757, + "PaymentType": "Debit Card" + }, + { + "Id": 16224, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2017-08-01T15:49:24", + "TransactionId": 57327682, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 588, + "CustomerInfo": 95489053, + "PaymentType": "Cash" + }, + { + "Id": 16225, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-04-07T19:30:35", + "TransactionId": 95310068, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 596, + "CustomerInfo": 90660201, + "PaymentType": "Cash" + }, + { + "Id": 16226, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2016-09-29T16:42:23", + "TransactionId": 86700528, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 548, + "CustomerInfo": 43927076, + "PaymentType": "Credit Card" + }, + { + "Id": 16227, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2017-04-27T13:25:41", + "TransactionId": 78050597, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 688, + "CustomerInfo": 62138116, + "PaymentType": "Credit Card" + }, + { + "Id": 16228, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2016-01-03T14:27:19", + "TransactionId": 20293675, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 964, + "CustomerInfo": 84493441, + "PaymentType": "Credit Card" + }, + { + "Id": 16229, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2018-01-14T07:17:37", + "TransactionId": 61632584, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 442, + "CustomerInfo": 95782370, + "PaymentType": "Debit Card" + }, + { + "Id": 16230, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2018-09-02T09:53:17", + "TransactionId": 38364425, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 120, + "CustomerInfo": 24151187, + "PaymentType": "Debit Card" + }, + { + "Id": 16231, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2017-02-15T09:24:46", + "TransactionId": 46013209, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 635, + "CustomerInfo": 32076037, + "PaymentType": "Debit Card" + }, + { + "Id": 16232, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-06-06T15:24:20", + "TransactionId": 94554767, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 187, + "CustomerInfo": 16151100, + "PaymentType": "Debit Card" + }, + { + "Id": 16233, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-01-13T18:51:16", + "TransactionId": 42017352, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 373, + "CustomerInfo": 89982286, + "PaymentType": "Cash" + }, + { + "Id": 16234, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-08-30T13:48:09", + "TransactionId": 94620665, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 240, + "CustomerInfo": 82176201, + "PaymentType": "Debit Card" + }, + { + "Id": 16235, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-08-26T11:20:07", + "TransactionId": 34006417, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 756, + "CustomerInfo": 51769599, + "PaymentType": "Debit Card" + }, + { + "Id": 16236, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2016-12-23T09:08:56", + "TransactionId": 81113745, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 390, + "CustomerInfo": 97828291, + "PaymentType": "Credit Card" + }, + { + "Id": 16237, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-07-18T14:51:04", + "TransactionId": 11403076, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 367, + "CustomerInfo": 22595154, + "PaymentType": "Cash" + }, + { + "Id": 16238, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2018-06-19T16:24:23", + "TransactionId": 4685749, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 319, + "CustomerInfo": 14934611, + "PaymentType": "Credit Card" + }, + { + "Id": 16239, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2018-07-01T07:05:31", + "TransactionId": 91583975, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 934, + "CustomerInfo": 25731231, + "PaymentType": "Credit Card" + }, + { + "Id": 16240, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2019-03-27T17:23:08", + "TransactionId": 23269957, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 402, + "CustomerInfo": 77238403, + "PaymentType": "Cash" + }, + { + "Id": 16241, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-12-21T15:01:18", + "TransactionId": 16670287, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 562, + "CustomerInfo": 53341477, + "PaymentType": "Debit Card" + }, + { + "Id": 16242, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-12-20T14:08:53", + "TransactionId": 96567061, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 267, + "CustomerInfo": 83693372, + "PaymentType": "Cash" + }, + { + "Id": 16243, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-04-11T13:21:22", + "TransactionId": 60864355, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 357, + "CustomerInfo": 70022850, + "PaymentType": "Cash" + }, + { + "Id": 16244, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2016-08-05T17:26:53", + "TransactionId": 42884808, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 126, + "CustomerInfo": 71331123, + "PaymentType": "Credit Card" + }, + { + "Id": 16245, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2016-08-28T13:01:03", + "TransactionId": 5880485, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 185, + "CustomerInfo": 72285157, + "PaymentType": "Debit Card" + }, + { + "Id": 16246, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2018-04-24T13:09:24", + "TransactionId": 62942567, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 59, + "CustomerInfo": 42242969, + "PaymentType": "Credit Card" + }, + { + "Id": 16247, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-07-24T09:01:35", + "TransactionId": 81840940, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 229, + "CustomerInfo": 16812614, + "PaymentType": "Cash" + }, + { + "Id": 16248, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-08-26T15:46:05", + "TransactionId": 64967685, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 319, + "CustomerInfo": 75681666, + "PaymentType": "Debit Card" + }, + { + "Id": 16249, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2019-07-17T18:33:24", + "TransactionId": 25385279, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 569, + "CustomerInfo": 92304626, + "PaymentType": "Credit Card" + }, + { + "Id": 16250, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2019-04-12T08:33:39", + "TransactionId": 66979557, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 46, + "CustomerInfo": 33702058, + "PaymentType": "Credit Card" + }, + { + "Id": 16251, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-12-24T16:29:00", + "TransactionId": 43771867, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 698, + "CustomerInfo": 29252397, + "PaymentType": "Credit Card" + }, + { + "Id": 16252, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2019-11-30T12:44:56", + "TransactionId": 96970365, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 897, + "CustomerInfo": 15380963, + "PaymentType": "Credit Card" + }, + { + "Id": 16253, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2018-11-01T12:21:27", + "TransactionId": 63655493, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 509, + "CustomerInfo": 11858663, + "PaymentType": "Cash" + }, + { + "Id": 16254, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-01-11T18:19:35", + "TransactionId": 82234192, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 23, + "CustomerInfo": 15180151, + "PaymentType": "Debit Card" + }, + { + "Id": 16255, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-01-14T15:45:56", + "TransactionId": 54771618, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 817, + "CustomerInfo": 38987987, + "PaymentType": "Cash" + }, + { + "Id": 16256, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-06-10T16:18:03", + "TransactionId": 98915690, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 660, + "CustomerInfo": 95384139, + "PaymentType": "Cash" + }, + { + "Id": 16257, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-06-21T11:59:08", + "TransactionId": 36572164, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 976, + "CustomerInfo": 82604400, + "PaymentType": "Cash" + }, + { + "Id": 16258, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2018-09-26T09:18:26", + "TransactionId": 90634101, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 562, + "CustomerInfo": 80470857, + "PaymentType": "Cash" + }, + { + "Id": 16259, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-09-28T10:16:54", + "TransactionId": 54583318, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 888, + "CustomerInfo": 62511869, + "PaymentType": "Debit Card" + }, + { + "Id": 16260, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-06-07T18:33:07", + "TransactionId": 29939204, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 219, + "CustomerInfo": 270171, + "PaymentType": "Debit Card" + }, + { + "Id": 16261, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-08-15T14:09:27", + "TransactionId": 30702215, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 469, + "CustomerInfo": 13227968, + "PaymentType": "Cash" + }, + { + "Id": 16262, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2019-01-29T15:22:02", + "TransactionId": 11792261, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 798, + "CustomerInfo": 10977159, + "PaymentType": "Credit Card" + }, + { + "Id": 16263, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-04-03T18:37:00", + "TransactionId": 11805134, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 241, + "CustomerInfo": 28451086, + "PaymentType": "Cash" + }, + { + "Id": 16264, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-08-22T16:11:25", + "TransactionId": 55649731, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 661, + "CustomerInfo": 31537378, + "PaymentType": "Debit Card" + }, + { + "Id": 16265, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2017-08-08T14:08:10", + "TransactionId": 61241026, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 117, + "CustomerInfo": 22511483, + "PaymentType": "Debit Card" + }, + { + "Id": 16266, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2016-10-19T15:29:05", + "TransactionId": 77536631, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 922, + "CustomerInfo": 70514347, + "PaymentType": "Credit Card" + }, + { + "Id": 16267, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-04-25T13:02:04", + "TransactionId": 66986200, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 614, + "CustomerInfo": 10538565, + "PaymentType": "Cash" + }, + { + "Id": 16268, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2019-07-04T19:15:10", + "TransactionId": 15506189, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 759, + "CustomerInfo": 44478279, + "PaymentType": "Cash" + }, + { + "Id": 16269, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2019-01-09T07:48:52", + "TransactionId": 37451899, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 645, + "CustomerInfo": 30767545, + "PaymentType": "Cash" + }, + { + "Id": 16270, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-03-22T07:03:04", + "TransactionId": 89534049, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 223, + "CustomerInfo": 44986875, + "PaymentType": "Cash" + }, + { + "Id": 16271, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2018-05-13T10:24:40", + "TransactionId": 3497587, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 213, + "CustomerInfo": 67995168, + "PaymentType": "Credit Card" + }, + { + "Id": 16272, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-05-28T13:02:12", + "TransactionId": 42180710, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 824, + "CustomerInfo": 19207954, + "PaymentType": "Cash" + }, + { + "Id": 16273, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2019-12-06T18:44:21", + "TransactionId": 51523164, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 14, + "CustomerInfo": 75935451, + "PaymentType": "Credit Card" + }, + { + "Id": 16274, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2018-06-08T12:58:11", + "TransactionId": 9832896, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 484, + "CustomerInfo": 8253078, + "PaymentType": "Debit Card" + }, + { + "Id": 16275, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2018-04-22T16:44:50", + "TransactionId": 46647977, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 818, + "CustomerInfo": 70628687, + "PaymentType": "Credit Card" + }, + { + "Id": 16276, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2017-10-15T10:17:46", + "TransactionId": 23312354, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 383, + "CustomerInfo": 93636681, + "PaymentType": "Credit Card" + }, + { + "Id": 16277, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2016-10-13T11:38:41", + "TransactionId": 90559826, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 663, + "CustomerInfo": 26696604, + "PaymentType": "Debit Card" + }, + { + "Id": 16278, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2019-06-06T16:14:53", + "TransactionId": 94019231, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 913, + "CustomerInfo": 99770758, + "PaymentType": "Cash" + }, + { + "Id": 16279, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-1", + "TransactionDate": "2019-09-04T15:19:09", + "TransactionId": 86749210, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 222, + "CustomerInfo": 50884446, + "PaymentType": "Debit Card" + }, + { + "Id": 16280, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-09-05T07:10:51", + "TransactionId": 84060122, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 757, + "CustomerInfo": 58276728, + "PaymentType": "Cash" + }, + { + "Id": 16281, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2017-12-15T08:34:22", + "TransactionId": 28529853, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 377, + "CustomerInfo": 9362030, + "PaymentType": "Credit Card" + }, + { + "Id": 16282, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-05-13T19:15:45", + "TransactionId": 10045149, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 898, + "CustomerInfo": 19374603, + "PaymentType": "Debit Card" + }, + { + "Id": 16283, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2018-06-11T19:44:59", + "TransactionId": 71233200, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 919, + "CustomerInfo": 86954515, + "PaymentType": "Credit Card" + }, + { + "Id": 16284, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-07-21T11:05:43", + "TransactionId": 82946262, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 230, + "CustomerInfo": 49850732, + "PaymentType": "Debit Card" + }, + { + "Id": 16285, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-11-22T11:11:02", + "TransactionId": 83842341, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 951, + "CustomerInfo": 79875734, + "PaymentType": "Cash" + }, + { + "Id": 16286, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2016-08-01T08:06:09", + "TransactionId": 63114033, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 703, + "CustomerInfo": 60831145, + "PaymentType": "Credit Card" + }, + { + "Id": 16287, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2017-06-04T14:16:22", + "TransactionId": 5398548, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 8071986, + "PaymentType": "Cash" + }, + { + "Id": 16288, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2018-10-26T07:21:04", + "TransactionId": 94257308, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 913, + "CustomerInfo": 59995197, + "PaymentType": "Credit Card" + }, + { + "Id": 16289, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2016-04-07T15:48:06", + "TransactionId": 96473820, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 208, + "CustomerInfo": 50869136, + "PaymentType": "Cash" + }, + { + "Id": 16290, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2018-02-21T07:47:34", + "TransactionId": 81067353, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 479, + "CustomerInfo": 42648583, + "PaymentType": "Cash" + }, + { + "Id": 16291, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2018-09-06T10:47:51", + "TransactionId": 99220244, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 615, + "CustomerInfo": 56312467, + "PaymentType": "Debit Card" + }, + { + "Id": 16292, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2018-01-28T11:20:24", + "TransactionId": 72413630, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 702, + "CustomerInfo": 98265322, + "PaymentType": "Credit Card" + }, + { + "Id": 16293, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2017-09-12T09:12:40", + "TransactionId": 35309275, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 845, + "CustomerInfo": 71039236, + "PaymentType": "Credit Card" + }, + { + "Id": 16294, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2019-09-13T19:55:12", + "TransactionId": 60161369, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 692, + "CustomerInfo": 11730139, + "PaymentType": "Debit Card" + }, + { + "Id": 16295, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-05-25T09:52:42", + "TransactionId": 10307402, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 437, + "CustomerInfo": 51519898, + "PaymentType": "Debit Card" + }, + { + "Id": 16296, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-12-24T15:45:48", + "TransactionId": 59718405, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 276, + "CustomerInfo": 42781283, + "PaymentType": "Credit Card" + }, + { + "Id": 16297, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-08-29T17:57:59", + "TransactionId": 22822024, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 530, + "CustomerInfo": 37960873, + "PaymentType": "Debit Card" + }, + { + "Id": 16298, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2019-03-25T15:48:06", + "TransactionId": 53081013, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 936, + "CustomerInfo": 36923718, + "PaymentType": "Debit Card" + }, + { + "Id": 16299, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2018-11-21T11:53:48", + "TransactionId": 26207169, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 458, + "CustomerInfo": 73379921, + "PaymentType": "Debit Card" + }, + { + "Id": 16300, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2016-05-17T19:02:21", + "TransactionId": 297524, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 894, + "CustomerInfo": 5656223, + "PaymentType": "Cash" + }, + { + "Id": 16301, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2017-05-09T12:02:44", + "TransactionId": 55552639, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 593, + "CustomerInfo": 30760852, + "PaymentType": "Cash" + }, + { + "Id": 16302, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2019-05-02T12:13:58", + "TransactionId": 12526679, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 497, + "CustomerInfo": 51118055, + "PaymentType": "Debit Card" + }, + { + "Id": 16303, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-06-20T10:17:20", + "TransactionId": 60385022, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 843, + "CustomerInfo": 82894255, + "PaymentType": "Cash" + }, + { + "Id": 16304, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2017-05-12T17:37:15", + "TransactionId": 18500793, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 516, + "CustomerInfo": 99602654, + "PaymentType": "Cash" + }, + { + "Id": 16305, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-08-30T19:47:51", + "TransactionId": 1637591, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 961, + "CustomerInfo": 93113234, + "PaymentType": "Credit Card" + }, + { + "Id": 16306, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2018-06-17T08:47:37", + "TransactionId": 74747711, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 512, + "CustomerInfo": 52263599, + "PaymentType": "Credit Card" + }, + { + "Id": 16307, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-1", + "TransactionDate": "2018-01-21T12:03:19", + "TransactionId": 94517972, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 514, + "CustomerInfo": 1182684, + "PaymentType": "Debit Card" + }, + { + "Id": 16308, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2019-10-01T12:34:34", + "TransactionId": 3388884, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 805, + "CustomerInfo": 70496135, + "PaymentType": "Cash" + }, + { + "Id": 16309, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-08-09T12:54:35", + "TransactionId": 66603535, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 652, + "CustomerInfo": 73297069, + "PaymentType": "Credit Card" + }, + { + "Id": 16310, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2016-04-08T12:19:18", + "TransactionId": 26527742, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 746, + "CustomerInfo": 54534693, + "PaymentType": "Debit Card" + }, + { + "Id": 16311, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-10-26T15:50:33", + "TransactionId": 57864991, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 120, + "CustomerInfo": 1518266, + "PaymentType": "Cash" + }, + { + "Id": 16312, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-02-03T17:29:20", + "TransactionId": 76049183, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 738, + "CustomerInfo": 10053769, + "PaymentType": "Debit Card" + }, + { + "Id": 16313, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-03-29T09:07:55", + "TransactionId": 16948863, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 30, + "CustomerInfo": 67658894, + "PaymentType": "Credit Card" + }, + { + "Id": 16314, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-05-09T14:18:40", + "TransactionId": 63224140, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 90, + "CustomerInfo": 96835572, + "PaymentType": "Debit Card" + }, + { + "Id": 16315, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-02-14T15:47:31", + "TransactionId": 31893533, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 617, + "CustomerInfo": 68654454, + "PaymentType": "Debit Card" + }, + { + "Id": 16316, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2016-11-11T08:03:24", + "TransactionId": 68543594, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 506, + "CustomerInfo": 60666352, + "PaymentType": "Credit Card" + }, + { + "Id": 16317, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-08-30T14:05:25", + "TransactionId": 40321274, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 59, + "CustomerInfo": 20833494, + "PaymentType": "Credit Card" + }, + { + "Id": 16318, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-2", + "TransactionDate": "2018-12-24T09:09:22", + "TransactionId": 84000802, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 785, + "CustomerInfo": 61197353, + "PaymentType": "Debit Card" + }, + { + "Id": 16319, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2017-10-06T11:03:33", + "TransactionId": 82517688, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 969, + "CustomerInfo": 38093290, + "PaymentType": "Debit Card" + }, + { + "Id": 16320, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2019-06-08T18:26:12", + "TransactionId": 11422118, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 390, + "CustomerInfo": 74780059, + "PaymentType": "Debit Card" + }, + { + "Id": 16321, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-09-27T18:10:48", + "TransactionId": 95994626, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 729, + "CustomerInfo": 80291335, + "PaymentType": "Credit Card" + }, + { + "Id": 16322, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2018-09-02T16:41:40", + "TransactionId": 29188578, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 781, + "CustomerInfo": 81463782, + "PaymentType": "Debit Card" + }, + { + "Id": 16323, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-05-29T12:42:46", + "TransactionId": 48879195, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 866, + "CustomerInfo": 34947240, + "PaymentType": "Credit Card" + }, + { + "Id": 16324, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2016-12-31T13:33:53", + "TransactionId": 34048579, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 498, + "CustomerInfo": 68989766, + "PaymentType": "Cash" + }, + { + "Id": 16325, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-11-17T08:13:55", + "TransactionId": 11834895, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 268, + "CustomerInfo": 76311946, + "PaymentType": "Debit Card" + }, + { + "Id": 16326, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2017-12-12T17:35:40", + "TransactionId": 24354094, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 110, + "CustomerInfo": 90175178, + "PaymentType": "Cash" + }, + { + "Id": 16327, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-04-21T14:44:18", + "TransactionId": 79896552, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 932, + "CustomerInfo": 40551574, + "PaymentType": "Credit Card" + }, + { + "Id": 16328, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-06-21T08:19:41", + "TransactionId": 69439421, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 265, + "CustomerInfo": 13894958, + "PaymentType": "Credit Card" + }, + { + "Id": 16329, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2016-05-07T10:06:23", + "TransactionId": 80718632, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 50, + "CustomerInfo": 66988538, + "PaymentType": "Debit Card" + }, + { + "Id": 16330, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2017-12-08T18:40:28", + "TransactionId": 28861069, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 29, + "CustomerInfo": 81550493, + "PaymentType": "Cash" + }, + { + "Id": 16331, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2016-08-24T16:57:04", + "TransactionId": 18491543, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 487, + "CustomerInfo": 70415034, + "PaymentType": "Credit Card" + }, + { + "Id": 16332, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2019-12-18T10:33:27", + "TransactionId": 39529209, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 159, + "CustomerInfo": 59760409, + "PaymentType": "Cash" + }, + { + "Id": 16333, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2016-03-19T13:27:59", + "TransactionId": 90096606, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 484, + "CustomerInfo": 96417343, + "PaymentType": "Debit Card" + }, + { + "Id": 16334, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2017-12-25T10:07:41", + "TransactionId": 62056858, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 124, + "CustomerInfo": 51534566, + "PaymentType": "Cash" + }, + { + "Id": 16335, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2019-12-05T19:15:19", + "TransactionId": 64820122, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 26, + "CustomerInfo": 9355376, + "PaymentType": "Cash" + }, + { + "Id": 16336, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-07-31T19:43:32", + "TransactionId": 73869908, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 464, + "CustomerInfo": 73918242, + "PaymentType": "Credit Card" + }, + { + "Id": 16337, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2018-11-04T19:54:46", + "TransactionId": 98476800, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 969, + "CustomerInfo": 85734141, + "PaymentType": "Debit Card" + }, + { + "Id": 16338, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-06-22T13:47:25", + "TransactionId": 81325338, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 236, + "CustomerInfo": 98163131, + "PaymentType": "Credit Card" + }, + { + "Id": 16339, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-05-14T19:36:20", + "TransactionId": 20802440, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 531, + "CustomerInfo": 63697226, + "PaymentType": "Credit Card" + }, + { + "Id": 16340, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2018-04-15T19:49:52", + "TransactionId": 58808498, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 922, + "CustomerInfo": 64519569, + "PaymentType": "Credit Card" + }, + { + "Id": 16341, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2017-02-06T15:27:48", + "TransactionId": 34786405, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 747, + "CustomerInfo": 88200653, + "PaymentType": "Debit Card" + }, + { + "Id": 16342, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-11-03T07:18:12", + "TransactionId": 14456104, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 280, + "CustomerInfo": 56276574, + "PaymentType": "Debit Card" + }, + { + "Id": 16343, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2017-03-11T14:33:22", + "TransactionId": 16320968, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 219, + "CustomerInfo": 85731139, + "PaymentType": "Cash" + }, + { + "Id": 16344, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-11-04T18:22:11", + "TransactionId": 98930131, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 516, + "CustomerInfo": 18507150, + "PaymentType": "Cash" + }, + { + "Id": 16345, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2016-11-28T14:33:30", + "TransactionId": 49723199, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 453, + "CustomerInfo": 70373080, + "PaymentType": "Debit Card" + }, + { + "Id": 16346, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2019-05-14T13:10:51", + "TransactionId": 38183792, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 235, + "CustomerInfo": 35220092, + "PaymentType": "Debit Card" + }, + { + "Id": 16347, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2017-10-02T15:26:30", + "TransactionId": 48294599, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 755, + "CustomerInfo": 85751411, + "PaymentType": "Debit Card" + }, + { + "Id": 16348, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-12-12T11:17:23", + "TransactionId": 26636255, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 950, + "CustomerInfo": 53142440, + "PaymentType": "Credit Card" + }, + { + "Id": 16349, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2016-06-20T10:46:34", + "TransactionId": 81303686, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 936, + "CustomerInfo": 17355989, + "PaymentType": "Debit Card" + }, + { + "Id": 16350, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-11-19T17:55:24", + "TransactionId": 84576117, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 185, + "CustomerInfo": 21264426, + "PaymentType": "Credit Card" + }, + { + "Id": 16351, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2017-04-26T13:48:35", + "TransactionId": 37631817, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 879, + "CustomerInfo": 65633016, + "PaymentType": "Debit Card" + }, + { + "Id": 16352, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-05-19T08:47:02", + "TransactionId": 44922550, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 709, + "CustomerInfo": 99333147, + "PaymentType": "Credit Card" + }, + { + "Id": 16353, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2017-11-30T16:09:07", + "TransactionId": 23479435, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 336, + "CustomerInfo": 14115047, + "PaymentType": "Credit Card" + }, + { + "Id": 16354, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-08-12T09:41:37", + "TransactionId": 73499631, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 717, + "CustomerInfo": 90984614, + "PaymentType": "Cash" + }, + { + "Id": 16355, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2017-08-24T07:23:48", + "TransactionId": 86455357, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 845, + "CustomerInfo": 76786994, + "PaymentType": "Cash" + }, + { + "Id": 16356, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-04-20T16:22:48", + "TransactionId": 91069036, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 202, + "CustomerInfo": 4584449, + "PaymentType": "Debit Card" + }, + { + "Id": 16357, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-01-16T13:20:21", + "TransactionId": 44311275, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 647, + "CustomerInfo": 17082476, + "PaymentType": "Cash" + }, + { + "Id": 16358, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-09-27T18:41:20", + "TransactionId": 32195081, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 563, + "CustomerInfo": 2354230, + "PaymentType": "Cash" + }, + { + "Id": 16359, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2016-09-08T09:31:15", + "TransactionId": 69715061, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 841, + "CustomerInfo": 31918255, + "PaymentType": "Cash" + }, + { + "Id": 16360, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2019-08-02T12:13:41", + "TransactionId": 47695653, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 910, + "CustomerInfo": 97840060, + "PaymentType": "Credit Card" + }, + { + "Id": 16361, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-02-23T07:31:35", + "TransactionId": 731653, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 73097499, + "PaymentType": "Credit Card" + }, + { + "Id": 16362, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2016-07-03T12:21:27", + "TransactionId": 56954399, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 732, + "CustomerInfo": 3711534, + "PaymentType": "Credit Card" + }, + { + "Id": 16363, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2016-12-18T18:53:43", + "TransactionId": 45690777, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 225, + "CustomerInfo": 96944465, + "PaymentType": "Credit Card" + }, + { + "Id": 16364, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2018-05-18T18:37:44", + "TransactionId": 54793201, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 470, + "CustomerInfo": 53562501, + "PaymentType": "Debit Card" + }, + { + "Id": 16365, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-06-01T12:22:11", + "TransactionId": 54319442, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 505, + "CustomerInfo": 83937616, + "PaymentType": "Credit Card" + }, + { + "Id": 16366, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2019-04-14T11:11:37", + "TransactionId": 96735622, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 756, + "CustomerInfo": 1605864, + "PaymentType": "Credit Card" + }, + { + "Id": 16367, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-12-06T12:29:14", + "TransactionId": 68654100, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 596, + "CustomerInfo": 57413573, + "PaymentType": "Credit Card" + }, + { + "Id": 16368, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2016-03-11T08:58:25", + "TransactionId": 79714800, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 87, + "CustomerInfo": 74675441, + "PaymentType": "Debit Card" + }, + { + "Id": 16369, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-08-02T08:18:49", + "TransactionId": 26780388, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 432, + "CustomerInfo": 30850596, + "PaymentType": "Credit Card" + }, + { + "Id": 16370, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2018-04-10T19:43:15", + "TransactionId": 85507423, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 166, + "CustomerInfo": 9579361, + "PaymentType": "Debit Card" + }, + { + "Id": 16371, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-03-27T16:25:58", + "TransactionId": 62122182, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 387, + "CustomerInfo": 70928576, + "PaymentType": "Debit Card" + }, + { + "Id": 16372, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2018-06-20T18:08:12", + "TransactionId": 86259661, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 694, + "CustomerInfo": 36046242, + "PaymentType": "Debit Card" + }, + { + "Id": 16373, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2016-03-25T13:02:30", + "TransactionId": 23386421, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 689, + "CustomerInfo": 89372935, + "PaymentType": "Debit Card" + }, + { + "Id": 16374, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2016-10-28T19:32:36", + "TransactionId": 98235652, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 883, + "CustomerInfo": 31450477, + "PaymentType": "Credit Card" + }, + { + "Id": 16375, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2017-10-25T10:07:41", + "TransactionId": 2710276, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 285, + "CustomerInfo": 1733727, + "PaymentType": "Debit Card" + }, + { + "Id": 16376, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2017-02-26T08:36:40", + "TransactionId": 38837331, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 468, + "CustomerInfo": 56465526, + "PaymentType": "Cash" + }, + { + "Id": 16377, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2019-10-08T10:51:36", + "TransactionId": 47819313, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 390, + "CustomerInfo": 68955109, + "PaymentType": "Credit Card" + }, + { + "Id": 16378, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2019-11-22T17:01:32", + "TransactionId": 64608902, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 356, + "CustomerInfo": 10465309, + "PaymentType": "Debit Card" + }, + { + "Id": 16379, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-12-16T19:00:37", + "TransactionId": 93500481, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 12, + "CustomerInfo": 28574061, + "PaymentType": "Credit Card" + }, + { + "Id": 16380, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-10-09T19:53:20", + "TransactionId": 58916243, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 14, + "CustomerInfo": 27262300, + "PaymentType": "Debit Card" + }, + { + "Id": 16381, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-01-25T11:45:45", + "TransactionId": 71658851, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 314, + "CustomerInfo": 78894931, + "PaymentType": "Credit Card" + }, + { + "Id": 16382, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2017-09-14T17:40:25", + "TransactionId": 99890345, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 491, + "CustomerInfo": 18638273, + "PaymentType": "Cash" + }, + { + "Id": 16383, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2018-12-12T08:47:54", + "TransactionId": 94953296, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 807, + "CustomerInfo": 20761430, + "PaymentType": "Debit Card" + }, + { + "Id": 16384, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2019-06-02T12:57:36", + "TransactionId": 26699636, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 492, + "CustomerInfo": 19473474, + "PaymentType": "Cash" + }, + { + "Id": 16385, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2016-05-11T16:35:54", + "TransactionId": 46792965, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 140, + "CustomerInfo": 45435704, + "PaymentType": "Credit Card" + }, + { + "Id": 16386, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2016-11-03T13:00:20", + "TransactionId": 67510429, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 386, + "CustomerInfo": 42155881, + "PaymentType": "Cash" + }, + { + "Id": 16387, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2016-12-20T07:00:29", + "TransactionId": 32346964, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 744, + "CustomerInfo": 8916827, + "PaymentType": "Debit Card" + }, + { + "Id": 16388, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2019-02-21T10:20:56", + "TransactionId": 96435648, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 538, + "CustomerInfo": 28709625, + "PaymentType": "Debit Card" + }, + { + "Id": 16389, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2018-12-24T07:30:09", + "TransactionId": 87008881, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 490, + "CustomerInfo": 84002969, + "PaymentType": "Credit Card" + }, + { + "Id": 16390, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-05-05T15:49:49", + "TransactionId": 31577700, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 944, + "CustomerInfo": 68136986, + "PaymentType": "Cash" + }, + { + "Id": 16391, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-10-18T08:45:19", + "TransactionId": 77837245, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 711, + "CustomerInfo": 20859255, + "PaymentType": "Debit Card" + }, + { + "Id": 16392, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2017-10-26T07:50:44", + "TransactionId": 4229396, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 47, + "CustomerInfo": 22985549, + "PaymentType": "Debit Card" + }, + { + "Id": 16393, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-01-14T14:31:55", + "TransactionId": 10348677, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 311, + "CustomerInfo": 72169941, + "PaymentType": "Cash" + }, + { + "Id": 16394, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2018-08-31T11:59:25", + "TransactionId": 2762852, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 536, + "CustomerInfo": 10093271, + "PaymentType": "Debit Card" + }, + { + "Id": 16395, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-05-21T09:40:36", + "TransactionId": 49588580, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 462, + "CustomerInfo": 49005383, + "PaymentType": "Cash" + }, + { + "Id": 16396, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2018-11-16T07:56:04", + "TransactionId": 63789754, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 697, + "CustomerInfo": 20081921, + "PaymentType": "Cash" + }, + { + "Id": 16397, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-10-23T16:30:35", + "TransactionId": 72918691, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 325, + "CustomerInfo": 3284455, + "PaymentType": "Cash" + }, + { + "Id": 16398, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2019-02-10T09:19:18", + "TransactionId": 76836166, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 150, + "CustomerInfo": 54628937, + "PaymentType": "Debit Card" + }, + { + "Id": 16399, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-02-13T19:26:50", + "TransactionId": 11434903, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 198, + "CustomerInfo": 39919781, + "PaymentType": "Debit Card" + }, + { + "Id": 16400, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-10-27T18:21:01", + "TransactionId": 94713833, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 687, + "CustomerInfo": 70915373, + "PaymentType": "Debit Card" + }, + { + "Id": 16401, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2019-07-05T17:19:24", + "TransactionId": 63268170, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 595, + "CustomerInfo": 8576606, + "PaymentType": "Credit Card" + }, + { + "Id": 16402, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2019-07-04T14:27:10", + "TransactionId": 46474263, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 668, + "CustomerInfo": 90924078, + "PaymentType": "Debit Card" + }, + { + "Id": 16403, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-01-02T19:28:42", + "TransactionId": 10869468, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 713, + "CustomerInfo": 62618226, + "PaymentType": "Credit Card" + }, + { + "Id": 16404, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2018-09-01T08:54:06", + "TransactionId": 29361039, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 279, + "CustomerInfo": 92176512, + "PaymentType": "Credit Card" + }, + { + "Id": 16405, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2016-03-10T07:48:17", + "TransactionId": 11064681, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 534, + "CustomerInfo": 20841332, + "PaymentType": "Cash" + }, + { + "Id": 16406, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2016-08-18T07:07:58", + "TransactionId": 17506318, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 41, + "CustomerInfo": 86263678, + "PaymentType": "Cash" + }, + { + "Id": 16407, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2017-05-22T17:51:04", + "TransactionId": 58807894, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 892, + "CustomerInfo": 99623875, + "PaymentType": "Debit Card" + }, + { + "Id": 16408, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2016-11-05T13:14:10", + "TransactionId": 78686006, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 396, + "CustomerInfo": 66651795, + "PaymentType": "Credit Card" + }, + { + "Id": 16409, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2018-05-01T14:35:48", + "TransactionId": 58334071, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 336, + "CustomerInfo": 27204253, + "PaymentType": "Cash" + }, + { + "Id": 16410, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-09-07T17:06:09", + "TransactionId": 25893980, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 458, + "CustomerInfo": 65772052, + "PaymentType": "Cash" + }, + { + "Id": 16411, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-06-14T09:26:38", + "TransactionId": 64738079, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 571, + "CustomerInfo": 67086243, + "PaymentType": "Cash" + }, + { + "Id": 16412, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2017-04-21T19:01:21", + "TransactionId": 25706959, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 400, + "CustomerInfo": 59392868, + "PaymentType": "Credit Card" + }, + { + "Id": 16413, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2017-08-28T17:27:36", + "TransactionId": 25581656, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 993, + "CustomerInfo": 61032701, + "PaymentType": "Cash" + }, + { + "Id": 16414, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2017-01-03T09:38:53", + "TransactionId": 66217882, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 89, + "CustomerInfo": 97731981, + "PaymentType": "Credit Card" + }, + { + "Id": 16415, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2018-09-27T08:15:30", + "TransactionId": 27704835, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 996, + "CustomerInfo": 24089012, + "PaymentType": "Debit Card" + }, + { + "Id": 16416, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2017-02-07T17:29:11", + "TransactionId": 5226331, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 707, + "CustomerInfo": 89742293, + "PaymentType": "Credit Card" + }, + { + "Id": 16417, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2016-08-27T09:58:11", + "TransactionId": 91767840, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 772, + "CustomerInfo": 56078456, + "PaymentType": "Credit Card" + }, + { + "Id": 16418, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-07-26T14:02:15", + "TransactionId": 51000446, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 434, + "CustomerInfo": 17168643, + "PaymentType": "Debit Card" + }, + { + "Id": 16419, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-3", + "TransactionDate": "2017-05-19T07:30:52", + "TransactionId": 83954179, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 39, + "CustomerInfo": 34933683, + "PaymentType": "Cash" + }, + { + "Id": 16420, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2019-04-10T15:36:52", + "TransactionId": 42023425, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 780, + "CustomerInfo": 79002088, + "PaymentType": "Credit Card" + }, + { + "Id": 16421, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-09-25T14:33:30", + "TransactionId": 25512573, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 246, + "CustomerInfo": 41355585, + "PaymentType": "Cash" + }, + { + "Id": 16422, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-05-10T18:49:58", + "TransactionId": 61576748, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 878, + "CustomerInfo": 2660093, + "PaymentType": "Credit Card" + }, + { + "Id": 16423, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2019-08-11T13:11:08", + "TransactionId": 9431573, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 549, + "CustomerInfo": 78030057, + "PaymentType": "Credit Card" + }, + { + "Id": 16424, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2018-04-24T13:04:39", + "TransactionId": 1163331, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 934, + "CustomerInfo": 4122572, + "PaymentType": "Debit Card" + }, + { + "Id": 16425, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-11-13T07:54:20", + "TransactionId": 21541399, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 45, + "CustomerInfo": 71317952, + "PaymentType": "Cash" + }, + { + "Id": 16426, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-08-21T08:20:15", + "TransactionId": 99424089, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 86760455, + "PaymentType": "Credit Card" + }, + { + "Id": 16427, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2018-05-26T16:33:36", + "TransactionId": 20662038, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 896, + "CustomerInfo": 96032688, + "PaymentType": "Cash" + }, + { + "Id": 16428, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2019-07-19T18:45:13", + "TransactionId": 66694742, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 326, + "CustomerInfo": 94056983, + "PaymentType": "Credit Card" + }, + { + "Id": 16429, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-06-12T18:04:11", + "TransactionId": 76709289, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 96, + "CustomerInfo": 36486927, + "PaymentType": "Cash" + }, + { + "Id": 16430, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2019-04-05T11:09:53", + "TransactionId": 42484993, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 843, + "CustomerInfo": 71661391, + "PaymentType": "Debit Card" + }, + { + "Id": 16431, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-12-04T11:32:30", + "TransactionId": 6770703, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 91, + "CustomerInfo": 24897867, + "PaymentType": "Cash" + }, + { + "Id": 16432, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2019-01-03T17:11:54", + "TransactionId": 79869132, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 707, + "CustomerInfo": 99015826, + "PaymentType": "Debit Card" + }, + { + "Id": 16433, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2019-02-05T07:28:08", + "TransactionId": 67003845, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 232, + "CustomerInfo": 81110819, + "PaymentType": "Credit Card" + }, + { + "Id": 16434, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2016-11-23T11:20:15", + "TransactionId": 87194516, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 360, + "CustomerInfo": 11636891, + "PaymentType": "Credit Card" + }, + { + "Id": 16435, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2017-04-27T13:18:20", + "TransactionId": 520245, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 524, + "CustomerInfo": 26495483, + "PaymentType": "Debit Card" + }, + { + "Id": 16436, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2016-08-06T07:02:30", + "TransactionId": 78858221, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 52, + "CustomerInfo": 68824738, + "PaymentType": "Debit Card" + }, + { + "Id": 16437, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-05-02T07:57:39", + "TransactionId": 75520022, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 628, + "CustomerInfo": 84922208, + "PaymentType": "Debit Card" + }, + { + "Id": 16438, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-03-14T14:26:44", + "TransactionId": 75328026, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 615, + "CustomerInfo": 40588057, + "PaymentType": "Debit Card" + }, + { + "Id": 16439, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2016-05-18T11:49:55", + "TransactionId": 94983466, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 762, + "CustomerInfo": 93012768, + "PaymentType": "Cash" + }, + { + "Id": 16440, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-05-31T07:29:25", + "TransactionId": 9376134, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 615, + "CustomerInfo": 6655072, + "PaymentType": "Debit Card" + }, + { + "Id": 16441, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2016-05-12T10:22:05", + "TransactionId": 30507554, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 117, + "CustomerInfo": 32064613, + "PaymentType": "Cash" + }, + { + "Id": 16442, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2017-04-28T17:33:56", + "TransactionId": 60857468, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 757, + "CustomerInfo": 51757350, + "PaymentType": "Credit Card" + }, + { + "Id": 16443, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2016-07-13T18:42:29", + "TransactionId": 14500139, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 187, + "CustomerInfo": 58273891, + "PaymentType": "Debit Card" + }, + { + "Id": 16444, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2016-04-16T14:20:59", + "TransactionId": 53173730, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 869, + "CustomerInfo": 34440055, + "PaymentType": "Debit Card" + }, + { + "Id": 16445, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2018-09-10T10:55:03", + "TransactionId": 40230436, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 686, + "CustomerInfo": 57029823, + "PaymentType": "Debit Card" + }, + { + "Id": 16446, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2016-12-26T11:02:41", + "TransactionId": 90165651, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 84, + "CustomerInfo": 87214634, + "PaymentType": "Debit Card" + }, + { + "Id": 16447, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2017-05-27T17:27:01", + "TransactionId": 94867414, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 427, + "CustomerInfo": 51800332, + "PaymentType": "Cash" + }, + { + "Id": 16448, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2016-02-13T12:32:41", + "TransactionId": 70399665, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 924, + "CustomerInfo": 26133763, + "PaymentType": "Credit Card" + }, + { + "Id": 16449, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2017-08-08T18:44:04", + "TransactionId": 17072124, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 894, + "CustomerInfo": 20749018, + "PaymentType": "Debit Card" + }, + { + "Id": 16450, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-08-01T09:19:35", + "TransactionId": 4595855, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 942, + "CustomerInfo": 32516683, + "PaymentType": "Cash" + }, + { + "Id": 16451, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2019-05-03T18:17:43", + "TransactionId": 79243481, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 157, + "CustomerInfo": 84025320, + "PaymentType": "Cash" + }, + { + "Id": 16452, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2018-11-05T13:23:23", + "TransactionId": 12537706, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 564, + "CustomerInfo": 28230568, + "PaymentType": "Cash" + }, + { + "Id": 16453, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-07-07T16:49:00", + "TransactionId": 99853267, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 477, + "CustomerInfo": 72082261, + "PaymentType": "Debit Card" + }, + { + "Id": 16454, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-06-02T09:54:43", + "TransactionId": 28983767, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 922, + "CustomerInfo": 43422178, + "PaymentType": "Debit Card" + }, + { + "Id": 16455, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2017-08-22T15:54:17", + "TransactionId": 81930034, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 506, + "CustomerInfo": 27555344, + "PaymentType": "Debit Card" + }, + { + "Id": 16456, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2019-09-13T16:52:54", + "TransactionId": 24319168, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 777, + "CustomerInfo": 37108026, + "PaymentType": "Credit Card" + }, + { + "Id": 16457, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2017-01-12T18:42:12", + "TransactionId": 96785101, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 647, + "CustomerInfo": 8072747, + "PaymentType": "Debit Card" + }, + { + "Id": 16458, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2018-01-25T07:17:28", + "TransactionId": 75777695, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 622, + "CustomerInfo": 28416522, + "PaymentType": "Credit Card" + }, + { + "Id": 16459, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2016-04-11T14:42:26", + "TransactionId": 43569633, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 905, + "CustomerInfo": 50755773, + "PaymentType": "Credit Card" + }, + { + "Id": 16460, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2016-07-21T18:54:26", + "TransactionId": 13173086, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 917, + "CustomerInfo": 88693271, + "PaymentType": "Debit Card" + }, + { + "Id": 16461, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2017-07-26T13:16:54", + "TransactionId": 48250164, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 369, + "CustomerInfo": 99634438, + "PaymentType": "Cash" + }, + { + "Id": 16462, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2019-08-16T13:18:20", + "TransactionId": 96939412, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 703, + "CustomerInfo": 1476481, + "PaymentType": "Cash" + }, + { + "Id": 16463, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2016-08-02T19:01:12", + "TransactionId": 7901750, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 578, + "CustomerInfo": 49388123, + "PaymentType": "Credit Card" + }, + { + "Id": 16464, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2017-06-07T11:01:32", + "TransactionId": 94543414, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 729, + "CustomerInfo": 54845419, + "PaymentType": "Credit Card" + }, + { + "Id": 16465, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-07-28T16:54:29", + "TransactionId": 37453555, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 587, + "CustomerInfo": 96665966, + "PaymentType": "Debit Card" + }, + { + "Id": 16466, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-4", + "TransactionDate": "2019-08-17T13:24:32", + "TransactionId": 63253250, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 90, + "CustomerInfo": 82709714, + "PaymentType": "Credit Card" + }, + { + "Id": 16467, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2018-12-28T18:43:21", + "TransactionId": 15682268, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 640, + "CustomerInfo": 6662372, + "PaymentType": "Cash" + }, + { + "Id": 16468, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-02-28T10:01:29", + "TransactionId": 26607820, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 308, + "CustomerInfo": 75384304, + "PaymentType": "Cash" + }, + { + "Id": 16469, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2019-08-09T14:24:00", + "TransactionId": 68487084, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 66, + "CustomerInfo": 42809520, + "PaymentType": "Credit Card" + }, + { + "Id": 16470, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2017-05-02T07:30:35", + "TransactionId": 10019095, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 110, + "CustomerInfo": 947991, + "PaymentType": "Credit Card" + }, + { + "Id": 16471, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2016-07-13T09:09:30", + "TransactionId": 38005766, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 978, + "CustomerInfo": 71700607, + "PaymentType": "Cash" + }, + { + "Id": 16472, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2019-10-10T18:22:54", + "TransactionId": 40769626, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 459, + "CustomerInfo": 99241737, + "PaymentType": "Cash" + }, + { + "Id": 16473, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2018-06-08T07:34:54", + "TransactionId": 58862259, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 94678858, + "PaymentType": "Debit Card" + }, + { + "Id": 16474, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2016-06-23T17:38:59", + "TransactionId": 43327087, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 877, + "CustomerInfo": 78176375, + "PaymentType": "Debit Card" + }, + { + "Id": 16475, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2018-09-03T15:24:03", + "TransactionId": 9031545, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 437, + "CustomerInfo": 79461711, + "PaymentType": "Cash" + }, + { + "Id": 16476, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-02-19T18:36:17", + "TransactionId": 41176991, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 444, + "CustomerInfo": 32502421, + "PaymentType": "Debit Card" + }, + { + "Id": 16477, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-12-04T13:03:39", + "TransactionId": 10086221, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 265, + "CustomerInfo": 29762705, + "PaymentType": "Debit Card" + }, + { + "Id": 16478, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-07-02T17:12:29", + "TransactionId": 29316753, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 3038983, + "PaymentType": "Debit Card" + }, + { + "Id": 16479, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2016-05-21T18:45:48", + "TransactionId": 30805010, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 272, + "CustomerInfo": 69542395, + "PaymentType": "Debit Card" + }, + { + "Id": 16480, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-06-21T18:13:58", + "TransactionId": 40315613, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 621, + "CustomerInfo": 24522496, + "PaymentType": "Cash" + }, + { + "Id": 16481, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-03-30T13:50:36", + "TransactionId": 78347816, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 643, + "CustomerInfo": 14012235, + "PaymentType": "Cash" + }, + { + "Id": 16482, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2017-09-09T17:08:10", + "TransactionId": 36494807, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 60, + "CustomerInfo": 46272138, + "PaymentType": "Credit Card" + }, + { + "Id": 16483, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2017-07-05T11:21:07", + "TransactionId": 72552260, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 343, + "CustomerInfo": 17832868, + "PaymentType": "Cash" + }, + { + "Id": 16484, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2018-12-01T10:48:43", + "TransactionId": 19213981, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 188, + "CustomerInfo": 81819746, + "PaymentType": "Credit Card" + }, + { + "Id": 16485, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2018-09-18T17:33:39", + "TransactionId": 1930539, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 701, + "CustomerInfo": 68628008, + "PaymentType": "Credit Card" + }, + { + "Id": 16486, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2017-10-03T16:26:33", + "TransactionId": 34964934, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 814, + "CustomerInfo": 12991954, + "PaymentType": "Cash" + }, + { + "Id": 16487, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-09-06T15:34:42", + "TransactionId": 461520, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 595, + "CustomerInfo": 75177082, + "PaymentType": "Cash" + }, + { + "Id": 16488, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2019-08-30T14:33:13", + "TransactionId": 52260620, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 75, + "CustomerInfo": 33312641, + "PaymentType": "Credit Card" + }, + { + "Id": 16489, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2016-10-26T08:14:38", + "TransactionId": 63865323, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 847, + "CustomerInfo": 26219544, + "PaymentType": "Debit Card" + }, + { + "Id": 16490, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2017-07-19T18:57:36", + "TransactionId": 6989045, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 825, + "CustomerInfo": 32774572, + "PaymentType": "Debit Card" + }, + { + "Id": 16491, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2019-01-18T09:57:27", + "TransactionId": 45317277, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 629, + "CustomerInfo": 9796851, + "PaymentType": "Credit Card" + }, + { + "Id": 16492, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2017-06-30T19:49:35", + "TransactionId": 33151147, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 551, + "CustomerInfo": 3201520, + "PaymentType": "Cash" + }, + { + "Id": 16493, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2016-03-07T15:01:18", + "TransactionId": 61876964, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 248, + "CustomerInfo": 90461188, + "PaymentType": "Debit Card" + }, + { + "Id": 16494, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2017-02-12T09:31:49", + "TransactionId": 70588453, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 555, + "CustomerInfo": 20175572, + "PaymentType": "Credit Card" + }, + { + "Id": 16495, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-01-03T09:23:02", + "TransactionId": 89695258, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 161, + "CustomerInfo": 54663964, + "PaymentType": "Debit Card" + }, + { + "Id": 16496, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2018-08-02T08:13:29", + "TransactionId": 59887057, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 87, + "CustomerInfo": 95026346, + "PaymentType": "Cash" + }, + { + "Id": 16497, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-02-01T17:02:41", + "TransactionId": 13870400, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 483, + "CustomerInfo": 89252999, + "PaymentType": "Credit Card" + }, + { + "Id": 16498, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-09-04T10:51:53", + "TransactionId": 22263584, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 723, + "CustomerInfo": 22371882, + "PaymentType": "Cash" + }, + { + "Id": 16499, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-03-06T09:21:45", + "TransactionId": 50984742, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 182, + "CustomerInfo": 57720307, + "PaymentType": "Cash" + }, + { + "Id": 16500, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-07-10T17:06:35", + "TransactionId": 53510026, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 704, + "CustomerInfo": 34388415, + "PaymentType": "Credit Card" + }, + { + "Id": 16501, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2017-10-17T18:12:06", + "TransactionId": 59929679, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 709, + "CustomerInfo": 57689335, + "PaymentType": "Debit Card" + }, + { + "Id": 16502, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2016-11-30T13:00:12", + "TransactionId": 71870895, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 310, + "CustomerInfo": 10825434, + "PaymentType": "Credit Card" + }, + { + "Id": 16503, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-06-29T19:52:45", + "TransactionId": 64811854, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 486, + "CustomerInfo": 5867376, + "PaymentType": "Cash" + }, + { + "Id": 16504, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-01-16T13:24:32", + "TransactionId": 17452027, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 287, + "CustomerInfo": 78078473, + "PaymentType": "Cash" + }, + { + "Id": 16505, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-05-04T07:38:04", + "TransactionId": 65031660, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 469, + "CustomerInfo": 28797544, + "PaymentType": "Cash" + }, + { + "Id": 16506, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2018-11-09T14:54:06", + "TransactionId": 80208177, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 106, + "CustomerInfo": 40655497, + "PaymentType": "Cash" + }, + { + "Id": 16507, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-03-05T18:52:34", + "TransactionId": 34444873, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 503, + "CustomerInfo": 88186162, + "PaymentType": "Debit Card" + }, + { + "Id": 16508, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-12-28T18:29:14", + "TransactionId": 51096666, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 1, + "CustomerInfo": 56427620, + "PaymentType": "Cash" + }, + { + "Id": 16509, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2017-03-10T10:11:17", + "TransactionId": 41010398, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 977, + "CustomerInfo": 48766255, + "PaymentType": "Debit Card" + }, + { + "Id": 16510, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2017-09-02T08:26:01", + "TransactionId": 24608829, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 502, + "CustomerInfo": 34517405, + "PaymentType": "Cash" + }, + { + "Id": 16511, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2019-11-29T16:07:58", + "TransactionId": 89347782, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 495, + "CustomerInfo": 42480759, + "PaymentType": "Cash" + }, + { + "Id": 16512, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2019-04-16T09:16:08", + "TransactionId": 18351268, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 242, + "CustomerInfo": 47353065, + "PaymentType": "Cash" + }, + { + "Id": 16513, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-3", + "TransactionDate": "2017-03-23T12:13:58", + "TransactionId": 96994213, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 705, + "CustomerInfo": 60526931, + "PaymentType": "Cash" + }, + { + "Id": 16514, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-04-06T12:11:48", + "TransactionId": 71735631, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 592, + "CustomerInfo": 92815707, + "PaymentType": "Credit Card" + }, + { + "Id": 16515, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2019-10-21T18:16:16", + "TransactionId": 63843707, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 263, + "CustomerInfo": 76694940, + "PaymentType": "Credit Card" + }, + { + "Id": 16516, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2018-03-04T12:10:31", + "TransactionId": 55148931, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 259, + "CustomerInfo": 12507855, + "PaymentType": "Debit Card" + }, + { + "Id": 16517, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-03-25T09:36:52", + "TransactionId": 80192999, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 914, + "CustomerInfo": 80963533, + "PaymentType": "Debit Card" + }, + { + "Id": 16518, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2017-07-31T18:14:33", + "TransactionId": 92325254, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 585, + "CustomerInfo": 11352841, + "PaymentType": "Cash" + }, + { + "Id": 16519, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-08-20T09:45:04", + "TransactionId": 45022228, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 937, + "CustomerInfo": 11995279, + "PaymentType": "Credit Card" + }, + { + "Id": 16520, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2018-04-07T15:21:01", + "TransactionId": 82534482, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 496, + "CustomerInfo": 25765455, + "PaymentType": "Debit Card" + }, + { + "Id": 16521, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-04-11T12:28:31", + "TransactionId": 12681884, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 584, + "CustomerInfo": 957626, + "PaymentType": "Cash" + }, + { + "Id": 16522, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2017-08-07T17:24:52", + "TransactionId": 24272669, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 911, + "CustomerInfo": 96081160, + "PaymentType": "Debit Card" + }, + { + "Id": 16523, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-06-03T11:44:10", + "TransactionId": 51971561, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 867, + "CustomerInfo": 70031616, + "PaymentType": "Cash" + }, + { + "Id": 16524, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2016-06-19T14:29:02", + "TransactionId": 39079541, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 629, + "CustomerInfo": 30554247, + "PaymentType": "Cash" + }, + { + "Id": 16525, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-03-23T09:35:17", + "TransactionId": 87831218, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 565, + "CustomerInfo": 80817052, + "PaymentType": "Credit Card" + }, + { + "Id": 16526, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-02-24T16:52:19", + "TransactionId": 72365384, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 431, + "CustomerInfo": 51153007, + "PaymentType": "Debit Card" + }, + { + "Id": 16527, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-10-26T07:01:47", + "TransactionId": 47814627, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 136, + "CustomerInfo": 48834103, + "PaymentType": "Debit Card" + }, + { + "Id": 16528, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-2", + "TransactionDate": "2018-10-10T08:28:36", + "TransactionId": 33918367, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 49, + "CustomerInfo": 26153392, + "PaymentType": "Debit Card" + }, + { + "Id": 16529, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-11-26T08:04:08", + "TransactionId": 58194282, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 605, + "CustomerInfo": 12477793, + "PaymentType": "Debit Card" + }, + { + "Id": 16530, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2016-10-18T18:33:59", + "TransactionId": 42621184, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 753, + "CustomerInfo": 43465566, + "PaymentType": "Debit Card" + }, + { + "Id": 16531, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2016-05-06T17:07:35", + "TransactionId": 39053665, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 327, + "CustomerInfo": 49965853, + "PaymentType": "Debit Card" + }, + { + "Id": 16532, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-02-10T11:57:33", + "TransactionId": 854811, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 408, + "CustomerInfo": 37252956, + "PaymentType": "Credit Card" + }, + { + "Id": 16533, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2018-12-31T13:39:04", + "TransactionId": 58385249, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 271, + "CustomerInfo": 14183990, + "PaymentType": "Cash" + }, + { + "Id": 16534, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-06-21T07:45:42", + "TransactionId": 44819722, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 168, + "CustomerInfo": 85504898, + "PaymentType": "Credit Card" + }, + { + "Id": 16535, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2016-11-16T12:03:53", + "TransactionId": 97424039, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 83, + "CustomerInfo": 73559353, + "PaymentType": "Credit Card" + }, + { + "Id": 16536, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2017-02-12T07:26:59", + "TransactionId": 54619931, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 269, + "CustomerInfo": 8585087, + "PaymentType": "Credit Card" + }, + { + "Id": 16537, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2018-12-21T08:15:30", + "TransactionId": 28852401, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 824, + "CustomerInfo": 78782983, + "PaymentType": "Credit Card" + }, + { + "Id": 16538, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-02-10T16:18:55", + "TransactionId": 58618771, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 554, + "CustomerInfo": 87944938, + "PaymentType": "Cash" + }, + { + "Id": 16539, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-10-08T17:05:34", + "TransactionId": 77057274, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 499, + "CustomerInfo": 93267104, + "PaymentType": "Debit Card" + }, + { + "Id": 16540, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2016-01-16T09:56:27", + "TransactionId": 20447083, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 97, + "CustomerInfo": 48872156, + "PaymentType": "Credit Card" + }, + { + "Id": 16541, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-3", + "TransactionDate": "2017-12-12T19:00:46", + "TransactionId": 47260344, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 393, + "CustomerInfo": 14335867, + "PaymentType": "Debit Card" + }, + { + "Id": 16542, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-04-26T12:16:34", + "TransactionId": 22308437, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 713, + "CustomerInfo": 77253517, + "PaymentType": "Credit Card" + }, + { + "Id": 16543, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2018-08-06T16:47:17", + "TransactionId": 26154457, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 834, + "CustomerInfo": 2916638, + "PaymentType": "Debit Card" + }, + { + "Id": 16544, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2018-05-14T10:28:34", + "TransactionId": 48692299, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 939, + "CustomerInfo": 44881079, + "PaymentType": "Debit Card" + }, + { + "Id": 16545, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2018-10-23T14:21:16", + "TransactionId": 14407032, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 734, + "CustomerInfo": 85775540, + "PaymentType": "Cash" + }, + { + "Id": 16546, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-06-03T11:35:23", + "TransactionId": 50074039, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 77, + "CustomerInfo": 97903754, + "PaymentType": "Credit Card" + }, + { + "Id": 16547, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-11-18T15:11:23", + "TransactionId": 82956189, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 306, + "CustomerInfo": 3722482, + "PaymentType": "Debit Card" + }, + { + "Id": 16548, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2017-05-14T19:04:05", + "TransactionId": 15477334, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 111, + "CustomerInfo": 85731298, + "PaymentType": "Debit Card" + }, + { + "Id": 16549, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2016-06-26T07:07:32", + "TransactionId": 62044035, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 429, + "CustomerInfo": 53050950, + "PaymentType": "Credit Card" + }, + { + "Id": 16550, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2016-11-02T12:54:43", + "TransactionId": 53309700, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 216, + "CustomerInfo": 24108190, + "PaymentType": "Debit Card" + }, + { + "Id": 16551, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2017-11-16T19:42:40", + "TransactionId": 25469224, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 5614202, + "PaymentType": "Credit Card" + }, + { + "Id": 16552, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-01-26T09:40:45", + "TransactionId": 15471888, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 170, + "CustomerInfo": 20281946, + "PaymentType": "Credit Card" + }, + { + "Id": 16553, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2018-08-07T12:21:19", + "TransactionId": 83937484, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 349, + "CustomerInfo": 99649532, + "PaymentType": "Debit Card" + }, + { + "Id": 16554, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2017-01-13T12:59:54", + "TransactionId": 25962875, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 153, + "CustomerInfo": 41194224, + "PaymentType": "Credit Card" + }, + { + "Id": 16555, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2018-07-10T17:14:04", + "TransactionId": 44021731, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 155, + "CustomerInfo": 20736769, + "PaymentType": "Debit Card" + }, + { + "Id": 16556, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2018-11-10T07:10:51", + "TransactionId": 86335912, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 986, + "CustomerInfo": 61924558, + "PaymentType": "Credit Card" + }, + { + "Id": 16557, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-5", + "TransactionDate": "2018-07-14T18:17:51", + "TransactionId": 71547098, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 394, + "CustomerInfo": 53599165, + "PaymentType": "Cash" + }, + { + "Id": 16558, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2017-05-01T08:43:26", + "TransactionId": 23476810, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 314, + "CustomerInfo": 21650611, + "PaymentType": "Cash" + }, + { + "Id": 16559, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2016-09-22T14:14:47", + "TransactionId": 52498405, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 980, + "CustomerInfo": 31331836, + "PaymentType": "Cash" + }, + { + "Id": 16560, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-04-04T09:16:08", + "TransactionId": 74758337, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 540, + "CustomerInfo": 19547204, + "PaymentType": "Debit Card" + }, + { + "Id": 16561, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2016-04-23T09:44:47", + "TransactionId": 93347425, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 492, + "CustomerInfo": 47879037, + "PaymentType": "Cash" + }, + { + "Id": 16562, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-04-05T09:59:28", + "TransactionId": 83091830, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 190, + "CustomerInfo": 36248291, + "PaymentType": "Credit Card" + }, + { + "Id": 16563, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2019-01-10T12:48:32", + "TransactionId": 88778028, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 699, + "CustomerInfo": 55818004, + "PaymentType": "Cash" + }, + { + "Id": 16564, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2017-09-17T15:39:45", + "TransactionId": 65811106, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 62, + "CustomerInfo": 5992116, + "PaymentType": "Cash" + }, + { + "Id": 16565, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-03-09T09:19:44", + "TransactionId": 80909961, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 5, + "CustomerInfo": 95370575, + "PaymentType": "Cash" + }, + { + "Id": 16566, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-09-09T11:33:39", + "TransactionId": 77842922, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 450, + "CustomerInfo": 95946335, + "PaymentType": "Cash" + }, + { + "Id": 16567, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-11-02T13:18:20", + "TransactionId": 38350540, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 881, + "CustomerInfo": 66533807, + "PaymentType": "Debit Card" + }, + { + "Id": 16568, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2019-04-04T16:21:48", + "TransactionId": 52327699, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 921, + "CustomerInfo": 60967095, + "PaymentType": "Cash" + }, + { + "Id": 16569, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2016-12-30T10:07:58", + "TransactionId": 51536482, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 3, + "CustomerInfo": 80015375, + "PaymentType": "Cash" + }, + { + "Id": 16570, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2016-01-14T17:36:23", + "TransactionId": 58366862, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 606, + "CustomerInfo": 81772202, + "PaymentType": "Credit Card" + }, + { + "Id": 16571, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2017-07-20T11:07:09", + "TransactionId": 50367526, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 729, + "CustomerInfo": 44502163, + "PaymentType": "Credit Card" + }, + { + "Id": 16572, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2019-11-14T08:27:27", + "TransactionId": 33022697, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 373, + "CustomerInfo": 5648371, + "PaymentType": "Credit Card" + }, + { + "Id": 16573, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2017-02-24T08:31:03", + "TransactionId": 7044297, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 386, + "CustomerInfo": 87262537, + "PaymentType": "Credit Card" + }, + { + "Id": 16574, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-09-09T16:18:29", + "TransactionId": 98232840, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 992, + "CustomerInfo": 80483444, + "PaymentType": "Debit Card" + }, + { + "Id": 16575, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-08-21T19:58:57", + "TransactionId": 96270440, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 286, + "CustomerInfo": 80316844, + "PaymentType": "Cash" + }, + { + "Id": 16576, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-10-02T08:40:25", + "TransactionId": 11152535, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 25, + "CustomerInfo": 20548732, + "PaymentType": "Credit Card" + }, + { + "Id": 16577, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2017-09-19T13:25:15", + "TransactionId": 24508518, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 62, + "CustomerInfo": 21164343, + "PaymentType": "Credit Card" + }, + { + "Id": 16578, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-1", + "TransactionDate": "2016-05-17T10:56:12", + "TransactionId": 93461521, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 986, + "CustomerInfo": 11035280, + "PaymentType": "Cash" + }, + { + "Id": 16579, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2017-01-23T15:23:37", + "TransactionId": 35566933, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 903, + "CustomerInfo": 45336470, + "PaymentType": "Cash" + }, + { + "Id": 16580, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2017-05-20T17:23:17", + "TransactionId": 17959648, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 520, + "CustomerInfo": 12138198, + "PaymentType": "Debit Card" + }, + { + "Id": 16581, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-12-17T19:25:06", + "TransactionId": 37525700, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 367, + "CustomerInfo": 43268519, + "PaymentType": "Credit Card" + }, + { + "Id": 16582, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2018-01-23T08:25:26", + "TransactionId": 32937585, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 276, + "CustomerInfo": 95399092, + "PaymentType": "Debit Card" + }, + { + "Id": 16583, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2016-10-10T12:24:03", + "TransactionId": 56520403, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 178, + "CustomerInfo": 17514585, + "PaymentType": "Credit Card" + }, + { + "Id": 16584, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-10-16T11:31:12", + "TransactionId": 67823403, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 91589152, + "PaymentType": "Credit Card" + }, + { + "Id": 16585, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2017-04-30T17:34:22", + "TransactionId": 54087487, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 222, + "CustomerInfo": 66878653, + "PaymentType": "Debit Card" + }, + { + "Id": 16586, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2016-07-19T10:48:09", + "TransactionId": 23787322, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 124, + "CustomerInfo": 8492695, + "PaymentType": "Debit Card" + }, + { + "Id": 16587, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-10-14T17:03:42", + "TransactionId": 73124780, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 88, + "CustomerInfo": 6122966, + "PaymentType": "Cash" + }, + { + "Id": 16588, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-08-01T10:46:51", + "TransactionId": 14768519, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 232, + "CustomerInfo": 83587839, + "PaymentType": "Credit Card" + }, + { + "Id": 16589, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2017-01-17T15:28:13", + "TransactionId": 25462980, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 386, + "CustomerInfo": 53567245, + "PaymentType": "Cash" + }, + { + "Id": 16590, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-11-18T14:11:28", + "TransactionId": 45584200, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 460, + "CustomerInfo": 8966866, + "PaymentType": "Debit Card" + }, + { + "Id": 16591, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-11-20T15:31:41", + "TransactionId": 38191687, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 1000, + "CustomerInfo": 16762227, + "PaymentType": "Debit Card" + }, + { + "Id": 16592, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2018-03-29T09:54:26", + "TransactionId": 48659068, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 831, + "CustomerInfo": 68199508, + "PaymentType": "Debit Card" + }, + { + "Id": 16593, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2019-06-28T09:36:52", + "TransactionId": 31586644, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 88, + "CustomerInfo": 88303850, + "PaymentType": "Debit Card" + }, + { + "Id": 16594, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-5", + "TransactionDate": "2016-04-12T13:57:22", + "TransactionId": 76547187, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 259, + "CustomerInfo": 80356119, + "PaymentType": "Debit Card" + }, + { + "Id": 16595, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2016-07-08T16:58:13", + "TransactionId": 83382135, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 65725343, + "PaymentType": "Debit Card" + }, + { + "Id": 16596, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-04-13T16:54:37", + "TransactionId": 38581652, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 27, + "CustomerInfo": 22286603, + "PaymentType": "Cash" + }, + { + "Id": 16597, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-01-28T13:44:59", + "TransactionId": 25478394, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 602, + "CustomerInfo": 23294186, + "PaymentType": "Cash" + }, + { + "Id": 16598, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-07-29T17:55:24", + "TransactionId": 19912771, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 929, + "CustomerInfo": 38288836, + "PaymentType": "Cash" + }, + { + "Id": 16599, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-11-01T13:12:26", + "TransactionId": 33243798, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 221, + "CustomerInfo": 25096200, + "PaymentType": "Debit Card" + }, + { + "Id": 16600, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2016-04-22T18:38:44", + "TransactionId": 12607988, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 308, + "CustomerInfo": 10815386, + "PaymentType": "Credit Card" + }, + { + "Id": 16601, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-09-04T19:30:35", + "TransactionId": 11806521, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 546, + "CustomerInfo": 18742484, + "PaymentType": "Debit Card" + }, + { + "Id": 16602, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2019-10-08T16:14:10", + "TransactionId": 30733416, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 3, + "CustomerInfo": 42558163, + "PaymentType": "Cash" + }, + { + "Id": 16603, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2019-07-09T10:26:24", + "TransactionId": 32018157, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 104, + "CustomerInfo": 9313, + "PaymentType": "Debit Card" + }, + { + "Id": 16604, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-04-19T18:50:59", + "TransactionId": 24538794, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 223, + "CustomerInfo": 52441943, + "PaymentType": "Debit Card" + }, + { + "Id": 16605, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2016-09-14T07:07:49", + "TransactionId": 27713051, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 313, + "CustomerInfo": 17004149, + "PaymentType": "Credit Card" + }, + { + "Id": 16606, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2019-04-06T17:33:48", + "TransactionId": 49645825, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 382, + "CustomerInfo": 99075358, + "PaymentType": "Cash" + }, + { + "Id": 16607, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-06-01T11:07:18", + "TransactionId": 70180939, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 278, + "CustomerInfo": 87531371, + "PaymentType": "Cash" + }, + { + "Id": 16608, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2018-08-19T07:14:18", + "TransactionId": 64228091, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 33028390, + "PaymentType": "Credit Card" + }, + { + "Id": 16609, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2018-04-10T15:19:52", + "TransactionId": 11177056, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 402, + "CustomerInfo": 38973333, + "PaymentType": "Cash" + }, + { + "Id": 16610, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2019-02-10T17:15:48", + "TransactionId": 35032575, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 818, + "CustomerInfo": 46849152, + "PaymentType": "Cash" + }, + { + "Id": 16611, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-02-16T08:01:24", + "TransactionId": 87577359, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 398, + "CustomerInfo": 8841830, + "PaymentType": "Credit Card" + }, + { + "Id": 16612, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2018-03-23T11:23:34", + "TransactionId": 66458530, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 355, + "CustomerInfo": 71742106, + "PaymentType": "Cash" + }, + { + "Id": 16613, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2018-11-06T09:18:17", + "TransactionId": 27034418, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 70, + "CustomerInfo": 64022189, + "PaymentType": "Credit Card" + }, + { + "Id": 16614, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2019-08-19T15:51:42", + "TransactionId": 8464145, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 147, + "CustomerInfo": 53415957, + "PaymentType": "Credit Card" + }, + { + "Id": 16615, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2016-08-13T18:26:12", + "TransactionId": 8084947, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 96, + "CustomerInfo": 68437939, + "PaymentType": "Cash" + }, + { + "Id": 16616, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-07-08T07:07:41", + "TransactionId": 91924380, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 664, + "CustomerInfo": 82671207, + "PaymentType": "Debit Card" + }, + { + "Id": 16617, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-04-06T19:14:44", + "TransactionId": 11011193, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 439, + "CustomerInfo": 32107376, + "PaymentType": "Cash" + }, + { + "Id": 16618, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2017-08-12T11:59:25", + "TransactionId": 51248565, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 350, + "CustomerInfo": 46833373, + "PaymentType": "Debit Card" + }, + { + "Id": 16619, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2018-01-06T15:37:00", + "TransactionId": 98485334, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 530, + "CustomerInfo": 29185181, + "PaymentType": "Cash" + }, + { + "Id": 16620, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-08-19T12:19:52", + "TransactionId": 49301008, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 191, + "CustomerInfo": 19016102, + "PaymentType": "Cash" + }, + { + "Id": 16621, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-09-23T15:13:58", + "TransactionId": 22171829, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 509, + "CustomerInfo": 28448063, + "PaymentType": "Cash" + }, + { + "Id": 16622, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2017-10-30T11:36:14", + "TransactionId": 70725238, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 259, + "CustomerInfo": 15155266, + "PaymentType": "Debit Card" + }, + { + "Id": 16623, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2016-02-07T19:27:42", + "TransactionId": 20044132, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 301, + "CustomerInfo": 44626387, + "PaymentType": "Cash" + }, + { + "Id": 16624, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-03-27T11:32:30", + "TransactionId": 97029770, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 158, + "CustomerInfo": 20968799, + "PaymentType": "Credit Card" + }, + { + "Id": 16625, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2016-07-15T09:51:16", + "TransactionId": 87432391, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 280, + "CustomerInfo": 51683246, + "PaymentType": "Cash" + }, + { + "Id": 16626, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-06-07T19:46:51", + "TransactionId": 28103315, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 357, + "CustomerInfo": 34644153, + "PaymentType": "Debit Card" + }, + { + "Id": 16627, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-04-14T16:39:22", + "TransactionId": 72768942, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 597, + "CustomerInfo": 28349088, + "PaymentType": "Credit Card" + }, + { + "Id": 16628, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2017-07-26T07:05:31", + "TransactionId": 93396935, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 406, + "CustomerInfo": 38146327, + "PaymentType": "Debit Card" + }, + { + "Id": 16629, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-06-12T14:51:48", + "TransactionId": 67097837, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 740, + "CustomerInfo": 8036123, + "PaymentType": "Credit Card" + }, + { + "Id": 16630, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-01-26T19:07:06", + "TransactionId": 53226091, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 973, + "CustomerInfo": 77777500, + "PaymentType": "Cash" + }, + { + "Id": 16631, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2016-02-01T13:13:35", + "TransactionId": 35539771, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 25, + "CustomerInfo": 2097450, + "PaymentType": "Debit Card" + }, + { + "Id": 16632, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-1", + "TransactionDate": "2018-03-02T11:01:15", + "TransactionId": 50958287, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 433, + "CustomerInfo": 75046454, + "PaymentType": "Credit Card" + }, + { + "Id": 16633, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2016-08-15T17:00:32", + "TransactionId": 1235582, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 601, + "CustomerInfo": 27475683, + "PaymentType": "Credit Card" + }, + { + "Id": 16634, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-03-17T18:41:28", + "TransactionId": 80052220, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 509, + "CustomerInfo": 89596641, + "PaymentType": "Debit Card" + }, + { + "Id": 16635, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-09-11T10:34:54", + "TransactionId": 55560359, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 698, + "CustomerInfo": 4912380, + "PaymentType": "Debit Card" + }, + { + "Id": 16636, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-10-17T09:49:06", + "TransactionId": 83073906, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 327, + "CustomerInfo": 57533997, + "PaymentType": "Credit Card" + }, + { + "Id": 16637, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2019-02-17T07:21:30", + "TransactionId": 25338350, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 260, + "CustomerInfo": 89483279, + "PaymentType": "Debit Card" + }, + { + "Id": 16638, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-09-24T09:34:16", + "TransactionId": 27752238, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 375, + "CustomerInfo": 63348501, + "PaymentType": "Cash" + }, + { + "Id": 16639, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2017-02-11T16:19:29", + "TransactionId": 16933801, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 860, + "CustomerInfo": 85557676, + "PaymentType": "Cash" + }, + { + "Id": 16640, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-11-25T08:07:35", + "TransactionId": 33401315, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 949, + "CustomerInfo": 11504436, + "PaymentType": "Cash" + }, + { + "Id": 16641, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2017-12-04T09:11:14", + "TransactionId": 44561793, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 619, + "CustomerInfo": 50576698, + "PaymentType": "Credit Card" + }, + { + "Id": 16642, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2019-03-05T14:17:48", + "TransactionId": 83063644, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 132, + "CustomerInfo": 48070653, + "PaymentType": "Debit Card" + }, + { + "Id": 16643, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-02-24T15:21:27", + "TransactionId": 75401293, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 127, + "CustomerInfo": 17807958, + "PaymentType": "Credit Card" + }, + { + "Id": 16644, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-08-25T15:33:16", + "TransactionId": 26594488, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 553, + "CustomerInfo": 31741616, + "PaymentType": "Credit Card" + }, + { + "Id": 16645, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2018-11-28T10:28:25", + "TransactionId": 45180731, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 431, + "CustomerInfo": 34865261, + "PaymentType": "Cash" + }, + { + "Id": 16646, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-06-07T10:14:36", + "TransactionId": 29509912, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 367, + "CustomerInfo": 62094285, + "PaymentType": "Credit Card" + }, + { + "Id": 16647, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-03-04T18:21:27", + "TransactionId": 92776930, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 937, + "CustomerInfo": 14611343, + "PaymentType": "Credit Card" + }, + { + "Id": 16648, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2017-12-14T12:26:21", + "TransactionId": 81557852, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 851, + "CustomerInfo": 90669078, + "PaymentType": "Credit Card" + }, + { + "Id": 16649, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2018-02-20T10:30:43", + "TransactionId": 46167946, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 780, + "CustomerInfo": 50136865, + "PaymentType": "Cash" + }, + { + "Id": 16650, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2019-11-03T09:16:34", + "TransactionId": 60768009, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 206, + "CustomerInfo": 74636893, + "PaymentType": "Cash" + }, + { + "Id": 16651, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2017-06-21T11:31:29", + "TransactionId": 68086403, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 646, + "CustomerInfo": 79678031, + "PaymentType": "Credit Card" + }, + { + "Id": 16652, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-11-22T14:08:44", + "TransactionId": 60600549, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 769, + "CustomerInfo": 6806189, + "PaymentType": "Credit Card" + }, + { + "Id": 16653, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-12-05T19:24:58", + "TransactionId": 21685379, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 882, + "CustomerInfo": 21986460, + "PaymentType": "Debit Card" + }, + { + "Id": 16654, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2017-03-16T07:19:03", + "TransactionId": 27937217, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 723, + "CustomerInfo": 1508641, + "PaymentType": "Credit Card" + }, + { + "Id": 16655, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2019-04-27T10:05:31", + "TransactionId": 12556118, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 482, + "CustomerInfo": 80168810, + "PaymentType": "Credit Card" + }, + { + "Id": 16656, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2016-02-11T14:27:53", + "TransactionId": 35286731, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 492, + "CustomerInfo": 47240988, + "PaymentType": "Cash" + }, + { + "Id": 16657, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-10-02T07:33:01", + "TransactionId": 85441930, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 890, + "CustomerInfo": 1165572, + "PaymentType": "Cash" + }, + { + "Id": 16658, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-1", + "TransactionDate": "2018-04-30T09:58:28", + "TransactionId": 62004857, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 122, + "CustomerInfo": 76933791, + "PaymentType": "Debit Card" + }, + { + "Id": 16659, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2016-09-03T08:13:55", + "TransactionId": 94370398, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 824, + "CustomerInfo": 13468091, + "PaymentType": "Cash" + }, + { + "Id": 16660, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2017-12-05T07:24:14", + "TransactionId": 32637266, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 799, + "CustomerInfo": 53465217, + "PaymentType": "Credit Card" + }, + { + "Id": 16661, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2019-10-20T11:19:58", + "TransactionId": 61706227, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 661, + "CustomerInfo": 55303920, + "PaymentType": "Cash" + }, + { + "Id": 16662, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2017-11-30T10:04:05", + "TransactionId": 42396677, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 690, + "CustomerInfo": 50763272, + "PaymentType": "Cash" + }, + { + "Id": 16663, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2016-10-22T07:05:23", + "TransactionId": 62555069, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 577, + "CustomerInfo": 55998813, + "PaymentType": "Cash" + }, + { + "Id": 16664, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2018-04-24T19:03:56", + "TransactionId": 40983149, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 235, + "CustomerInfo": 20631518, + "PaymentType": "Debit Card" + }, + { + "Id": 16665, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2019-02-27T13:08:07", + "TransactionId": 30004664, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 687, + "CustomerInfo": 97552691, + "PaymentType": "Credit Card" + }, + { + "Id": 16666, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-07-29T07:40:31", + "TransactionId": 99343719, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 170, + "CustomerInfo": 79259334, + "PaymentType": "Credit Card" + }, + { + "Id": 16667, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-3", + "TransactionDate": "2018-05-12T14:51:56", + "TransactionId": 50074261, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 420, + "CustomerInfo": 88004082, + "PaymentType": "Debit Card" + }, + { + "Id": 16668, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2016-08-25T17:44:53", + "TransactionId": 48685484, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 642, + "CustomerInfo": 87981152, + "PaymentType": "Debit Card" + }, + { + "Id": 16669, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2017-04-21T16:29:17", + "TransactionId": 55319741, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 89, + "CustomerInfo": 63242174, + "PaymentType": "Debit Card" + }, + { + "Id": 16670, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2018-07-02T07:43:15", + "TransactionId": 92009666, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 163, + "CustomerInfo": 75904323, + "PaymentType": "Credit Card" + }, + { + "Id": 16671, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2016-04-03T11:02:41", + "TransactionId": 65934042, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 450, + "CustomerInfo": 30689985, + "PaymentType": "Credit Card" + }, + { + "Id": 16672, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2018-06-16T11:52:22", + "TransactionId": 35728526, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 284, + "CustomerInfo": 73036547, + "PaymentType": "Debit Card" + }, + { + "Id": 16673, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2019-07-14T09:54:26", + "TransactionId": 56775745, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 725, + "CustomerInfo": 475718, + "PaymentType": "Cash" + }, + { + "Id": 16674, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-02-13T14:04:25", + "TransactionId": 94902842, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 384, + "CustomerInfo": 80930735, + "PaymentType": "Debit Card" + }, + { + "Id": 16675, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-02-19T09:19:35", + "TransactionId": 65079386, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 977, + "CustomerInfo": 32694091, + "PaymentType": "Debit Card" + }, + { + "Id": 16676, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2016-03-07T15:48:58", + "TransactionId": 58289196, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 655, + "CustomerInfo": 27452049, + "PaymentType": "Debit Card" + }, + { + "Id": 16677, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-07-09T17:40:51", + "TransactionId": 30829637, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 138, + "CustomerInfo": 18346113, + "PaymentType": "Debit Card" + }, + { + "Id": 16678, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2017-10-16T15:49:06", + "TransactionId": 10717474, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 892, + "CustomerInfo": 34750534, + "PaymentType": "Credit Card" + }, + { + "Id": 16679, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2018-06-01T12:42:12", + "TransactionId": 63586532, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 906, + "CustomerInfo": 78930279, + "PaymentType": "Credit Card" + }, + { + "Id": 16680, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-04-17T13:09:16", + "TransactionId": 51208445, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 723, + "CustomerInfo": 2513172, + "PaymentType": "Cash" + }, + { + "Id": 16681, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2019-09-27T08:20:50", + "TransactionId": 14276961, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 332, + "CustomerInfo": 75458689, + "PaymentType": "Credit Card" + }, + { + "Id": 16682, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2016-06-07T08:58:25", + "TransactionId": 27520955, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 6701230, + "PaymentType": "Cash" + }, + { + "Id": 16683, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-12-13T19:47:51", + "TransactionId": 51140425, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 6, + "CustomerInfo": 92639083, + "PaymentType": "Cash" + }, + { + "Id": 16684, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2018-03-01T14:24:52", + "TransactionId": 61368402, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 935, + "CustomerInfo": 48047405, + "PaymentType": "Credit Card" + }, + { + "Id": 16685, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-09-24T18:55:18", + "TransactionId": 82220444, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 934, + "CustomerInfo": 71920155, + "PaymentType": "Cash" + }, + { + "Id": 16686, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-04-17T16:43:49", + "TransactionId": 46743553, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 408, + "CustomerInfo": 95825198, + "PaymentType": "Debit Card" + }, + { + "Id": 16687, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2018-03-07T15:19:26", + "TransactionId": 34982396, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 590, + "CustomerInfo": 96053310, + "PaymentType": "Cash" + }, + { + "Id": 16688, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-02-18T19:17:54", + "TransactionId": 45644895, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 160, + "CustomerInfo": 77530445, + "PaymentType": "Credit Card" + }, + { + "Id": 16689, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-4", + "TransactionDate": "2019-06-02T16:41:48", + "TransactionId": 27579379, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 657, + "CustomerInfo": 73872142, + "PaymentType": "Debit Card" + }, + { + "Id": 16690, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2016-05-31T13:25:15", + "TransactionId": 21758156, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 686, + "CustomerInfo": 53522780, + "PaymentType": "Debit Card" + }, + { + "Id": 16691, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2016-09-25T14:46:11", + "TransactionId": 14340838, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 500, + "CustomerInfo": 27335564, + "PaymentType": "Credit Card" + }, + { + "Id": 16692, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2017-02-23T08:42:26", + "TransactionId": 80793574, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 30990268, + "PaymentType": "Credit Card" + }, + { + "Id": 16693, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2018-04-28T16:58:31", + "TransactionId": 87395264, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 902, + "CustomerInfo": 98695881, + "PaymentType": "Credit Card" + }, + { + "Id": 16694, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-12-19T17:19:32", + "TransactionId": 93560721, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 462, + "CustomerInfo": 92184693, + "PaymentType": "Credit Card" + }, + { + "Id": 16695, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-04-14T14:40:34", + "TransactionId": 65831670, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 92, + "CustomerInfo": 95496794, + "PaymentType": "Credit Card" + }, + { + "Id": 16696, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-09-24T18:35:08", + "TransactionId": 33260097, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 578, + "CustomerInfo": 11156398, + "PaymentType": "Debit Card" + }, + { + "Id": 16697, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-03-12T08:48:20", + "TransactionId": 62710064, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 442, + "CustomerInfo": 42898692, + "PaymentType": "Credit Card" + }, + { + "Id": 16698, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-11-28T08:27:10", + "TransactionId": 24612563, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 81, + "CustomerInfo": 62753075, + "PaymentType": "Cash" + }, + { + "Id": 16699, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-08-01T12:29:57", + "TransactionId": 57049670, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 337, + "CustomerInfo": 86248335, + "PaymentType": "Cash" + }, + { + "Id": 16700, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2018-03-14T10:36:03", + "TransactionId": 95099822, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 535, + "CustomerInfo": 73920530, + "PaymentType": "Cash" + }, + { + "Id": 16701, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2019-10-07T07:16:19", + "TransactionId": 90947816, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 733, + "CustomerInfo": 8843369, + "PaymentType": "Credit Card" + }, + { + "Id": 16702, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2019-09-23T18:07:12", + "TransactionId": 85619587, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 822, + "CustomerInfo": 38378306, + "PaymentType": "Debit Card" + }, + { + "Id": 16703, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2018-07-03T17:12:29", + "TransactionId": 20372494, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 458, + "CustomerInfo": 89651434, + "PaymentType": "Debit Card" + }, + { + "Id": 16704, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2018-10-30T18:45:39", + "TransactionId": 54328609, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 308, + "CustomerInfo": 96980495, + "PaymentType": "Credit Card" + }, + { + "Id": 16705, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2017-04-18T19:53:02", + "TransactionId": 5279400, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 98, + "CustomerInfo": 78257644, + "PaymentType": "Debit Card" + }, + { + "Id": 16706, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-10-01T15:45:56", + "TransactionId": 72292998, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 448, + "CustomerInfo": 36811480, + "PaymentType": "Cash" + }, + { + "Id": 16707, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-07-06T16:18:12", + "TransactionId": 43488629, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 230, + "CustomerInfo": 93033733, + "PaymentType": "Debit Card" + }, + { + "Id": 16708, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2019-10-25T14:48:55", + "TransactionId": 68223576, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 157, + "CustomerInfo": 86295939, + "PaymentType": "Credit Card" + }, + { + "Id": 16709, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-05-08T09:23:46", + "TransactionId": 61153804, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 308, + "CustomerInfo": 17186061, + "PaymentType": "Cash" + }, + { + "Id": 16710, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2018-04-24T14:32:04", + "TransactionId": 15638026, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 958, + "CustomerInfo": 68973360, + "PaymentType": "Cash" + }, + { + "Id": 16711, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-4", + "TransactionDate": "2016-02-11T09:30:58", + "TransactionId": 46098644, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 71954820, + "PaymentType": "Credit Card" + }, + { + "Id": 16712, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2017-05-31T18:42:29", + "TransactionId": 58875759, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 861, + "CustomerInfo": 14548793, + "PaymentType": "Credit Card" + }, + { + "Id": 16713, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2018-10-31T12:00:09", + "TransactionId": 68190305, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 424, + "CustomerInfo": 62231822, + "PaymentType": "Debit Card" + }, + { + "Id": 16714, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2017-05-15T12:13:41", + "TransactionId": 97499658, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 300, + "CustomerInfo": 3313998, + "PaymentType": "Credit Card" + }, + { + "Id": 16715, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2019-02-21T17:18:49", + "TransactionId": 655695, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 56, + "CustomerInfo": 4165126, + "PaymentType": "Debit Card" + }, + { + "Id": 16716, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2017-11-19T13:19:21", + "TransactionId": 36443144, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 341, + "CustomerInfo": 54962073, + "PaymentType": "Cash" + }, + { + "Id": 16717, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-12-08T18:10:13", + "TransactionId": 77667552, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 63946104, + "PaymentType": "Cash" + }, + { + "Id": 16718, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-05-10T15:40:11", + "TransactionId": 60906895, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 655, + "CustomerInfo": 38604665, + "PaymentType": "Debit Card" + }, + { + "Id": 16719, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-07-06T09:12:32", + "TransactionId": 25591488, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 685, + "CustomerInfo": 10366319, + "PaymentType": "Debit Card" + }, + { + "Id": 16720, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2016-03-31T07:55:29", + "TransactionId": 57532044, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 510, + "CustomerInfo": 4247384, + "PaymentType": "Credit Card" + }, + { + "Id": 16721, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2016-07-25T16:02:38", + "TransactionId": 43798707, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 860, + "CustomerInfo": 75061961, + "PaymentType": "Cash" + }, + { + "Id": 16722, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-10-31T07:36:46", + "TransactionId": 90826956, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 892, + "CustomerInfo": 56067049, + "PaymentType": "Credit Card" + }, + { + "Id": 16723, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2019-01-05T14:13:38", + "TransactionId": 78455639, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 133, + "CustomerInfo": 52427403, + "PaymentType": "Credit Card" + }, + { + "Id": 16724, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2016-12-15T10:16:19", + "TransactionId": 77762723, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 206, + "CustomerInfo": 51424007, + "PaymentType": "Debit Card" + }, + { + "Id": 16725, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2018-03-23T17:19:41", + "TransactionId": 15235436, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 876, + "CustomerInfo": 48703269, + "PaymentType": "Cash" + }, + { + "Id": 16726, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-10-01T19:34:28", + "TransactionId": 53315069, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 738, + "CustomerInfo": 34324389, + "PaymentType": "Cash" + }, + { + "Id": 16727, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-02-28T18:17:34", + "TransactionId": 53111675, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 17622132, + "PaymentType": "Debit Card" + }, + { + "Id": 16728, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2019-10-03T12:53:43", + "TransactionId": 41005070, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 560, + "CustomerInfo": 35487012, + "PaymentType": "Credit Card" + }, + { + "Id": 16729, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2019-10-26T13:35:54", + "TransactionId": 13393648, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 87, + "CustomerInfo": 18438054, + "PaymentType": "Cash" + }, + { + "Id": 16730, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-3", + "TransactionDate": "2017-10-03T11:57:24", + "TransactionId": 53752787, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 444, + "CustomerInfo": 42227304, + "PaymentType": "Credit Card" + }, + { + "Id": 16731, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2016-05-21T14:13:29", + "TransactionId": 35517564, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 594, + "CustomerInfo": 26347738, + "PaymentType": "Debit Card" + }, + { + "Id": 16732, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2019-12-24T07:48:35", + "TransactionId": 95005797, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 951, + "CustomerInfo": 81715359, + "PaymentType": "Debit Card" + }, + { + "Id": 16733, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2017-11-20T07:13:44", + "TransactionId": 6823152, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 976, + "CustomerInfo": 96443418, + "PaymentType": "Credit Card" + }, + { + "Id": 16734, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2017-03-10T07:40:57", + "TransactionId": 3805687, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 182, + "CustomerInfo": 6334166, + "PaymentType": "Debit Card" + }, + { + "Id": 16735, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-11-01T09:07:21", + "TransactionId": 9832371, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 16891829, + "PaymentType": "Cash" + }, + { + "Id": 16736, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-03-03T15:18:00", + "TransactionId": 93831409, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 158, + "CustomerInfo": 98707917, + "PaymentType": "Cash" + }, + { + "Id": 16737, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2019-08-20T15:23:54", + "TransactionId": 3903505, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 218, + "CustomerInfo": 14519409, + "PaymentType": "Debit Card" + }, + { + "Id": 16738, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-08-24T11:46:54", + "TransactionId": 84176293, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 662, + "CustomerInfo": 70797972, + "PaymentType": "Cash" + }, + { + "Id": 16739, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2018-04-23T18:22:02", + "TransactionId": 19049136, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 768, + "CustomerInfo": 40647042, + "PaymentType": "Credit Card" + }, + { + "Id": 16740, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2018-12-03T09:35:34", + "TransactionId": 44558037, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 382, + "CustomerInfo": 12943695, + "PaymentType": "Cash" + }, + { + "Id": 16741, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2019-03-22T16:00:55", + "TransactionId": 33265839, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 493, + "CustomerInfo": 9113489, + "PaymentType": "Credit Card" + }, + { + "Id": 16742, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2018-08-21T10:13:44", + "TransactionId": 18298077, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 620, + "CustomerInfo": 6879317, + "PaymentType": "Debit Card" + }, + { + "Id": 16743, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-12-21T07:37:12", + "TransactionId": 71924221, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 870, + "CustomerInfo": 49026470, + "PaymentType": "Credit Card" + }, + { + "Id": 16744, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-08-01T18:50:41", + "TransactionId": 32740872, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 487, + "CustomerInfo": 16962516, + "PaymentType": "Debit Card" + }, + { + "Id": 16745, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2017-06-05T12:57:36", + "TransactionId": 57285291, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 61556873, + "PaymentType": "Credit Card" + }, + { + "Id": 16746, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2019-04-14T14:33:39", + "TransactionId": 49138674, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 642, + "CustomerInfo": 90022863, + "PaymentType": "Cash" + }, + { + "Id": 16747, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2017-09-10T12:57:53", + "TransactionId": 62379102, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 167, + "CustomerInfo": 59609767, + "PaymentType": "Cash" + }, + { + "Id": 16748, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-02-21T11:57:59", + "TransactionId": 64967035, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 388, + "CustomerInfo": 65327758, + "PaymentType": "Debit Card" + }, + { + "Id": 16749, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2017-03-26T12:53:43", + "TransactionId": 4732405, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 749, + "CustomerInfo": 5559399, + "PaymentType": "Debit Card" + }, + { + "Id": 16750, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-10-09T10:48:17", + "TransactionId": 50215347, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 807, + "CustomerInfo": 1846928, + "PaymentType": "Debit Card" + }, + { + "Id": 16751, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2016-07-15T14:14:38", + "TransactionId": 563819, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 849, + "CustomerInfo": 91170395, + "PaymentType": "Credit Card" + }, + { + "Id": 16752, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-2", + "TransactionDate": "2019-12-21T11:48:03", + "TransactionId": 95539862, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 847, + "CustomerInfo": 65113034, + "PaymentType": "Debit Card" + }, + { + "Id": 16753, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-01-08T08:37:49", + "TransactionId": 81075452, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 942, + "CustomerInfo": 9176284, + "PaymentType": "Debit Card" + }, + { + "Id": 16754, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2018-11-12T09:02:10", + "TransactionId": 282154, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 975, + "CustomerInfo": 42146457, + "PaymentType": "Debit Card" + }, + { + "Id": 16755, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2016-01-12T09:42:46", + "TransactionId": 19275812, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 766, + "CustomerInfo": 94889394, + "PaymentType": "Credit Card" + }, + { + "Id": 16756, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2019-09-15T16:32:10", + "TransactionId": 64547760, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 95, + "CustomerInfo": 6243700, + "PaymentType": "Debit Card" + }, + { + "Id": 16757, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2017-11-27T07:46:25", + "TransactionId": 55324842, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 82, + "CustomerInfo": 98469331, + "PaymentType": "Credit Card" + }, + { + "Id": 16758, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2016-11-12T12:43:29", + "TransactionId": 38751054, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 794, + "CustomerInfo": 32398278, + "PaymentType": "Debit Card" + }, + { + "Id": 16759, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-05-18T12:30:23", + "TransactionId": 11765665, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 237, + "CustomerInfo": 25003963, + "PaymentType": "Credit Card" + }, + { + "Id": 16760, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-07-15T10:39:48", + "TransactionId": 99993452, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 718, + "CustomerInfo": 95671952, + "PaymentType": "Debit Card" + }, + { + "Id": 16761, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-02-13T09:36:43", + "TransactionId": 76545797, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 756, + "CustomerInfo": 16779912, + "PaymentType": "Cash" + }, + { + "Id": 16762, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2017-09-19T07:56:12", + "TransactionId": 97216019, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 950, + "CustomerInfo": 73529361, + "PaymentType": "Debit Card" + }, + { + "Id": 16763, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2018-09-30T07:05:05", + "TransactionId": 66017140, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 484, + "CustomerInfo": 13306931, + "PaymentType": "Debit Card" + }, + { + "Id": 16764, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2019-03-30T15:19:26", + "TransactionId": 55484162, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 747, + "CustomerInfo": 51306568, + "PaymentType": "Credit Card" + }, + { + "Id": 16765, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2018-10-23T14:40:51", + "TransactionId": 41948055, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 186, + "CustomerInfo": 35188592, + "PaymentType": "Credit Card" + }, + { + "Id": 16766, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2017-02-18T11:53:57", + "TransactionId": 14782082, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 181, + "CustomerInfo": 65356838, + "PaymentType": "Debit Card" + }, + { + "Id": 16767, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2016-12-14T12:52:25", + "TransactionId": 53641931, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 53, + "CustomerInfo": 72606832, + "PaymentType": "Cash" + }, + { + "Id": 16768, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2016-12-01T11:38:24", + "TransactionId": 1748867, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 899, + "CustomerInfo": 6119408, + "PaymentType": "Cash" + }, + { + "Id": 16769, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2018-06-05T13:44:15", + "TransactionId": 13046908, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 552, + "CustomerInfo": 90330139, + "PaymentType": "Credit Card" + }, + { + "Id": 16770, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-3", + "TransactionDate": "2018-12-19T13:44:50", + "TransactionId": 36254732, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 212, + "CustomerInfo": 42256075, + "PaymentType": "Credit Card" + }, + { + "Id": 16771, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-05-03T14:30:12", + "TransactionId": 28182, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 518, + "CustomerInfo": 92153149, + "PaymentType": "Debit Card" + }, + { + "Id": 16772, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-01-27T08:39:07", + "TransactionId": 93023876, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 555, + "CustomerInfo": 76855472, + "PaymentType": "Credit Card" + }, + { + "Id": 16773, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-04-14T08:51:48", + "TransactionId": 52828274, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 703, + "CustomerInfo": 45125999, + "PaymentType": "Credit Card" + }, + { + "Id": 16774, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2018-01-05T07:46:16", + "TransactionId": 48058004, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 793, + "CustomerInfo": 20481326, + "PaymentType": "Debit Card" + }, + { + "Id": 16775, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-08-13T08:42:35", + "TransactionId": 5152554, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 780, + "CustomerInfo": 74101962, + "PaymentType": "Debit Card" + }, + { + "Id": 16776, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-02-12T11:22:16", + "TransactionId": 68708816, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 878, + "CustomerInfo": 13106247, + "PaymentType": "Credit Card" + }, + { + "Id": 16777, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-4", + "TransactionDate": "2017-07-03T13:36:12", + "TransactionId": 92628194, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 181, + "CustomerInfo": 29617855, + "PaymentType": "Debit Card" + }, + { + "Id": 16778, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2018-07-12T15:58:02", + "TransactionId": 63758841, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 676, + "CustomerInfo": 59056003, + "PaymentType": "Debit Card" + }, + { + "Id": 16779, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2019-04-18T16:26:59", + "TransactionId": 54102991, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 420, + "CustomerInfo": 96197076, + "PaymentType": "Credit Card" + }, + { + "Id": 16780, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-07-01T15:43:55", + "TransactionId": 81185200, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 341, + "CustomerInfo": 66178993, + "PaymentType": "Cash" + }, + { + "Id": 16781, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-08-19T17:18:49", + "TransactionId": 96458941, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 9, + "CustomerInfo": 74743572, + "PaymentType": "Credit Card" + }, + { + "Id": 16782, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2019-08-21T08:46:28", + "TransactionId": 94801656, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 637, + "CustomerInfo": 98167628, + "PaymentType": "Debit Card" + }, + { + "Id": 16783, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-01-14T07:40:48", + "TransactionId": 37703821, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 319, + "CustomerInfo": 15548630, + "PaymentType": "Credit Card" + }, + { + "Id": 16784, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-05-15T16:03:56", + "TransactionId": 3543749, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 312, + "CustomerInfo": 99633399, + "PaymentType": "Debit Card" + }, + { + "Id": 16785, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2017-10-18T08:45:10", + "TransactionId": 78054671, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 651, + "CustomerInfo": 37972041, + "PaymentType": "Debit Card" + }, + { + "Id": 16786, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2019-12-26T15:29:48", + "TransactionId": 20534098, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 483, + "CustomerInfo": 97519299, + "PaymentType": "Cash" + }, + { + "Id": 16787, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-5", + "TransactionDate": "2016-02-28T07:47:51", + "TransactionId": 14328494, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 745, + "CustomerInfo": 24384364, + "PaymentType": "Cash" + }, + { + "Id": 16788, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-08-27T10:05:40", + "TransactionId": 8790049, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 694, + "CustomerInfo": 50039723, + "PaymentType": "Credit Card" + }, + { + "Id": 16789, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2019-07-22T11:47:46", + "TransactionId": 87042621, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 339, + "CustomerInfo": 96208699, + "PaymentType": "Cash" + }, + { + "Id": 16790, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2019-07-13T11:48:29", + "TransactionId": 80083734, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 151, + "CustomerInfo": 29991278, + "PaymentType": "Cash" + }, + { + "Id": 16791, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-04-03T17:32:47", + "TransactionId": 49584061, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 582, + "CustomerInfo": 97028274, + "PaymentType": "Credit Card" + }, + { + "Id": 16792, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-5", + "TransactionDate": "2019-11-18T11:16:39", + "TransactionId": 16255449, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 898, + "CustomerInfo": 63184582, + "PaymentType": "Credit Card" + }, + { + "Id": 16793, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2018-04-13T08:48:12", + "TransactionId": 31567595, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 865, + "CustomerInfo": 53115991, + "PaymentType": "Cash" + }, + { + "Id": 16794, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-07-01T14:57:24", + "TransactionId": 5704068, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 88, + "CustomerInfo": 37579151, + "PaymentType": "Debit Card" + }, + { + "Id": 16795, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2018-03-03T17:02:59", + "TransactionId": 63917036, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 280, + "CustomerInfo": 6198733, + "PaymentType": "Debit Card" + }, + { + "Id": 16796, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2019-09-10T07:51:01", + "TransactionId": 88767129, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 208, + "CustomerInfo": 62480755, + "PaymentType": "Debit Card" + }, + { + "Id": 16797, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2016-05-26T09:19:26", + "TransactionId": 44049763, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 398, + "CustomerInfo": 58893006, + "PaymentType": "Credit Card" + }, + { + "Id": 16798, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2016-05-20T07:20:47", + "TransactionId": 42805038, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 714, + "CustomerInfo": 53828873, + "PaymentType": "Credit Card" + }, + { + "Id": 16799, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-05-30T18:59:11", + "TransactionId": 10015013, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 625, + "CustomerInfo": 24451815, + "PaymentType": "Cash" + }, + { + "Id": 16800, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-03-17T10:09:59", + "TransactionId": 98557190, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 909, + "CustomerInfo": 56327761, + "PaymentType": "Cash" + }, + { + "Id": 16801, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2017-02-18T08:32:56", + "TransactionId": 22443280, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 966, + "CustomerInfo": 7281247, + "PaymentType": "Cash" + }, + { + "Id": 16802, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2018-09-07T14:39:50", + "TransactionId": 41438526, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 91, + "CustomerInfo": 58804993, + "PaymentType": "Debit Card" + }, + { + "Id": 16803, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-09-07T07:46:34", + "TransactionId": 74288955, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 822, + "CustomerInfo": 94156919, + "PaymentType": "Debit Card" + }, + { + "Id": 16804, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2016-10-26T07:11:17", + "TransactionId": 84586433, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 604, + "CustomerInfo": 79122578, + "PaymentType": "Debit Card" + }, + { + "Id": 16805, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-03-07T12:58:36", + "TransactionId": 86739861, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 658, + "CustomerInfo": 77641624, + "PaymentType": "Credit Card" + }, + { + "Id": 16806, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-09-14T07:20:30", + "TransactionId": 88229166, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 205, + "CustomerInfo": 68453057, + "PaymentType": "Debit Card" + }, + { + "Id": 16807, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2016-04-24T13:06:06", + "TransactionId": 75592065, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 320, + "CustomerInfo": 49668700, + "PaymentType": "Cash" + }, + { + "Id": 16808, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2019-08-27T09:48:32", + "TransactionId": 2478722, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 960, + "CustomerInfo": 40808669, + "PaymentType": "Cash" + }, + { + "Id": 16809, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2018-02-21T19:50:10", + "TransactionId": 56868422, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 400, + "CustomerInfo": 90947497, + "PaymentType": "Debit Card" + }, + { + "Id": 16810, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-2", + "TransactionDate": "2017-09-04T09:36:26", + "TransactionId": 30170628, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 350, + "CustomerInfo": 20195481, + "PaymentType": "Credit Card" + }, + { + "Id": 16811, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2017-04-14T19:33:27", + "TransactionId": 89881497, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 744, + "CustomerInfo": 85870999, + "PaymentType": "Debit Card" + }, + { + "Id": 16812, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-02-05T15:25:21", + "TransactionId": 81549275, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 128, + "CustomerInfo": 37539689, + "PaymentType": "Cash" + }, + { + "Id": 16813, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-03-13T08:19:15", + "TransactionId": 49914688, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 823, + "CustomerInfo": 93119973, + "PaymentType": "Debit Card" + }, + { + "Id": 16814, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2017-07-02T15:20:10", + "TransactionId": 33114011, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 962, + "CustomerInfo": 15841599, + "PaymentType": "Debit Card" + }, + { + "Id": 16815, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2017-11-02T14:58:34", + "TransactionId": 71750536, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 65191673, + "PaymentType": "Debit Card" + }, + { + "Id": 16816, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2018-08-26T17:04:16", + "TransactionId": 64136320, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 963, + "CustomerInfo": 48588121, + "PaymentType": "Cash" + }, + { + "Id": 16817, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-02-07T16:31:26", + "TransactionId": 32606582, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 836, + "CustomerInfo": 98638565, + "PaymentType": "Cash" + }, + { + "Id": 16818, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-05-25T18:37:18", + "TransactionId": 34899427, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 898, + "CustomerInfo": 14912229, + "PaymentType": "Debit Card" + }, + { + "Id": 16819, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2018-11-13T11:47:28", + "TransactionId": 14427539, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 171, + "CustomerInfo": 79608711, + "PaymentType": "Credit Card" + }, + { + "Id": 16820, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-07-31T17:21:50", + "TransactionId": 14966851, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 769, + "CustomerInfo": 88810891, + "PaymentType": "Debit Card" + }, + { + "Id": 16821, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-10-19T13:09:42", + "TransactionId": 49949644, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 406, + "CustomerInfo": 70799026, + "PaymentType": "Credit Card" + }, + { + "Id": 16822, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2017-07-29T19:15:19", + "TransactionId": 95049669, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 324, + "CustomerInfo": 58753507, + "PaymentType": "Cash" + }, + { + "Id": 16823, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-02-13T18:10:22", + "TransactionId": 51356183, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 337, + "CustomerInfo": 1562555, + "PaymentType": "Cash" + }, + { + "Id": 16824, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2016-12-24T19:05:05", + "TransactionId": 47388147, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 181, + "CustomerInfo": 2297848, + "PaymentType": "Credit Card" + }, + { + "Id": 16825, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2019-04-17T14:28:36", + "TransactionId": 39014940, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 247, + "CustomerInfo": 78782709, + "PaymentType": "Credit Card" + }, + { + "Id": 16826, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2017-03-03T11:35:57", + "TransactionId": 43807335, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 512, + "CustomerInfo": 3009973, + "PaymentType": "Debit Card" + }, + { + "Id": 16827, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2018-02-20T10:26:50", + "TransactionId": 19481520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 62, + "CustomerInfo": 56011253, + "PaymentType": "Credit Card" + }, + { + "Id": 16828, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2017-01-16T17:23:17", + "TransactionId": 89421019, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 703, + "CustomerInfo": 33061786, + "PaymentType": "Credit Card" + }, + { + "Id": 16829, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2017-03-15T07:12:00", + "TransactionId": 34000588, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 70, + "CustomerInfo": 56975969, + "PaymentType": "Cash" + }, + { + "Id": 16830, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2016-11-28T11:06:26", + "TransactionId": 44084896, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 52, + "CustomerInfo": 95715152, + "PaymentType": "Credit Card" + }, + { + "Id": 16831, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2016-07-28T11:30:03", + "TransactionId": 21398499, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 827, + "CustomerInfo": 91446071, + "PaymentType": "Cash" + }, + { + "Id": 16832, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2017-11-23T13:04:05", + "TransactionId": 23598983, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 599, + "CustomerInfo": 41499728, + "PaymentType": "Credit Card" + }, + { + "Id": 16833, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2017-02-08T18:16:08", + "TransactionId": 93488640, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 574, + "CustomerInfo": 6105231, + "PaymentType": "Debit Card" + }, + { + "Id": 16834, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2019-08-26T10:42:40", + "TransactionId": 86200263, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 217, + "CustomerInfo": 84194446, + "PaymentType": "Debit Card" + }, + { + "Id": 16835, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-08-28T18:13:58", + "TransactionId": 83986538, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 975, + "CustomerInfo": 37861516, + "PaymentType": "Credit Card" + }, + { + "Id": 16836, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-05-29T09:10:57", + "TransactionId": 74274467, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 468, + "CustomerInfo": 68869480, + "PaymentType": "Cash" + }, + { + "Id": 16837, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2019-02-15T18:22:19", + "TransactionId": 1145412, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 401, + "CustomerInfo": 68714455, + "PaymentType": "Cash" + }, + { + "Id": 16838, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2016-08-31T12:29:57", + "TransactionId": 1315737, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 216, + "CustomerInfo": 11813426, + "PaymentType": "Cash" + }, + { + "Id": 16839, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2018-09-29T10:35:54", + "TransactionId": 45751785, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 831, + "CustomerInfo": 90074748, + "PaymentType": "Credit Card" + }, + { + "Id": 16840, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-06-26T12:29:48", + "TransactionId": 41952345, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 401, + "CustomerInfo": 597852, + "PaymentType": "Credit Card" + }, + { + "Id": 16841, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2019-01-16T07:18:12", + "TransactionId": 19960609, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 319, + "CustomerInfo": 59995705, + "PaymentType": "Credit Card" + }, + { + "Id": 16842, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-12-23T19:31:35", + "TransactionId": 44176990, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 139, + "CustomerInfo": 4328133, + "PaymentType": "Debit Card" + }, + { + "Id": 16843, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2016-08-12T09:21:36", + "TransactionId": 53617893, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 449, + "CustomerInfo": 18650598, + "PaymentType": "Credit Card" + }, + { + "Id": 16844, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-10-02T15:46:57", + "TransactionId": 19387536, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 469, + "CustomerInfo": 18462676, + "PaymentType": "Credit Card" + }, + { + "Id": 16845, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-06-29T17:41:08", + "TransactionId": 64594361, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 856, + "CustomerInfo": 69885387, + "PaymentType": "Cash" + }, + { + "Id": 16846, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2019-10-05T12:19:09", + "TransactionId": 74503708, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 802, + "CustomerInfo": 1589830, + "PaymentType": "Debit Card" + }, + { + "Id": 16847, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-08-11T08:39:24", + "TransactionId": 11793204, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 578, + "CustomerInfo": 47211802, + "PaymentType": "Cash" + }, + { + "Id": 16848, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2016-12-05T08:58:42", + "TransactionId": 95832009, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 452, + "CustomerInfo": 46181465, + "PaymentType": "Credit Card" + }, + { + "Id": 16849, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2019-12-25T15:18:52", + "TransactionId": 77316953, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 318, + "CustomerInfo": 22357573, + "PaymentType": "Cash" + }, + { + "Id": 16850, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2018-08-25T11:33:04", + "TransactionId": 21684672, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 390, + "CustomerInfo": 89912765, + "PaymentType": "Credit Card" + }, + { + "Id": 16851, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2019-07-10T17:25:52", + "TransactionId": 35153986, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 517, + "CustomerInfo": 11596694, + "PaymentType": "Cash" + }, + { + "Id": 16852, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2018-02-04T07:03:48", + "TransactionId": 77152553, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 170, + "CustomerInfo": 59943838, + "PaymentType": "Cash" + }, + { + "Id": 16853, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2017-10-06T12:11:57", + "TransactionId": 77498102, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 826, + "CustomerInfo": 11077556, + "PaymentType": "Credit Card" + }, + { + "Id": 16854, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-3", + "TransactionDate": "2017-02-20T19:28:42", + "TransactionId": 9738050, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 22096409, + "PaymentType": "Credit Card" + }, + { + "Id": 16855, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2017-05-29T17:03:50", + "TransactionId": 6346511, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 868, + "CustomerInfo": 46023279, + "PaymentType": "Debit Card" + }, + { + "Id": 16856, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2016-09-02T14:57:59", + "TransactionId": 12301926, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 780, + "CustomerInfo": 12821157, + "PaymentType": "Credit Card" + }, + { + "Id": 16857, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2016-11-03T17:38:41", + "TransactionId": 66662805, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 556, + "CustomerInfo": 71405967, + "PaymentType": "Debit Card" + }, + { + "Id": 16858, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2019-12-28T18:29:31", + "TransactionId": 94417721, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 937, + "CustomerInfo": 19393929, + "PaymentType": "Credit Card" + }, + { + "Id": 16859, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-04-16T18:21:10", + "TransactionId": 66556258, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 295, + "CustomerInfo": 89629228, + "PaymentType": "Credit Card" + }, + { + "Id": 16860, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2018-03-15T11:32:56", + "TransactionId": 16871890, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 828, + "CustomerInfo": 25723277, + "PaymentType": "Credit Card" + }, + { + "Id": 16861, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2018-06-19T14:56:15", + "TransactionId": 4240791, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 5, + "CustomerInfo": 66348478, + "PaymentType": "Cash" + }, + { + "Id": 16862, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2019-08-27T18:31:32", + "TransactionId": 48017322, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 630, + "CustomerInfo": 69671837, + "PaymentType": "Credit Card" + }, + { + "Id": 16863, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-06-20T17:32:38", + "TransactionId": 98265164, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 731, + "CustomerInfo": 83906683, + "PaymentType": "Credit Card" + }, + { + "Id": 16864, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2016-06-16T10:29:08", + "TransactionId": 70874001, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 553, + "CustomerInfo": 55455972, + "PaymentType": "Cash" + }, + { + "Id": 16865, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2017-04-04T18:51:07", + "TransactionId": 50546450, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 751, + "CustomerInfo": 84003656, + "PaymentType": "Debit Card" + }, + { + "Id": 16866, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2017-09-14T08:46:28", + "TransactionId": 4865394, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 959, + "CustomerInfo": 76368231, + "PaymentType": "Cash" + }, + { + "Id": 16867, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2019-07-11T11:13:55", + "TransactionId": 85894572, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 624, + "CustomerInfo": 91889371, + "PaymentType": "Credit Card" + }, + { + "Id": 16868, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2016-09-18T13:38:21", + "TransactionId": 75828900, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 971, + "CustomerInfo": 48932493, + "PaymentType": "Cash" + }, + { + "Id": 16869, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-06-07T10:38:04", + "TransactionId": 84198645, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 507, + "CustomerInfo": 50233146, + "PaymentType": "Cash" + }, + { + "Id": 16870, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-09-13T09:23:02", + "TransactionId": 32904733, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 200, + "CustomerInfo": 28187957, + "PaymentType": "Debit Card" + }, + { + "Id": 16871, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2016-01-11T19:54:29", + "TransactionId": 976625, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 400, + "CustomerInfo": 12184515, + "PaymentType": "Cash" + }, + { + "Id": 16872, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2016-05-30T12:32:33", + "TransactionId": 36426168, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 897, + "CustomerInfo": 91364179, + "PaymentType": "Cash" + }, + { + "Id": 16873, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2016-10-22T14:19:24", + "TransactionId": 20832675, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 538, + "CustomerInfo": 77199969, + "PaymentType": "Cash" + }, + { + "Id": 16874, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-10-08T12:54:00", + "TransactionId": 75952875, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 261, + "CustomerInfo": 93019948, + "PaymentType": "Cash" + }, + { + "Id": 16875, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2018-01-19T17:22:16", + "TransactionId": 27109296, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 619, + "CustomerInfo": 79688509, + "PaymentType": "Cash" + }, + { + "Id": 16876, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2017-09-30T11:27:01", + "TransactionId": 80657687, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 353, + "CustomerInfo": 55096329, + "PaymentType": "Credit Card" + }, + { + "Id": 16877, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2016-08-28T19:36:46", + "TransactionId": 79157015, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 265, + "CustomerInfo": 74259851, + "PaymentType": "Debit Card" + }, + { + "Id": 16878, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2018-02-06T19:34:28", + "TransactionId": 65834415, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 663, + "CustomerInfo": 77342165, + "PaymentType": "Credit Card" + }, + { + "Id": 16879, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-09-09T19:39:39", + "TransactionId": 38204619, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 405, + "CustomerInfo": 46146805, + "PaymentType": "Credit Card" + }, + { + "Id": 16880, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2016-12-27T17:48:55", + "TransactionId": 29934749, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 598, + "CustomerInfo": 69328429, + "PaymentType": "Cash" + }, + { + "Id": 16881, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-12-16T15:38:27", + "TransactionId": 12723037, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 65, + "CustomerInfo": 54267260, + "PaymentType": "Debit Card" + }, + { + "Id": 16882, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2016-11-05T12:55:44", + "TransactionId": 35234931, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 665, + "CustomerInfo": 16784674, + "PaymentType": "Credit Card" + }, + { + "Id": 16883, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2018-12-27T08:33:13", + "TransactionId": 80645513, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 533, + "CustomerInfo": 46865880, + "PaymentType": "Debit Card" + }, + { + "Id": 16884, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2018-04-05T19:26:07", + "TransactionId": 61195330, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 253, + "CustomerInfo": 98515036, + "PaymentType": "Credit Card" + }, + { + "Id": 16885, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-02-01T11:11:02", + "TransactionId": 13647587, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 89798450, + "PaymentType": "Debit Card" + }, + { + "Id": 16886, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2017-10-18T10:10:16", + "TransactionId": 17472060, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 630, + "CustomerInfo": 87150717, + "PaymentType": "Debit Card" + }, + { + "Id": 16887, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2017-11-20T07:37:38", + "TransactionId": 82223418, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 401, + "CustomerInfo": 21296807, + "PaymentType": "Debit Card" + }, + { + "Id": 16888, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-10-21T14:03:59", + "TransactionId": 15214239, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 860, + "CustomerInfo": 49171823, + "PaymentType": "Credit Card" + }, + { + "Id": 16889, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-02-26T12:52:34", + "TransactionId": 89333795, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 742, + "CustomerInfo": 23991395, + "PaymentType": "Debit Card" + }, + { + "Id": 16890, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-3", + "TransactionDate": "2017-11-07T09:41:46", + "TransactionId": 25529078, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 331, + "CustomerInfo": 4232158, + "PaymentType": "Debit Card" + }, + { + "Id": 16891, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2019-12-06T15:12:58", + "TransactionId": 36817185, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 692, + "CustomerInfo": 59318889, + "PaymentType": "Cash" + }, + { + "Id": 16892, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2019-03-28T09:28:31", + "TransactionId": 75085596, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 153, + "CustomerInfo": 90265776, + "PaymentType": "Cash" + }, + { + "Id": 16893, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-03-13T12:31:49", + "TransactionId": 46397050, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 731, + "CustomerInfo": 74137883, + "PaymentType": "Debit Card" + }, + { + "Id": 16894, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2017-10-30T08:22:34", + "TransactionId": 58406915, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 161, + "CustomerInfo": 2105819, + "PaymentType": "Cash" + }, + { + "Id": 16895, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-11-25T19:10:34", + "TransactionId": 20450873, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 96, + "CustomerInfo": 83231964, + "PaymentType": "Cash" + }, + { + "Id": 16896, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2019-10-17T07:03:13", + "TransactionId": 1463180, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 473, + "CustomerInfo": 96339085, + "PaymentType": "Cash" + }, + { + "Id": 16897, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2016-04-15T14:08:53", + "TransactionId": 15353171, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 256, + "CustomerInfo": 56135979, + "PaymentType": "Cash" + }, + { + "Id": 16898, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2018-04-16T17:15:39", + "TransactionId": 91646100, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 132, + "CustomerInfo": 97160531, + "PaymentType": "Credit Card" + }, + { + "Id": 16899, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-11-19T10:41:57", + "TransactionId": 42217183, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 307, + "CustomerInfo": 2233779, + "PaymentType": "Cash" + }, + { + "Id": 16900, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2017-09-08T14:56:24", + "TransactionId": 36198659, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 467, + "CustomerInfo": 54408837, + "PaymentType": "Credit Card" + }, + { + "Id": 16901, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2019-07-09T11:47:20", + "TransactionId": 34123606, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 521, + "CustomerInfo": 40420709, + "PaymentType": "Credit Card" + }, + { + "Id": 16902, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2018-05-19T07:18:29", + "TransactionId": 8656375, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 224, + "CustomerInfo": 355444, + "PaymentType": "Cash" + }, + { + "Id": 16903, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2017-08-23T16:29:00", + "TransactionId": 30072005, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 850, + "CustomerInfo": 65209369, + "PaymentType": "Credit Card" + }, + { + "Id": 16904, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2016-04-22T10:02:04", + "TransactionId": 20767086, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 190, + "CustomerInfo": 51467952, + "PaymentType": "Debit Card" + }, + { + "Id": 16905, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2018-08-10T09:00:09", + "TransactionId": 31028765, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 587, + "CustomerInfo": 91681008, + "PaymentType": "Credit Card" + }, + { + "Id": 16906, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2016-06-04T13:58:13", + "TransactionId": 9806756, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 280, + "CustomerInfo": 46078038, + "PaymentType": "Debit Card" + }, + { + "Id": 16907, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-02-20T10:02:21", + "TransactionId": 84780871, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 698, + "CustomerInfo": 78825536, + "PaymentType": "Cash" + }, + { + "Id": 16908, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2016-09-27T09:07:47", + "TransactionId": 59209481, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 302, + "CustomerInfo": 62633127, + "PaymentType": "Debit Card" + }, + { + "Id": 16909, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2018-08-03T08:19:58", + "TransactionId": 77805524, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 422, + "CustomerInfo": 52288479, + "PaymentType": "Debit Card" + }, + { + "Id": 16910, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-09-12T15:54:17", + "TransactionId": 73818186, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 540, + "CustomerInfo": 89615520, + "PaymentType": "Cash" + }, + { + "Id": 16911, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2019-09-02T19:51:27", + "TransactionId": 12790715, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 267, + "CustomerInfo": 89566724, + "PaymentType": "Cash" + }, + { + "Id": 16912, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2019-07-19T07:47:34", + "TransactionId": 59207865, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 5, + "CustomerInfo": 85989549, + "PaymentType": "Credit Card" + }, + { + "Id": 16913, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2016-04-30T15:39:01", + "TransactionId": 32024554, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 554, + "CustomerInfo": 12670432, + "PaymentType": "Credit Card" + }, + { + "Id": 16914, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-01-19T18:57:27", + "TransactionId": 2958575, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 30, + "CustomerInfo": 21526857, + "PaymentType": "Credit Card" + }, + { + "Id": 16915, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-10-07T18:03:53", + "TransactionId": 67495298, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 130, + "CustomerInfo": 8024071, + "PaymentType": "Debit Card" + }, + { + "Id": 16916, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-10-29T18:38:36", + "TransactionId": 91586834, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 63, + "CustomerInfo": 2975311, + "PaymentType": "Credit Card" + }, + { + "Id": 16917, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-02-13T19:59:40", + "TransactionId": 73998061, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 615, + "CustomerInfo": 74460959, + "PaymentType": "Cash" + }, + { + "Id": 16918, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2018-04-10T16:47:34", + "TransactionId": 65419768, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 33, + "CustomerInfo": 73948498, + "PaymentType": "Cash" + }, + { + "Id": 16919, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-05-07T17:23:17", + "TransactionId": 45249025, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 815, + "CustomerInfo": 63916338, + "PaymentType": "Credit Card" + }, + { + "Id": 16920, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-03-14T16:25:06", + "TransactionId": 44992084, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 740, + "CustomerInfo": 9582917, + "PaymentType": "Debit Card" + }, + { + "Id": 16921, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2019-05-01T16:10:25", + "TransactionId": 81311129, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 330, + "CustomerInfo": 18232600, + "PaymentType": "Debit Card" + }, + { + "Id": 16922, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2016-06-27T15:55:44", + "TransactionId": 82066868, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 898, + "CustomerInfo": 848137, + "PaymentType": "Cash" + }, + { + "Id": 16923, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2016-01-28T16:54:29", + "TransactionId": 22862647, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 284, + "CustomerInfo": 66051724, + "PaymentType": "Debit Card" + }, + { + "Id": 16924, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2019-07-21T12:32:50", + "TransactionId": 22024653, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 804, + "CustomerInfo": 86382343, + "PaymentType": "Cash" + }, + { + "Id": 16925, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2019-07-09T09:09:56", + "TransactionId": 94302080, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 826, + "CustomerInfo": 18304521, + "PaymentType": "Debit Card" + }, + { + "Id": 16926, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-06-22T13:33:10", + "TransactionId": 85124003, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 99454946, + "PaymentType": "Debit Card" + }, + { + "Id": 16927, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-05-19T10:43:06", + "TransactionId": 54045780, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 744, + "CustomerInfo": 90154735, + "PaymentType": "Credit Card" + }, + { + "Id": 16928, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2019-08-04T18:22:19", + "TransactionId": 57522500, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 228, + "CustomerInfo": 13098087, + "PaymentType": "Credit Card" + }, + { + "Id": 16929, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-03-13T10:18:37", + "TransactionId": 82232741, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 563, + "CustomerInfo": 12014289, + "PaymentType": "Credit Card" + }, + { + "Id": 16930, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2019-12-23T10:17:20", + "TransactionId": 38161328, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 271, + "CustomerInfo": 34211100, + "PaymentType": "Cash" + }, + { + "Id": 16931, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2018-06-20T16:36:37", + "TransactionId": 34539480, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 179, + "CustomerInfo": 91002838, + "PaymentType": "Credit Card" + }, + { + "Id": 16932, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-07-10T10:00:20", + "TransactionId": 73953514, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 954, + "CustomerInfo": 65393271, + "PaymentType": "Credit Card" + }, + { + "Id": 16933, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-07-10T09:46:31", + "TransactionId": 81560346, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 289, + "CustomerInfo": 1304383, + "PaymentType": "Credit Card" + }, + { + "Id": 16934, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-01-13T18:55:44", + "TransactionId": 520493, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 910, + "CustomerInfo": 62958903, + "PaymentType": "Debit Card" + }, + { + "Id": 16935, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2017-07-20T13:17:54", + "TransactionId": 40638173, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 135, + "CustomerInfo": 60830602, + "PaymentType": "Debit Card" + }, + { + "Id": 16936, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2019-02-11T10:44:07", + "TransactionId": 58331416, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 70, + "CustomerInfo": 59914863, + "PaymentType": "Cash" + }, + { + "Id": 16937, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-03-31T11:33:13", + "TransactionId": 9513597, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 30, + "CustomerInfo": 92553805, + "PaymentType": "Cash" + }, + { + "Id": 16938, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2017-11-20T15:25:47", + "TransactionId": 67617847, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 947, + "CustomerInfo": 34053722, + "PaymentType": "Debit Card" + }, + { + "Id": 16939, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-05-08T14:57:42", + "TransactionId": 27411873, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 608, + "CustomerInfo": 42652404, + "PaymentType": "Debit Card" + }, + { + "Id": 16940, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2019-03-26T17:24:00", + "TransactionId": 79195728, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 156, + "CustomerInfo": 7731098, + "PaymentType": "Debit Card" + }, + { + "Id": 16941, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-05-30T12:48:06", + "TransactionId": 17404632, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 133, + "CustomerInfo": 9364996, + "PaymentType": "Debit Card" + }, + { + "Id": 16942, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-12-26T14:44:44", + "TransactionId": 2825695, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 695, + "CustomerInfo": 72836788, + "PaymentType": "Cash" + }, + { + "Id": 16943, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2018-07-04T13:19:29", + "TransactionId": 65412315, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 609, + "CustomerInfo": 7345398, + "PaymentType": "Credit Card" + }, + { + "Id": 16944, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2016-01-21T13:59:57", + "TransactionId": 60237081, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 993, + "CustomerInfo": 39983507, + "PaymentType": "Debit Card" + }, + { + "Id": 16945, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2019-10-18T08:16:48", + "TransactionId": 76104109, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 422, + "CustomerInfo": 57736546, + "PaymentType": "Cash" + }, + { + "Id": 16946, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-09-13T10:35:46", + "TransactionId": 33694510, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 354, + "CustomerInfo": 25542380, + "PaymentType": "Credit Card" + }, + { + "Id": 16947, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2018-04-24T13:03:13", + "TransactionId": 72799177, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 763, + "CustomerInfo": 22153206, + "PaymentType": "Credit Card" + }, + { + "Id": 16948, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-07-23T12:14:15", + "TransactionId": 17958755, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 746, + "CustomerInfo": 1316493, + "PaymentType": "Cash" + }, + { + "Id": 16949, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-07-26T10:28:25", + "TransactionId": 77838260, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 416, + "CustomerInfo": 51443324, + "PaymentType": "Cash" + }, + { + "Id": 16950, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2019-09-28T15:52:25", + "TransactionId": 37322713, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 806, + "CustomerInfo": 97655635, + "PaymentType": "Cash" + }, + { + "Id": 16951, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2019-03-01T12:13:06", + "TransactionId": 68515435, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 635, + "CustomerInfo": 43298314, + "PaymentType": "Debit Card" + }, + { + "Id": 16952, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2019-11-28T13:08:33", + "TransactionId": 63177616, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 893, + "CustomerInfo": 76037494, + "PaymentType": "Debit Card" + }, + { + "Id": 16953, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-06-05T11:13:38", + "TransactionId": 65753663, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 969, + "CustomerInfo": 83672788, + "PaymentType": "Credit Card" + }, + { + "Id": 16954, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2019-01-12T16:17:20", + "TransactionId": 17075873, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 734, + "CustomerInfo": 39543522, + "PaymentType": "Credit Card" + }, + { + "Id": 16955, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2017-10-14T17:45:10", + "TransactionId": 50221358, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 580, + "CustomerInfo": 1636232, + "PaymentType": "Credit Card" + }, + { + "Id": 16956, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2017-03-08T08:30:55", + "TransactionId": 62198010, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 250, + "CustomerInfo": 44954561, + "PaymentType": "Cash" + }, + { + "Id": 16957, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2016-01-19T10:54:55", + "TransactionId": 80393598, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 638, + "CustomerInfo": 61332397, + "PaymentType": "Cash" + }, + { + "Id": 16958, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2017-03-04T11:14:38", + "TransactionId": 98804801, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 34, + "CustomerInfo": 470353, + "PaymentType": "Cash" + }, + { + "Id": 16959, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2019-11-09T10:45:59", + "TransactionId": 43874199, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 772, + "CustomerInfo": 21650457, + "PaymentType": "Credit Card" + }, + { + "Id": 16960, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2016-04-19T07:35:20", + "TransactionId": 25552159, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 987, + "CustomerInfo": 15076674, + "PaymentType": "Credit Card" + }, + { + "Id": 16961, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2019-08-19T15:06:29", + "TransactionId": 18779801, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 103, + "CustomerInfo": 10234007, + "PaymentType": "Debit Card" + }, + { + "Id": 16962, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2018-08-19T07:36:55", + "TransactionId": 24021094, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 44, + "CustomerInfo": 49141899, + "PaymentType": "Debit Card" + }, + { + "Id": 16963, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2017-12-31T12:31:49", + "TransactionId": 71258728, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 637, + "CustomerInfo": 20406062, + "PaymentType": "Credit Card" + }, + { + "Id": 16964, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2018-05-27T19:17:37", + "TransactionId": 96723312, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 378, + "CustomerInfo": 84078485, + "PaymentType": "Credit Card" + }, + { + "Id": 16965, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2018-06-06T12:39:10", + "TransactionId": 4170255, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 503, + "CustomerInfo": 53834832, + "PaymentType": "Cash" + }, + { + "Id": 16966, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-5", + "TransactionDate": "2018-04-09T08:32:47", + "TransactionId": 79163544, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 578, + "CustomerInfo": 2156162, + "PaymentType": "Credit Card" + }, + { + "Id": 16967, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2016-02-01T14:26:44", + "TransactionId": 70134302, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 621, + "CustomerInfo": 3650249, + "PaymentType": "Credit Card" + }, + { + "Id": 16968, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-12-24T09:00:00", + "TransactionId": 53876693, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 528, + "CustomerInfo": 97721148, + "PaymentType": "Credit Card" + }, + { + "Id": 16969, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2019-11-05T16:52:36", + "TransactionId": 54790172, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 221, + "CustomerInfo": 49083676, + "PaymentType": "Credit Card" + }, + { + "Id": 16970, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2019-10-05T18:04:28", + "TransactionId": 36343127, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 60, + "CustomerInfo": 34810564, + "PaymentType": "Credit Card" + }, + { + "Id": 16971, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-07-25T15:00:43", + "TransactionId": 81796741, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 626, + "CustomerInfo": 44165379, + "PaymentType": "Debit Card" + }, + { + "Id": 16972, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2019-07-15T13:29:17", + "TransactionId": 17818894, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 71, + "CustomerInfo": 69895797, + "PaymentType": "Debit Card" + }, + { + "Id": 16973, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-04-06T15:36:26", + "TransactionId": 17192032, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 97, + "CustomerInfo": 23498897, + "PaymentType": "Debit Card" + }, + { + "Id": 16974, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2016-02-25T18:02:10", + "TransactionId": 11251267, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 770, + "CustomerInfo": 52558781, + "PaymentType": "Debit Card" + }, + { + "Id": 16975, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2016-10-15T13:26:33", + "TransactionId": 32265733, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 173, + "CustomerInfo": 16670785, + "PaymentType": "Debit Card" + }, + { + "Id": 16976, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2016-01-21T15:07:55", + "TransactionId": 61366065, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 654, + "CustomerInfo": 7919197, + "PaymentType": "Cash" + }, + { + "Id": 16977, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2018-08-03T10:39:30", + "TransactionId": 21689008, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 783, + "CustomerInfo": 16897026, + "PaymentType": "Credit Card" + }, + { + "Id": 16978, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-11-14T14:51:30", + "TransactionId": 99885285, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 190, + "CustomerInfo": 10759414, + "PaymentType": "Debit Card" + }, + { + "Id": 16979, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-03-09T15:07:12", + "TransactionId": 45331098, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 515, + "CustomerInfo": 40415142, + "PaymentType": "Cash" + }, + { + "Id": 16980, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2016-12-11T16:42:14", + "TransactionId": 54935102, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 856, + "CustomerInfo": 17040628, + "PaymentType": "Debit Card" + }, + { + "Id": 16981, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2017-04-22T15:23:37", + "TransactionId": 30367982, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 112, + "CustomerInfo": 90723682, + "PaymentType": "Credit Card" + }, + { + "Id": 16982, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2019-07-24T16:47:34", + "TransactionId": 15867293, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 728, + "CustomerInfo": 30924540, + "PaymentType": "Credit Card" + }, + { + "Id": 16983, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-05-10T19:46:42", + "TransactionId": 83997722, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 713, + "CustomerInfo": 89609215, + "PaymentType": "Debit Card" + }, + { + "Id": 16984, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2016-09-14T07:09:07", + "TransactionId": 50156965, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 104, + "CustomerInfo": 93645542, + "PaymentType": "Cash" + }, + { + "Id": 16985, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2016-10-02T17:45:01", + "TransactionId": 61130980, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 79616725, + "PaymentType": "Cash" + }, + { + "Id": 16986, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-08-24T18:54:35", + "TransactionId": 79170570, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 470, + "CustomerInfo": 65940894, + "PaymentType": "Debit Card" + }, + { + "Id": 16987, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2019-01-18T08:50:47", + "TransactionId": 2495703, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 21, + "CustomerInfo": 16769226, + "PaymentType": "Cash" + }, + { + "Id": 16988, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2019-11-16T17:53:48", + "TransactionId": 62287928, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 7, + "CustomerInfo": 9302087, + "PaymentType": "Credit Card" + }, + { + "Id": 16989, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2016-09-14T10:40:13", + "TransactionId": 12856412, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 98, + "CustomerInfo": 10186708, + "PaymentType": "Debit Card" + }, + { + "Id": 16990, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-03-12T17:57:50", + "TransactionId": 20202701, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 472, + "CustomerInfo": 16754092, + "PaymentType": "Debit Card" + }, + { + "Id": 16991, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-11-02T14:21:07", + "TransactionId": 95189753, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 403, + "CustomerInfo": 39930149, + "PaymentType": "Credit Card" + }, + { + "Id": 16992, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2018-04-19T12:21:27", + "TransactionId": 1697043, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 235, + "CustomerInfo": 39325412, + "PaymentType": "Debit Card" + }, + { + "Id": 16993, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2017-08-05T11:01:41", + "TransactionId": 51374097, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 19, + "CustomerInfo": 5459186, + "PaymentType": "Cash" + }, + { + "Id": 16994, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2019-11-30T11:43:35", + "TransactionId": 70080542, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 838, + "CustomerInfo": 11829367, + "PaymentType": "Debit Card" + }, + { + "Id": 16995, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2017-07-05T16:30:09", + "TransactionId": 96967767, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 701, + "CustomerInfo": 12423729, + "PaymentType": "Cash" + }, + { + "Id": 16996, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2018-02-28T14:49:21", + "TransactionId": 38545130, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 966, + "CustomerInfo": 71983147, + "PaymentType": "Cash" + }, + { + "Id": 16997, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2017-03-30T16:13:52", + "TransactionId": 3269522, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 802, + "CustomerInfo": 19052427, + "PaymentType": "Credit Card" + }, + { + "Id": 16998, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2019-02-07T17:25:26", + "TransactionId": 32430993, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 487, + "CustomerInfo": 40039597, + "PaymentType": "Debit Card" + }, + { + "Id": 16999, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2016-09-09T14:56:33", + "TransactionId": 94101121, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 548, + "CustomerInfo": 38124275, + "PaymentType": "Credit Card" + }, + { + "Id": 17000, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2016-10-25T15:55:44", + "TransactionId": 42708815, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 506, + "CustomerInfo": 404521, + "PaymentType": "Debit Card" + }, + { + "Id": 17001, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2016-03-01T09:06:20", + "TransactionId": 86877835, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 490, + "CustomerInfo": 3290637, + "PaymentType": "Cash" + }, + { + "Id": 17002, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-01-16T16:20:21", + "TransactionId": 10054268, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 811, + "CustomerInfo": 70973226, + "PaymentType": "Cash" + }, + { + "Id": 17003, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-10-26T13:56:12", + "TransactionId": 38201362, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 999, + "CustomerInfo": 90126815, + "PaymentType": "Debit Card" + }, + { + "Id": 17004, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2019-12-20T17:08:01", + "TransactionId": 10844725, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 596, + "CustomerInfo": 39146233, + "PaymentType": "Cash" + }, + { + "Id": 17005, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-03-29T13:37:29", + "TransactionId": 24852211, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 850, + "CustomerInfo": 36552056, + "PaymentType": "Debit Card" + }, + { + "Id": 17006, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-12-07T07:07:41", + "TransactionId": 12671133, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 984, + "CustomerInfo": 46661052, + "PaymentType": "Debit Card" + }, + { + "Id": 17007, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-03-31T19:44:50", + "TransactionId": 15918315, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 1196554, + "PaymentType": "Cash" + }, + { + "Id": 17008, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2017-03-25T12:41:02", + "TransactionId": 18247818, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 752, + "CustomerInfo": 1490762, + "PaymentType": "Credit Card" + }, + { + "Id": 17009, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2017-12-21T13:21:56", + "TransactionId": 72767707, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 356, + "CustomerInfo": 15110187, + "PaymentType": "Credit Card" + }, + { + "Id": 17010, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-05-09T16:01:38", + "TransactionId": 56152779, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 489, + "CustomerInfo": 94720545, + "PaymentType": "Debit Card" + }, + { + "Id": 17011, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2019-11-27T09:14:50", + "TransactionId": 20235238, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 612, + "CustomerInfo": 80702211, + "PaymentType": "Debit Card" + }, + { + "Id": 17012, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-08-12T17:03:16", + "TransactionId": 17225036, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 847, + "CustomerInfo": 34622335, + "PaymentType": "Debit Card" + }, + { + "Id": 17013, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2019-02-04T19:34:36", + "TransactionId": 4837121, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 825, + "CustomerInfo": 92802649, + "PaymentType": "Credit Card" + }, + { + "Id": 17014, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-03-01T19:24:49", + "TransactionId": 96790340, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 568, + "CustomerInfo": 40383294, + "PaymentType": "Cash" + }, + { + "Id": 17015, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-12-13T09:01:52", + "TransactionId": 58540626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 526, + "CustomerInfo": 5868154, + "PaymentType": "Cash" + }, + { + "Id": 17016, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2017-09-28T16:54:46", + "TransactionId": 42930793, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 276, + "CustomerInfo": 4336532, + "PaymentType": "Cash" + }, + { + "Id": 17017, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2017-05-27T07:36:46", + "TransactionId": 46508476, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 94368988, + "PaymentType": "Cash" + }, + { + "Id": 17018, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2019-04-28T15:55:09", + "TransactionId": 33934394, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 58931126, + "PaymentType": "Credit Card" + }, + { + "Id": 17019, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2018-01-27T14:23:51", + "TransactionId": 85362564, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 866, + "CustomerInfo": 49354946, + "PaymentType": "Cash" + }, + { + "Id": 17020, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2018-10-29T09:32:07", + "TransactionId": 56045381, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 737, + "CustomerInfo": 19348384, + "PaymentType": "Debit Card" + }, + { + "Id": 17021, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-05-19T09:59:28", + "TransactionId": 22010891, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 176, + "CustomerInfo": 81079585, + "PaymentType": "Credit Card" + }, + { + "Id": 17022, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2017-02-21T16:42:23", + "TransactionId": 17068023, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 174, + "CustomerInfo": 96755113, + "PaymentType": "Debit Card" + }, + { + "Id": 17023, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-09-25T17:52:39", + "TransactionId": 81949697, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 812, + "CustomerInfo": 79450873, + "PaymentType": "Cash" + }, + { + "Id": 17024, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2016-04-17T16:35:20", + "TransactionId": 77921647, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 957, + "CustomerInfo": 21310254, + "PaymentType": "Cash" + }, + { + "Id": 17025, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-12-29T08:00:23", + "TransactionId": 2250648, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 841, + "CustomerInfo": 36621915, + "PaymentType": "Cash" + }, + { + "Id": 17026, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2016-03-18T12:08:21", + "TransactionId": 1878420, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 870, + "CustomerInfo": 31292263, + "PaymentType": "Cash" + }, + { + "Id": 17027, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-01-18T13:39:30", + "TransactionId": 1545223, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 660, + "CustomerInfo": 92333678, + "PaymentType": "Credit Card" + }, + { + "Id": 17028, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-06-30T18:53:51", + "TransactionId": 62338902, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 487, + "CustomerInfo": 86482268, + "PaymentType": "Credit Card" + }, + { + "Id": 17029, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2019-12-17T14:16:13", + "TransactionId": 96288878, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 889, + "CustomerInfo": 60536230, + "PaymentType": "Debit Card" + }, + { + "Id": 17030, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-03-20T16:55:03", + "TransactionId": 96670095, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 107, + "CustomerInfo": 41439774, + "PaymentType": "Credit Card" + }, + { + "Id": 17031, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-11-24T19:43:41", + "TransactionId": 31224062, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 465, + "CustomerInfo": 94470409, + "PaymentType": "Cash" + }, + { + "Id": 17032, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2019-07-19T17:23:43", + "TransactionId": 47709132, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 47340840, + "PaymentType": "Credit Card" + }, + { + "Id": 17033, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2018-11-21T10:50:10", + "TransactionId": 15568176, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 91, + "CustomerInfo": 48939252, + "PaymentType": "Cash" + }, + { + "Id": 17034, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2017-07-16T11:52:13", + "TransactionId": 89767236, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 364, + "CustomerInfo": 90233061, + "PaymentType": "Cash" + }, + { + "Id": 17035, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2017-05-19T14:13:38", + "TransactionId": 97032627, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 877, + "CustomerInfo": 93329635, + "PaymentType": "Credit Card" + }, + { + "Id": 17036, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2019-05-11T15:39:53", + "TransactionId": 75663351, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 59, + "CustomerInfo": 59043499, + "PaymentType": "Debit Card" + }, + { + "Id": 17037, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2016-09-28T13:48:52", + "TransactionId": 93678379, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 445, + "CustomerInfo": 10204526, + "PaymentType": "Credit Card" + }, + { + "Id": 17038, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2018-04-19T09:26:21", + "TransactionId": 24828470, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 498, + "CustomerInfo": 45739651, + "PaymentType": "Cash" + }, + { + "Id": 17039, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-04-21T12:46:48", + "TransactionId": 49698345, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 494, + "CustomerInfo": 89005156, + "PaymentType": "Credit Card" + }, + { + "Id": 17040, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2019-04-23T11:48:20", + "TransactionId": 53629407, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 616, + "CustomerInfo": 6835023, + "PaymentType": "Credit Card" + }, + { + "Id": 17041, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2019-04-06T12:36:43", + "TransactionId": 23334614, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 97, + "CustomerInfo": 81697816, + "PaymentType": "Debit Card" + }, + { + "Id": 17042, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2017-07-14T11:11:11", + "TransactionId": 69385364, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 794, + "CustomerInfo": 92172642, + "PaymentType": "Credit Card" + }, + { + "Id": 17043, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-05-01T17:43:26", + "TransactionId": 34208791, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 161, + "CustomerInfo": 46104533, + "PaymentType": "Cash" + }, + { + "Id": 17044, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2018-11-15T08:35:14", + "TransactionId": 97132574, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 101, + "CustomerInfo": 24021974, + "PaymentType": "Cash" + }, + { + "Id": 17045, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2017-09-02T14:05:51", + "TransactionId": 74751184, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 56, + "CustomerInfo": 79412596, + "PaymentType": "Cash" + }, + { + "Id": 17046, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2019-11-24T10:02:30", + "TransactionId": 90236665, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 939, + "CustomerInfo": 16007993, + "PaymentType": "Credit Card" + }, + { + "Id": 17047, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2018-10-29T12:23:28", + "TransactionId": 96193561, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 708, + "CustomerInfo": 43049350, + "PaymentType": "Debit Card" + }, + { + "Id": 17048, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2019-04-10T17:27:01", + "TransactionId": 875791, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 909, + "CustomerInfo": 62625822, + "PaymentType": "Debit Card" + }, + { + "Id": 17049, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2017-06-05T09:43:55", + "TransactionId": 50325846, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 458, + "CustomerInfo": 51694938, + "PaymentType": "Debit Card" + }, + { + "Id": 17050, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2017-12-11T08:47:11", + "TransactionId": 47003250, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 579, + "CustomerInfo": 7024390, + "PaymentType": "Debit Card" + }, + { + "Id": 17051, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-11-15T15:13:32", + "TransactionId": 94136352, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 120, + "CustomerInfo": 96954168, + "PaymentType": "Cash" + }, + { + "Id": 17052, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2018-11-15T19:10:51", + "TransactionId": 35643868, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 537, + "CustomerInfo": 66445846, + "PaymentType": "Credit Card" + }, + { + "Id": 17053, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2016-12-09T10:12:26", + "TransactionId": 98921928, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 103, + "CustomerInfo": 90644256, + "PaymentType": "Debit Card" + }, + { + "Id": 17054, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2018-10-10T18:32:41", + "TransactionId": 98199565, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 69, + "CustomerInfo": 26224889, + "PaymentType": "Credit Card" + }, + { + "Id": 17055, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-06-30T16:00:29", + "TransactionId": 69655708, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 884, + "CustomerInfo": 53976696, + "PaymentType": "Cash" + }, + { + "Id": 17056, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-06-06T13:15:53", + "TransactionId": 69511650, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 275, + "CustomerInfo": 70743814, + "PaymentType": "Cash" + }, + { + "Id": 17057, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2019-04-04T17:16:57", + "TransactionId": 1882146, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 452, + "CustomerInfo": 58409234, + "PaymentType": "Credit Card" + }, + { + "Id": 17058, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2016-03-25T07:05:57", + "TransactionId": 94690771, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 821, + "CustomerInfo": 24340573, + "PaymentType": "Cash" + }, + { + "Id": 17059, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-12-03T11:16:57", + "TransactionId": 28250653, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 431, + "CustomerInfo": 69559308, + "PaymentType": "Cash" + }, + { + "Id": 17060, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2016-03-21T16:57:13", + "TransactionId": 60794458, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 43, + "CustomerInfo": 62986335, + "PaymentType": "Debit Card" + }, + { + "Id": 17061, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2017-11-06T17:42:43", + "TransactionId": 42269159, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 470, + "CustomerInfo": 69192272, + "PaymentType": "Debit Card" + }, + { + "Id": 17062, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2019-11-30T14:38:07", + "TransactionId": 12949550, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 863, + "CustomerInfo": 11385068, + "PaymentType": "Credit Card" + }, + { + "Id": 17063, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2017-12-16T09:41:20", + "TransactionId": 28986453, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 198, + "CustomerInfo": 433221, + "PaymentType": "Debit Card" + }, + { + "Id": 17064, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-06-20T07:44:07", + "TransactionId": 31114305, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 65, + "CustomerInfo": 31600517, + "PaymentType": "Credit Card" + }, + { + "Id": 17065, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-02-06T09:11:40", + "TransactionId": 64121199, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 266, + "CustomerInfo": 85755014, + "PaymentType": "Cash" + }, + { + "Id": 17066, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-09-05T15:32:59", + "TransactionId": 29669759, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 105, + "CustomerInfo": 74863356, + "PaymentType": "Debit Card" + }, + { + "Id": 17067, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2017-05-29T17:08:18", + "TransactionId": 34059919, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 343, + "CustomerInfo": 57259460, + "PaymentType": "Debit Card" + }, + { + "Id": 17068, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-10-18T12:14:15", + "TransactionId": 73802392, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 823, + "CustomerInfo": 18612376, + "PaymentType": "Credit Card" + }, + { + "Id": 17069, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2016-03-25T09:55:09", + "TransactionId": 80014455, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 964, + "CustomerInfo": 15195377, + "PaymentType": "Debit Card" + }, + { + "Id": 17070, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2017-10-21T07:10:42", + "TransactionId": 88863235, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 770, + "CustomerInfo": 41805477, + "PaymentType": "Debit Card" + }, + { + "Id": 17071, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2018-06-28T11:43:26", + "TransactionId": 74616530, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 102, + "CustomerInfo": 9767237, + "PaymentType": "Credit Card" + }, + { + "Id": 17072, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2019-03-20T18:21:53", + "TransactionId": 8587897, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 222, + "CustomerInfo": 51532595, + "PaymentType": "Cash" + }, + { + "Id": 17073, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-08-14T11:21:59", + "TransactionId": 49189714, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 181, + "CustomerInfo": 9084983, + "PaymentType": "Debit Card" + }, + { + "Id": 17074, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-07-06T14:02:33", + "TransactionId": 73548571, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 58, + "CustomerInfo": 66116629, + "PaymentType": "Debit Card" + }, + { + "Id": 17075, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-09-21T14:27:01", + "TransactionId": 60810101, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 419, + "CustomerInfo": 32904791, + "PaymentType": "Credit Card" + }, + { + "Id": 17076, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2017-07-26T18:59:54", + "TransactionId": 51929742, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 455, + "CustomerInfo": 69298235, + "PaymentType": "Debit Card" + }, + { + "Id": 17077, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-09-07T18:32:24", + "TransactionId": 32157167, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 562, + "CustomerInfo": 43167171, + "PaymentType": "Credit Card" + }, + { + "Id": 17078, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2016-08-13T19:51:36", + "TransactionId": 79079634, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 469, + "CustomerInfo": 97300277, + "PaymentType": "Credit Card" + }, + { + "Id": 17079, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2017-06-22T09:40:28", + "TransactionId": 57822821, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 70, + "CustomerInfo": 8631467, + "PaymentType": "Cash" + }, + { + "Id": 17080, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-12-27T12:56:01", + "TransactionId": 91210181, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 652, + "CustomerInfo": 40112998, + "PaymentType": "Debit Card" + }, + { + "Id": 17081, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-01-07T12:35:08", + "TransactionId": 64957060, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 907, + "CustomerInfo": 1580300, + "PaymentType": "Debit Card" + }, + { + "Id": 17082, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2017-06-06T07:10:16", + "TransactionId": 36546787, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 793, + "CustomerInfo": 34539774, + "PaymentType": "Debit Card" + }, + { + "Id": 17083, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2016-12-12T16:59:14", + "TransactionId": 42260784, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 116, + "CustomerInfo": 61291528, + "PaymentType": "Credit Card" + }, + { + "Id": 17084, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2016-02-24T14:27:45", + "TransactionId": 80951955, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 621, + "CustomerInfo": 54925565, + "PaymentType": "Credit Card" + }, + { + "Id": 17085, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2018-12-26T15:05:20", + "TransactionId": 40123494, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 19, + "CustomerInfo": 252615, + "PaymentType": "Credit Card" + }, + { + "Id": 17086, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2019-04-07T15:00:43", + "TransactionId": 67285643, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 70, + "CustomerInfo": 49619240, + "PaymentType": "Cash" + }, + { + "Id": 17087, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2018-12-07T09:56:18", + "TransactionId": 64831474, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 923, + "CustomerInfo": 98568558, + "PaymentType": "Credit Card" + }, + { + "Id": 17088, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2018-04-29T08:25:09", + "TransactionId": 81758330, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 204, + "CustomerInfo": 82452957, + "PaymentType": "Cash" + }, + { + "Id": 17089, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-08-18T09:21:19", + "TransactionId": 97887629, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 513, + "CustomerInfo": 94795589, + "PaymentType": "Cash" + }, + { + "Id": 17090, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2016-10-14T14:23:25", + "TransactionId": 48849033, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 66, + "CustomerInfo": 25454447, + "PaymentType": "Debit Card" + }, + { + "Id": 17091, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2016-08-14T07:24:58", + "TransactionId": 94590739, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 189, + "CustomerInfo": 34104289, + "PaymentType": "Credit Card" + }, + { + "Id": 17092, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-2", + "TransactionDate": "2016-01-19T07:27:59", + "TransactionId": 4494026, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 40, + "CustomerInfo": 24601622, + "PaymentType": "Cash" + }, + { + "Id": 17093, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-03-04T08:12:37", + "TransactionId": 97647040, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 676, + "CustomerInfo": 69742206, + "PaymentType": "Debit Card" + }, + { + "Id": 17094, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2018-11-13T13:21:22", + "TransactionId": 11827598, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 209, + "CustomerInfo": 63180954, + "PaymentType": "Debit Card" + }, + { + "Id": 17095, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-10-12T09:05:46", + "TransactionId": 70554861, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 33, + "CustomerInfo": 66309458, + "PaymentType": "Credit Card" + }, + { + "Id": 17096, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-01-31T18:20:36", + "TransactionId": 77237923, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 178, + "CustomerInfo": 41821783, + "PaymentType": "Debit Card" + }, + { + "Id": 17097, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2018-06-21T07:13:44", + "TransactionId": 11706518, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 18, + "CustomerInfo": 50148211, + "PaymentType": "Cash" + }, + { + "Id": 17098, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-08-27T13:22:57", + "TransactionId": 58387876, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 528, + "CustomerInfo": 3104551, + "PaymentType": "Cash" + }, + { + "Id": 17099, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2018-01-12T19:54:37", + "TransactionId": 19510832, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 45, + "CustomerInfo": 58077249, + "PaymentType": "Cash" + }, + { + "Id": 17100, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2017-07-28T08:49:38", + "TransactionId": 34993162, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 570, + "CustomerInfo": 47861686, + "PaymentType": "Debit Card" + }, + { + "Id": 17101, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2016-05-28T08:56:50", + "TransactionId": 63035828, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 431, + "CustomerInfo": 96591639, + "PaymentType": "Cash" + }, + { + "Id": 17102, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2017-10-09T19:44:50", + "TransactionId": 4889456, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 903, + "CustomerInfo": 76116429, + "PaymentType": "Credit Card" + }, + { + "Id": 17103, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2016-04-06T07:49:09", + "TransactionId": 89518801, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 978, + "CustomerInfo": 3022050, + "PaymentType": "Debit Card" + }, + { + "Id": 17104, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-04-18T17:55:15", + "TransactionId": 51977465, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 941, + "CustomerInfo": 91904391, + "PaymentType": "Cash" + }, + { + "Id": 17105, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-04-17T10:49:26", + "TransactionId": 12183984, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 904, + "CustomerInfo": 65474244, + "PaymentType": "Credit Card" + }, + { + "Id": 17106, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2016-01-01T17:48:29", + "TransactionId": 64818971, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 145, + "CustomerInfo": 35317018, + "PaymentType": "Credit Card" + }, + { + "Id": 17107, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-08-05T16:35:46", + "TransactionId": 65693655, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 523, + "CustomerInfo": 8251233, + "PaymentType": "Credit Card" + }, + { + "Id": 17108, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2018-06-23T10:06:40", + "TransactionId": 29003778, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 355, + "CustomerInfo": 96761416, + "PaymentType": "Debit Card" + }, + { + "Id": 17109, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2018-07-25T09:01:00", + "TransactionId": 11043701, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 110, + "CustomerInfo": 91281136, + "PaymentType": "Debit Card" + }, + { + "Id": 17110, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-1", + "TransactionDate": "2019-01-29T07:14:53", + "TransactionId": 78605364, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 339, + "CustomerInfo": 21177096, + "PaymentType": "Credit Card" + }, + { + "Id": 17111, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-07-23T15:42:20", + "TransactionId": 85615558, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 48462615, + "PaymentType": "Cash" + }, + { + "Id": 17112, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-03-16T19:02:30", + "TransactionId": 25913508, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 392, + "CustomerInfo": 36094727, + "PaymentType": "Credit Card" + }, + { + "Id": 17113, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-10-29T19:56:12", + "TransactionId": 66147654, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 742, + "CustomerInfo": 24968378, + "PaymentType": "Debit Card" + }, + { + "Id": 17114, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2017-05-05T18:20:10", + "TransactionId": 36098891, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 532, + "CustomerInfo": 98960691, + "PaymentType": "Debit Card" + }, + { + "Id": 17115, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-06-15T10:17:28", + "TransactionId": 52845669, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 161, + "CustomerInfo": 99880075, + "PaymentType": "Cash" + }, + { + "Id": 17116, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-01-13T09:41:02", + "TransactionId": 91232554, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 296, + "CustomerInfo": 97857062, + "PaymentType": "Debit Card" + }, + { + "Id": 17117, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-06-13T08:57:07", + "TransactionId": 8672123, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 643, + "CustomerInfo": 51805329, + "PaymentType": "Credit Card" + }, + { + "Id": 17118, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2016-03-24T12:54:00", + "TransactionId": 42451312, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 728, + "CustomerInfo": 33441600, + "PaymentType": "Debit Card" + }, + { + "Id": 17119, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2019-01-09T16:44:33", + "TransactionId": 68809424, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 433, + "CustomerInfo": 46283267, + "PaymentType": "Debit Card" + }, + { + "Id": 17120, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-11-12T07:30:00", + "TransactionId": 32674453, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 50, + "CustomerInfo": 88230078, + "PaymentType": "Cash" + }, + { + "Id": 17121, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2016-11-23T12:04:54", + "TransactionId": 37722735, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 131, + "CustomerInfo": 7099953, + "PaymentType": "Cash" + }, + { + "Id": 17122, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2019-05-03T11:14:12", + "TransactionId": 95460431, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 843, + "CustomerInfo": 15585463, + "PaymentType": "Credit Card" + }, + { + "Id": 17123, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2017-02-28T19:19:12", + "TransactionId": 61796447, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 38, + "CustomerInfo": 53817000, + "PaymentType": "Debit Card" + }, + { + "Id": 17124, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2017-02-26T18:37:00", + "TransactionId": 43380191, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 897, + "CustomerInfo": 32215641, + "PaymentType": "Cash" + }, + { + "Id": 17125, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2017-01-08T15:36:26", + "TransactionId": 53197090, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 65, + "CustomerInfo": 68147484, + "PaymentType": "Debit Card" + }, + { + "Id": 17126, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2016-05-29T09:42:37", + "TransactionId": 12036852, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 330, + "CustomerInfo": 96844686, + "PaymentType": "Credit Card" + }, + { + "Id": 17127, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2016-04-11T16:55:47", + "TransactionId": 72392577, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 50, + "CustomerInfo": 60825445, + "PaymentType": "Credit Card" + }, + { + "Id": 17128, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2017-10-18T13:50:53", + "TransactionId": 9813850, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 319, + "CustomerInfo": 12610046, + "PaymentType": "Debit Card" + }, + { + "Id": 17129, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2019-08-02T07:42:06", + "TransactionId": 61724371, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 51, + "CustomerInfo": 17382344, + "PaymentType": "Cash" + }, + { + "Id": 17130, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2018-11-16T15:14:50", + "TransactionId": 95173590, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 970, + "CustomerInfo": 22629902, + "PaymentType": "Cash" + }, + { + "Id": 17131, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2018-02-19T16:07:15", + "TransactionId": 70545805, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 76, + "CustomerInfo": 53221093, + "PaymentType": "Credit Card" + }, + { + "Id": 17132, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-06-03T16:18:20", + "TransactionId": 48379812, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 781, + "CustomerInfo": 67914401, + "PaymentType": "Cash" + }, + { + "Id": 17133, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-01-15T13:51:45", + "TransactionId": 19059723, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 163, + "CustomerInfo": 59627864, + "PaymentType": "Debit Card" + }, + { + "Id": 17134, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2016-11-01T07:20:12", + "TransactionId": 92009288, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 820, + "CustomerInfo": 59070195, + "PaymentType": "Credit Card" + }, + { + "Id": 17135, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2016-03-07T11:04:51", + "TransactionId": 80663959, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 231, + "CustomerInfo": 46397716, + "PaymentType": "Credit Card" + }, + { + "Id": 17136, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2018-11-28T15:38:18", + "TransactionId": 52754625, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 505, + "CustomerInfo": 3248129, + "PaymentType": "Debit Card" + }, + { + "Id": 17137, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-07-28T12:32:33", + "TransactionId": 2693863, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 899, + "CustomerInfo": 80062421, + "PaymentType": "Debit Card" + }, + { + "Id": 17138, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2016-03-17T09:48:23", + "TransactionId": 50226606, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 37, + "CustomerInfo": 23113775, + "PaymentType": "Debit Card" + }, + { + "Id": 17139, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2018-02-03T13:14:10", + "TransactionId": 5448587, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 70087651, + "PaymentType": "Debit Card" + }, + { + "Id": 17140, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-08-03T16:32:44", + "TransactionId": 1599055, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 867, + "CustomerInfo": 94153286, + "PaymentType": "Cash" + }, + { + "Id": 17141, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2019-10-29T17:31:03", + "TransactionId": 23542947, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 334, + "CustomerInfo": 79534986, + "PaymentType": "Debit Card" + }, + { + "Id": 17142, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2017-12-13T09:06:37", + "TransactionId": 29606112, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 623, + "CustomerInfo": 81315432, + "PaymentType": "Cash" + }, + { + "Id": 17143, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-1", + "TransactionDate": "2019-07-31T08:20:41", + "TransactionId": 56855091, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 677, + "CustomerInfo": 84250199, + "PaymentType": "Credit Card" + }, + { + "Id": 17144, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2016-04-06T12:39:27", + "TransactionId": 63561125, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 611, + "CustomerInfo": 71097914, + "PaymentType": "Cash" + }, + { + "Id": 17145, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-07-26T14:17:48", + "TransactionId": 9120034, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 177, + "CustomerInfo": 14539929, + "PaymentType": "Cash" + }, + { + "Id": 17146, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2018-05-11T19:34:45", + "TransactionId": 80631256, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 124, + "CustomerInfo": 25124626, + "PaymentType": "Cash" + }, + { + "Id": 17147, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2017-08-17T15:41:54", + "TransactionId": 59655375, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 990, + "CustomerInfo": 77657133, + "PaymentType": "Debit Card" + }, + { + "Id": 17148, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-08-11T15:49:15", + "TransactionId": 79480731, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 382, + "CustomerInfo": 50765856, + "PaymentType": "Cash" + }, + { + "Id": 17149, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2017-10-15T18:37:18", + "TransactionId": 51320827, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 504, + "CustomerInfo": 65966029, + "PaymentType": "Debit Card" + }, + { + "Id": 17150, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2017-05-28T07:07:32", + "TransactionId": 80296622, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 965, + "CustomerInfo": 82037117, + "PaymentType": "Credit Card" + }, + { + "Id": 17151, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-06-16T08:37:49", + "TransactionId": 7223112, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 510, + "CustomerInfo": 67474708, + "PaymentType": "Cash" + }, + { + "Id": 17152, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2019-10-12T18:02:53", + "TransactionId": 43891619, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 274, + "CustomerInfo": 78971265, + "PaymentType": "Cash" + }, + { + "Id": 17153, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-11-11T11:47:54", + "TransactionId": 61684169, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 190, + "CustomerInfo": 50741895, + "PaymentType": "Debit Card" + }, + { + "Id": 17154, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2018-10-12T14:13:38", + "TransactionId": 77243923, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 950, + "CustomerInfo": 23031717, + "PaymentType": "Cash" + }, + { + "Id": 17155, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2017-02-19T12:43:12", + "TransactionId": 88598821, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 603, + "CustomerInfo": 38248228, + "PaymentType": "Credit Card" + }, + { + "Id": 17156, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2016-02-25T15:42:29", + "TransactionId": 40358808, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 767, + "CustomerInfo": 9282143, + "PaymentType": "Cash" + }, + { + "Id": 17157, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2017-08-16T09:47:14", + "TransactionId": 98653640, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 728, + "CustomerInfo": 88995273, + "PaymentType": "Cash" + }, + { + "Id": 17158, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-08-15T18:05:28", + "TransactionId": 12470564, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 736, + "CustomerInfo": 43946855, + "PaymentType": "Debit Card" + }, + { + "Id": 17159, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2019-02-28T10:45:33", + "TransactionId": 85000995, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 162, + "CustomerInfo": 6053732, + "PaymentType": "Credit Card" + }, + { + "Id": 17160, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2019-05-23T17:45:27", + "TransactionId": 20247548, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 817, + "CustomerInfo": 83651732, + "PaymentType": "Credit Card" + }, + { + "Id": 17161, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-01-15T16:13:35", + "TransactionId": 28795383, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 43870296, + "PaymentType": "Debit Card" + }, + { + "Id": 17162, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-5", + "TransactionDate": "2018-10-02T16:23:48", + "TransactionId": 70556584, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 804, + "CustomerInfo": 78307061, + "PaymentType": "Credit Card" + }, + { + "Id": 17163, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2019-06-16T17:19:24", + "TransactionId": 63029088, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 617, + "CustomerInfo": 10729205, + "PaymentType": "Credit Card" + }, + { + "Id": 17164, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2019-08-07T12:10:39", + "TransactionId": 17535834, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 747, + "CustomerInfo": 15756172, + "PaymentType": "Cash" + }, + { + "Id": 17165, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2017-11-16T18:06:03", + "TransactionId": 64043386, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 446, + "CustomerInfo": 71026283, + "PaymentType": "Cash" + }, + { + "Id": 17166, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2016-10-26T09:01:26", + "TransactionId": 12694621, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 613, + "CustomerInfo": 24924307, + "PaymentType": "Debit Card" + }, + { + "Id": 17167, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2018-03-28T10:26:41", + "TransactionId": 56954112, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 730, + "CustomerInfo": 91245159, + "PaymentType": "Debit Card" + }, + { + "Id": 17168, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2018-07-26T11:29:11", + "TransactionId": 39037033, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 537, + "CustomerInfo": 90534361, + "PaymentType": "Cash" + }, + { + "Id": 17169, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-08-08T12:38:36", + "TransactionId": 16630461, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 237, + "CustomerInfo": 26015043, + "PaymentType": "Debit Card" + }, + { + "Id": 17170, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-02-06T07:40:13", + "TransactionId": 19649162, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 668, + "CustomerInfo": 78623272, + "PaymentType": "Credit Card" + }, + { + "Id": 17171, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2019-10-15T11:31:47", + "TransactionId": 57014248, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 925, + "CustomerInfo": 6069685, + "PaymentType": "Credit Card" + }, + { + "Id": 17172, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2018-10-01T11:28:19", + "TransactionId": 3219050, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 826, + "CustomerInfo": 74154888, + "PaymentType": "Debit Card" + }, + { + "Id": 17173, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2019-03-29T07:13:18", + "TransactionId": 69146196, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 864, + "CustomerInfo": 81024422, + "PaymentType": "Debit Card" + }, + { + "Id": 17174, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-08-08T18:27:39", + "TransactionId": 14334318, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 755, + "CustomerInfo": 78844009, + "PaymentType": "Credit Card" + }, + { + "Id": 17175, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2016-04-16T09:38:01", + "TransactionId": 50613328, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 502, + "CustomerInfo": 61040363, + "PaymentType": "Credit Card" + }, + { + "Id": 17176, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-11-11T12:09:22", + "TransactionId": 96359740, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 529, + "CustomerInfo": 91314922, + "PaymentType": "Credit Card" + }, + { + "Id": 17177, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2016-11-25T08:09:36", + "TransactionId": 64756314, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 42, + "CustomerInfo": 64725868, + "PaymentType": "Cash" + }, + { + "Id": 17178, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-10-13T15:38:18", + "TransactionId": 52617634, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 795, + "CustomerInfo": 75843697, + "PaymentType": "Credit Card" + }, + { + "Id": 17179, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-05-21T17:13:21", + "TransactionId": 76700721, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 635, + "CustomerInfo": 80029365, + "PaymentType": "Debit Card" + }, + { + "Id": 17180, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-06-29T10:05:23", + "TransactionId": 98015462, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 764, + "CustomerInfo": 17593577, + "PaymentType": "Cash" + }, + { + "Id": 17181, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2018-01-26T08:53:48", + "TransactionId": 65702826, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 130, + "CustomerInfo": 17705542, + "PaymentType": "Credit Card" + }, + { + "Id": 17182, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2019-06-28T07:50:27", + "TransactionId": 87655940, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 965, + "CustomerInfo": 88869764, + "PaymentType": "Cash" + }, + { + "Id": 17183, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-06-05T10:26:41", + "TransactionId": 98891820, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 866, + "CustomerInfo": 19211684, + "PaymentType": "Debit Card" + }, + { + "Id": 17184, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2017-01-29T11:20:24", + "TransactionId": 66163721, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 481, + "CustomerInfo": 34066723, + "PaymentType": "Credit Card" + }, + { + "Id": 17185, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2018-12-06T16:41:31", + "TransactionId": 17303441, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 382, + "CustomerInfo": 99693594, + "PaymentType": "Credit Card" + }, + { + "Id": 17186, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-4", + "TransactionDate": "2019-11-12T16:07:58", + "TransactionId": 6965200, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 624, + "CustomerInfo": 66911072, + "PaymentType": "Debit Card" + }, + { + "Id": 17187, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-04-20T19:09:59", + "TransactionId": 49429637, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 778, + "CustomerInfo": 48031751, + "PaymentType": "Credit Card" + }, + { + "Id": 17188, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2016-10-30T08:37:24", + "TransactionId": 97077775, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 272, + "CustomerInfo": 37348135, + "PaymentType": "Debit Card" + }, + { + "Id": 17189, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-11-03T08:25:09", + "TransactionId": 17078624, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 575, + "CustomerInfo": 49105593, + "PaymentType": "Cash" + }, + { + "Id": 17190, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-08-24T09:43:47", + "TransactionId": 56203077, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 252, + "CustomerInfo": 47302274, + "PaymentType": "Credit Card" + }, + { + "Id": 17191, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-09-10T12:54:09", + "TransactionId": 42301900, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 987, + "CustomerInfo": 86111619, + "PaymentType": "Credit Card" + }, + { + "Id": 17192, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-01-04T14:02:15", + "TransactionId": 88636963, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 478, + "CustomerInfo": 24824918, + "PaymentType": "Credit Card" + }, + { + "Id": 17193, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-04-18T11:28:02", + "TransactionId": 92609877, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 467, + "CustomerInfo": 48622242, + "PaymentType": "Cash" + }, + { + "Id": 17194, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2018-10-01T16:14:36", + "TransactionId": 4479973, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 134, + "CustomerInfo": 84081621, + "PaymentType": "Cash" + }, + { + "Id": 17195, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2018-10-05T16:55:38", + "TransactionId": 31130694, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 310, + "CustomerInfo": 76029231, + "PaymentType": "Debit Card" + }, + { + "Id": 17196, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2018-07-22T16:42:23", + "TransactionId": 12402326, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 236, + "CustomerInfo": 10961274, + "PaymentType": "Credit Card" + }, + { + "Id": 17197, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2018-05-04T10:10:16", + "TransactionId": 27071322, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 428, + "CustomerInfo": 16805303, + "PaymentType": "Debit Card" + }, + { + "Id": 17198, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-09-12T19:43:58", + "TransactionId": 48409724, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 20, + "CustomerInfo": 89010717, + "PaymentType": "Debit Card" + }, + { + "Id": 17199, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2019-03-13T18:52:51", + "TransactionId": 21618621, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 873, + "CustomerInfo": 50284896, + "PaymentType": "Debit Card" + }, + { + "Id": 17200, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2018-03-05T15:53:43", + "TransactionId": 54346720, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 594, + "CustomerInfo": 66993547, + "PaymentType": "Cash" + }, + { + "Id": 17201, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-12-12T16:32:01", + "TransactionId": 33041420, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 150, + "CustomerInfo": 71672365, + "PaymentType": "Cash" + }, + { + "Id": 17202, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2019-02-23T10:27:07", + "TransactionId": 35042052, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 548, + "CustomerInfo": 35931927, + "PaymentType": "Cash" + }, + { + "Id": 17203, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2019-01-27T11:51:48", + "TransactionId": 92976515, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 969, + "CustomerInfo": 48227872, + "PaymentType": "Credit Card" + }, + { + "Id": 17204, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-01-27T16:34:11", + "TransactionId": 43546313, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 910, + "CustomerInfo": 96615961, + "PaymentType": "Cash" + }, + { + "Id": 17205, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2019-07-14T12:41:54", + "TransactionId": 22626383, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 443, + "CustomerInfo": 87438225, + "PaymentType": "Debit Card" + }, + { + "Id": 17206, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2019-01-10T09:19:35", + "TransactionId": 95346413, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 906, + "CustomerInfo": 63894846, + "PaymentType": "Debit Card" + }, + { + "Id": 17207, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-4", + "TransactionDate": "2018-01-02T12:19:52", + "TransactionId": 84608844, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 29340673, + "PaymentType": "Debit Card" + }, + { + "Id": 17208, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2016-12-23T09:33:07", + "TransactionId": 93451165, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 106, + "CustomerInfo": 65122939, + "PaymentType": "Credit Card" + }, + { + "Id": 17209, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2017-10-28T13:22:39", + "TransactionId": 29395342, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 377, + "CustomerInfo": 59895568, + "PaymentType": "Cash" + }, + { + "Id": 17210, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-05-20T19:46:34", + "TransactionId": 79572545, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 339, + "CustomerInfo": 68957510, + "PaymentType": "Credit Card" + }, + { + "Id": 17211, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2018-04-17T09:48:14", + "TransactionId": 98919443, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 310, + "CustomerInfo": 53745516, + "PaymentType": "Debit Card" + }, + { + "Id": 17212, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-09-06T16:59:14", + "TransactionId": 11087583, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 720, + "CustomerInfo": 87974435, + "PaymentType": "Debit Card" + }, + { + "Id": 17213, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2016-10-21T10:09:50", + "TransactionId": 76422360, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 390, + "CustomerInfo": 83733750, + "PaymentType": "Debit Card" + }, + { + "Id": 17214, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-08-25T10:35:37", + "TransactionId": 57720407, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 787, + "CustomerInfo": 50086301, + "PaymentType": "Debit Card" + }, + { + "Id": 17215, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-09-06T13:10:34", + "TransactionId": 94753046, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 213, + "CustomerInfo": 39006417, + "PaymentType": "Debit Card" + }, + { + "Id": 17216, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2017-10-13T17:30:46", + "TransactionId": 87871148, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 192, + "CustomerInfo": 15472554, + "PaymentType": "Credit Card" + }, + { + "Id": 17217, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2019-03-18T10:11:34", + "TransactionId": 95976825, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 216, + "CustomerInfo": 82883171, + "PaymentType": "Cash" + }, + { + "Id": 17218, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2019-01-05T09:07:03", + "TransactionId": 49229454, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 888, + "CustomerInfo": 53160827, + "PaymentType": "Cash" + }, + { + "Id": 17219, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-12-12T18:16:34", + "TransactionId": 79734094, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 329, + "CustomerInfo": 27779544, + "PaymentType": "Credit Card" + }, + { + "Id": 17220, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2019-04-19T14:38:59", + "TransactionId": 49261701, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 982, + "CustomerInfo": 48929987, + "PaymentType": "Cash" + }, + { + "Id": 17221, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2018-07-24T18:04:11", + "TransactionId": 44922379, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 814, + "CustomerInfo": 8722857, + "PaymentType": "Cash" + }, + { + "Id": 17222, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-09-23T10:34:36", + "TransactionId": 83382351, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 296, + "CustomerInfo": 54536368, + "PaymentType": "Cash" + }, + { + "Id": 17223, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2016-08-25T15:06:12", + "TransactionId": 17725989, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 182, + "CustomerInfo": 64005990, + "PaymentType": "Debit Card" + }, + { + "Id": 17224, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-05-20T17:26:01", + "TransactionId": 65527683, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 192, + "CustomerInfo": 55988516, + "PaymentType": "Debit Card" + }, + { + "Id": 17225, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2018-12-17T19:32:27", + "TransactionId": 89545126, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 894, + "CustomerInfo": 41800157, + "PaymentType": "Debit Card" + }, + { + "Id": 17226, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-05-12T19:06:40", + "TransactionId": 70109768, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 721, + "CustomerInfo": 34435390, + "PaymentType": "Credit Card" + }, + { + "Id": 17227, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2018-08-11T17:42:17", + "TransactionId": 6412156, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 845, + "CustomerInfo": 14108914, + "PaymentType": "Cash" + }, + { + "Id": 17228, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2019-03-12T13:46:34", + "TransactionId": 47374010, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 732, + "CustomerInfo": 90241710, + "PaymentType": "Credit Card" + }, + { + "Id": 17229, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2017-11-17T09:25:47", + "TransactionId": 87505586, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 394, + "CustomerInfo": 3285790, + "PaymentType": "Cash" + }, + { + "Id": 17230, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2016-08-11T18:21:10", + "TransactionId": 67235693, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 236, + "CustomerInfo": 51954202, + "PaymentType": "Debit Card" + }, + { + "Id": 17231, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2017-07-08T18:50:50", + "TransactionId": 52467406, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 215, + "CustomerInfo": 61465014, + "PaymentType": "Credit Card" + }, + { + "Id": 17232, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-3", + "TransactionDate": "2019-07-16T07:50:10", + "TransactionId": 54002466, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 81, + "CustomerInfo": 51164115, + "PaymentType": "Debit Card" + }, + { + "Id": 17233, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2016-01-17T18:51:42", + "TransactionId": 67100433, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 307, + "CustomerInfo": 68101150, + "PaymentType": "Cash" + }, + { + "Id": 17234, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-03-24T09:30:32", + "TransactionId": 48449466, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 794, + "CustomerInfo": 20172647, + "PaymentType": "Debit Card" + }, + { + "Id": 17235, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-02-18T17:50:04", + "TransactionId": 87005680, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 42, + "CustomerInfo": 56931948, + "PaymentType": "Debit Card" + }, + { + "Id": 17236, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2017-02-19T09:51:16", + "TransactionId": 88953843, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 836, + "CustomerInfo": 23263950, + "PaymentType": "Credit Card" + }, + { + "Id": 17237, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2018-01-27T09:56:10", + "TransactionId": 51634742, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 829, + "CustomerInfo": 81935216, + "PaymentType": "Cash" + }, + { + "Id": 17238, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-3", + "TransactionDate": "2016-10-17T18:49:49", + "TransactionId": 1378390, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 285, + "CustomerInfo": 30754914, + "PaymentType": "Cash" + }, + { + "Id": 17239, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-12-01T12:15:59", + "TransactionId": 31886920, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 515, + "CustomerInfo": 55765064, + "PaymentType": "Cash" + }, + { + "Id": 17240, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2016-11-02T11:31:03", + "TransactionId": 50628020, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 588, + "CustomerInfo": 84251088, + "PaymentType": "Credit Card" + }, + { + "Id": 17241, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-08-01T11:40:08", + "TransactionId": 65144800, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 10, + "CustomerInfo": 69865385, + "PaymentType": "Cash" + }, + { + "Id": 17242, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2019-05-24T18:41:37", + "TransactionId": 5151720, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 739, + "CustomerInfo": 54595573, + "PaymentType": "Cash" + }, + { + "Id": 17243, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2018-05-14T17:04:42", + "TransactionId": 69605607, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 283, + "CustomerInfo": 47598713, + "PaymentType": "Debit Card" + }, + { + "Id": 17244, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2016-09-22T07:19:55", + "TransactionId": 63370033, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 721, + "CustomerInfo": 39260977, + "PaymentType": "Debit Card" + }, + { + "Id": 17245, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2016-12-10T11:52:22", + "TransactionId": 439251, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 78, + "CustomerInfo": 65786495, + "PaymentType": "Debit Card" + }, + { + "Id": 17246, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-12-18T14:42:09", + "TransactionId": 52420482, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 45008923, + "PaymentType": "Debit Card" + }, + { + "Id": 17247, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-04-09T17:07:00", + "TransactionId": 87260353, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 141, + "CustomerInfo": 59321166, + "PaymentType": "Debit Card" + }, + { + "Id": 17248, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2016-01-04T08:26:36", + "TransactionId": 84683259, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 356, + "CustomerInfo": 3206954, + "PaymentType": "Cash" + }, + { + "Id": 17249, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2018-04-24T13:37:29", + "TransactionId": 84795834, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 254, + "CustomerInfo": 14952192, + "PaymentType": "Credit Card" + }, + { + "Id": 17250, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2018-07-17T14:17:05", + "TransactionId": 88173966, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 846, + "CustomerInfo": 52658065, + "PaymentType": "Cash" + }, + { + "Id": 17251, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-05-28T13:05:05", + "TransactionId": 80104838, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 868, + "CustomerInfo": 18980574, + "PaymentType": "Credit Card" + }, + { + "Id": 17252, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2019-07-28T17:27:19", + "TransactionId": 4779897, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 407, + "CustomerInfo": 76849740, + "PaymentType": "Cash" + }, + { + "Id": 17253, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2019-07-18T17:40:25", + "TransactionId": 87380351, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 772, + "CustomerInfo": 12143271, + "PaymentType": "Cash" + }, + { + "Id": 17254, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2019-09-15T09:58:02", + "TransactionId": 19045717, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 426, + "CustomerInfo": 64805017, + "PaymentType": "Cash" + }, + { + "Id": 17255, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2018-01-31T19:32:10", + "TransactionId": 7852546, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 351, + "CustomerInfo": 51220835, + "PaymentType": "Credit Card" + }, + { + "Id": 17256, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-07-19T17:51:13", + "TransactionId": 10883511, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 124, + "CustomerInfo": 3228752, + "PaymentType": "Cash" + }, + { + "Id": 17257, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2018-12-04T13:21:04", + "TransactionId": 11576360, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 320, + "CustomerInfo": 67691518, + "PaymentType": "Cash" + }, + { + "Id": 17258, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2019-09-28T08:12:12", + "TransactionId": 43221462, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 254, + "CustomerInfo": 79628792, + "PaymentType": "Credit Card" + }, + { + "Id": 17259, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-08-26T18:06:03", + "TransactionId": 18721203, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 635, + "CustomerInfo": 21973015, + "PaymentType": "Cash" + }, + { + "Id": 17260, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2017-02-09T13:10:51", + "TransactionId": 88357607, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 10, + "CustomerInfo": 70517070, + "PaymentType": "Cash" + }, + { + "Id": 17261, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2018-03-31T14:11:02", + "TransactionId": 34469027, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 992, + "CustomerInfo": 50027119, + "PaymentType": "Debit Card" + }, + { + "Id": 17262, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2018-01-20T14:47:46", + "TransactionId": 26533469, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 916, + "CustomerInfo": 73904434, + "PaymentType": "Debit Card" + }, + { + "Id": 17263, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2019-03-19T17:34:22", + "TransactionId": 44924670, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 374, + "CustomerInfo": 55502347, + "PaymentType": "Cash" + }, + { + "Id": 17264, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2016-04-22T15:31:49", + "TransactionId": 81168527, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 786, + "CustomerInfo": 35548884, + "PaymentType": "Cash" + }, + { + "Id": 17265, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-11-08T11:46:19", + "TransactionId": 24190783, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 371, + "CustomerInfo": 8671420, + "PaymentType": "Credit Card" + }, + { + "Id": 17266, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-09-16T12:57:27", + "TransactionId": 21646289, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 229, + "CustomerInfo": 77956691, + "PaymentType": "Cash" + }, + { + "Id": 17267, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2017-11-01T13:37:38", + "TransactionId": 84653366, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 550, + "CustomerInfo": 75621900, + "PaymentType": "Cash" + }, + { + "Id": 17268, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2016-12-19T10:15:45", + "TransactionId": 37059709, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 736, + "CustomerInfo": 31426707, + "PaymentType": "Cash" + }, + { + "Id": 17269, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-03-24T19:40:13", + "TransactionId": 16685159, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 494, + "CustomerInfo": 98233819, + "PaymentType": "Debit Card" + }, + { + "Id": 17270, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2016-10-24T17:33:13", + "TransactionId": 44637192, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 345, + "CustomerInfo": 84217744, + "PaymentType": "Cash" + }, + { + "Id": 17271, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-07-06T10:03:13", + "TransactionId": 87685618, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 120, + "CustomerInfo": 54265603, + "PaymentType": "Credit Card" + }, + { + "Id": 17272, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2018-09-04T15:52:25", + "TransactionId": 69632457, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 25, + "CustomerInfo": 99448591, + "PaymentType": "Cash" + }, + { + "Id": 17273, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-07-21T14:45:53", + "TransactionId": 38198567, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 159, + "CustomerInfo": 52774145, + "PaymentType": "Cash" + }, + { + "Id": 17274, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2016-04-11T18:53:08", + "TransactionId": 14599290, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 838, + "CustomerInfo": 5715480, + "PaymentType": "Debit Card" + }, + { + "Id": 17275, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2019-01-07T13:15:36", + "TransactionId": 91613491, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 845, + "CustomerInfo": 64264500, + "PaymentType": "Cash" + }, + { + "Id": 17276, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2017-07-26T09:48:58", + "TransactionId": 76345035, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 301, + "CustomerInfo": 22314064, + "PaymentType": "Credit Card" + }, + { + "Id": 17277, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-05-19T19:56:30", + "TransactionId": 46696978, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 592, + "CustomerInfo": 76480553, + "PaymentType": "Cash" + }, + { + "Id": 17278, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-08-29T17:15:48", + "TransactionId": 20862264, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 492, + "CustomerInfo": 41011218, + "PaymentType": "Cash" + }, + { + "Id": 17279, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2016-03-17T19:53:37", + "TransactionId": 49199668, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 934, + "CustomerInfo": 50737251, + "PaymentType": "Debit Card" + }, + { + "Id": 17280, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-5", + "TransactionDate": "2019-03-02T08:49:21", + "TransactionId": 33690057, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 925, + "CustomerInfo": 41407883, + "PaymentType": "Credit Card" + }, + { + "Id": 17281, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2017-01-22T07:16:36", + "TransactionId": 12463208, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 599, + "CustomerInfo": 19544088, + "PaymentType": "Cash" + }, + { + "Id": 17282, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2016-08-30T13:59:05", + "TransactionId": 96677478, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 998, + "CustomerInfo": 58188534, + "PaymentType": "Debit Card" + }, + { + "Id": 17283, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-10-01T07:39:13", + "TransactionId": 64138381, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 378, + "CustomerInfo": 5049824, + "PaymentType": "Cash" + }, + { + "Id": 17284, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-02-10T13:34:36", + "TransactionId": 90058048, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 426, + "CustomerInfo": 88897907, + "PaymentType": "Debit Card" + }, + { + "Id": 17285, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2017-07-07T10:25:24", + "TransactionId": 40633232, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 281, + "CustomerInfo": 43100430, + "PaymentType": "Credit Card" + }, + { + "Id": 17286, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2019-10-24T17:03:16", + "TransactionId": 38689730, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 335, + "CustomerInfo": 98023106, + "PaymentType": "Debit Card" + }, + { + "Id": 17287, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2016-12-27T19:57:56", + "TransactionId": 47629534, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 568, + "CustomerInfo": 12016508, + "PaymentType": "Credit Card" + }, + { + "Id": 17288, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-12-08T08:05:00", + "TransactionId": 32302202, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 690, + "CustomerInfo": 14187926, + "PaymentType": "Cash" + }, + { + "Id": 17289, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2017-11-18T08:33:04", + "TransactionId": 12304817, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 752, + "CustomerInfo": 80971846, + "PaymentType": "Cash" + }, + { + "Id": 17290, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2017-12-01T15:13:15", + "TransactionId": 46729864, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 5547502, + "PaymentType": "Credit Card" + }, + { + "Id": 17291, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2017-10-01T16:45:59", + "TransactionId": 21313770, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 596, + "CustomerInfo": 92227148, + "PaymentType": "Debit Card" + }, + { + "Id": 17292, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-08-08T17:52:57", + "TransactionId": 64295244, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 622, + "CustomerInfo": 43970251, + "PaymentType": "Credit Card" + }, + { + "Id": 17293, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2019-11-06T10:53:37", + "TransactionId": 71973928, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 391, + "CustomerInfo": 69053117, + "PaymentType": "Credit Card" + }, + { + "Id": 17294, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2017-12-13T16:35:28", + "TransactionId": 33024265, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 97, + "CustomerInfo": 22119619, + "PaymentType": "Credit Card" + }, + { + "Id": 17295, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-1", + "TransactionDate": "2019-06-13T10:01:55", + "TransactionId": 2864058, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 621, + "CustomerInfo": 74627982, + "PaymentType": "Credit Card" + }, + { + "Id": 17296, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2016-05-16T19:13:26", + "TransactionId": 25223548, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 714, + "CustomerInfo": 52114860, + "PaymentType": "Credit Card" + }, + { + "Id": 17297, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2016-08-04T07:49:35", + "TransactionId": 77363053, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 465, + "CustomerInfo": 62749156, + "PaymentType": "Credit Card" + }, + { + "Id": 17298, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2016-03-07T13:24:06", + "TransactionId": 70454028, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 552, + "CustomerInfo": 58241684, + "PaymentType": "Credit Card" + }, + { + "Id": 17299, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2019-02-26T10:05:57", + "TransactionId": 50898949, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 456, + "CustomerInfo": 67702402, + "PaymentType": "Credit Card" + }, + { + "Id": 17300, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2017-01-26T12:47:23", + "TransactionId": 7212517, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 613, + "CustomerInfo": 70527493, + "PaymentType": "Credit Card" + }, + { + "Id": 17301, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2019-11-05T10:30:17", + "TransactionId": 58843945, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 295, + "CustomerInfo": 68253753, + "PaymentType": "Debit Card" + }, + { + "Id": 17302, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2019-02-27T18:55:18", + "TransactionId": 94652628, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 175, + "CustomerInfo": 4467461, + "PaymentType": "Debit Card" + }, + { + "Id": 17303, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2018-11-24T16:23:31", + "TransactionId": 14900434, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 475, + "CustomerInfo": 7365360, + "PaymentType": "Debit Card" + }, + { + "Id": 17304, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2018-08-02T07:13:09", + "TransactionId": 3140533, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 334, + "CustomerInfo": 53390421, + "PaymentType": "Cash" + }, + { + "Id": 17305, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2019-06-05T11:04:51", + "TransactionId": 98628084, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 319, + "CustomerInfo": 63222947, + "PaymentType": "Debit Card" + }, + { + "Id": 17306, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-09-09T15:09:22", + "TransactionId": 83356785, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 992, + "CustomerInfo": 65903773, + "PaymentType": "Debit Card" + }, + { + "Id": 17307, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2016-12-14T09:23:46", + "TransactionId": 83723764, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 82, + "CustomerInfo": 51815328, + "PaymentType": "Credit Card" + }, + { + "Id": 17308, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-10-22T14:34:05", + "TransactionId": 501236, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 291, + "CustomerInfo": 59416036, + "PaymentType": "Cash" + }, + { + "Id": 17309, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-04-19T18:49:06", + "TransactionId": 76683186, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 632, + "CustomerInfo": 64838566, + "PaymentType": "Credit Card" + }, + { + "Id": 17310, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2017-10-08T14:14:04", + "TransactionId": 98821632, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 692, + "CustomerInfo": 60619188, + "PaymentType": "Credit Card" + }, + { + "Id": 17311, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-03-28T19:12:52", + "TransactionId": 32560405, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 592, + "CustomerInfo": 87743912, + "PaymentType": "Debit Card" + }, + { + "Id": 17312, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-05-18T19:10:25", + "TransactionId": 2158726, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 289, + "CustomerInfo": 363659, + "PaymentType": "Credit Card" + }, + { + "Id": 17313, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2019-05-19T11:49:47", + "TransactionId": 19381584, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 305, + "CustomerInfo": 14239498, + "PaymentType": "Credit Card" + }, + { + "Id": 17314, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-08-31T12:08:12", + "TransactionId": 2840624, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 283, + "CustomerInfo": 75882552, + "PaymentType": "Credit Card" + }, + { + "Id": 17315, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2017-06-30T19:34:36", + "TransactionId": 72798527, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 600, + "CustomerInfo": 48323606, + "PaymentType": "Credit Card" + }, + { + "Id": 17316, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2019-11-23T09:32:15", + "TransactionId": 84195282, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 946, + "CustomerInfo": 30486130, + "PaymentType": "Cash" + }, + { + "Id": 17317, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-05-18T19:00:46", + "TransactionId": 23263031, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 63558924, + "PaymentType": "Cash" + }, + { + "Id": 17318, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2018-07-29T12:02:01", + "TransactionId": 36133944, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 391, + "CustomerInfo": 35396807, + "PaymentType": "Credit Card" + }, + { + "Id": 17319, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2018-12-24T18:17:34", + "TransactionId": 377571, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 6602670, + "PaymentType": "Cash" + }, + { + "Id": 17320, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2018-09-14T16:18:20", + "TransactionId": 55146887, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 14065145, + "PaymentType": "Cash" + }, + { + "Id": 17321, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-06-04T16:18:55", + "TransactionId": 37757181, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 251, + "CustomerInfo": 84911753, + "PaymentType": "Debit Card" + }, + { + "Id": 17322, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-12-11T12:22:54", + "TransactionId": 96023119, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 11, + "CustomerInfo": 78992026, + "PaymentType": "Debit Card" + }, + { + "Id": 17323, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-12-14T07:08:24", + "TransactionId": 47868053, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 185, + "CustomerInfo": 6560048, + "PaymentType": "Debit Card" + }, + { + "Id": 17324, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2016-02-07T18:59:46", + "TransactionId": 39344758, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 33231547, + "PaymentType": "Cash" + }, + { + "Id": 17325, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-08-28T14:53:40", + "TransactionId": 61982781, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 949, + "CustomerInfo": 26338117, + "PaymentType": "Cash" + }, + { + "Id": 17326, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-11-23T11:27:45", + "TransactionId": 39692313, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 694, + "CustomerInfo": 89549019, + "PaymentType": "Debit Card" + }, + { + "Id": 17327, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-05-31T18:21:53", + "TransactionId": 3673135, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 286, + "CustomerInfo": 68296045, + "PaymentType": "Credit Card" + }, + { + "Id": 17328, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2018-07-01T17:36:40", + "TransactionId": 3633858, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 455, + "CustomerInfo": 70101132, + "PaymentType": "Credit Card" + }, + { + "Id": 17329, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2018-09-19T07:09:50", + "TransactionId": 39597072, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 716, + "CustomerInfo": 19370116, + "PaymentType": "Debit Card" + }, + { + "Id": 17330, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2016-05-24T09:39:10", + "TransactionId": 26080038, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 205, + "CustomerInfo": 40923086, + "PaymentType": "Cash" + }, + { + "Id": 17331, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-12-04T15:46:48", + "TransactionId": 71106309, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 881, + "CustomerInfo": 18037552, + "PaymentType": "Credit Card" + }, + { + "Id": 17332, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2019-03-20T15:33:07", + "TransactionId": 27849938, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 893, + "CustomerInfo": 39016334, + "PaymentType": "Cash" + }, + { + "Id": 17333, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2016-09-26T11:14:12", + "TransactionId": 62096571, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 118, + "CustomerInfo": 37498216, + "PaymentType": "Debit Card" + }, + { + "Id": 17334, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-5", + "TransactionDate": "2018-03-06T09:30:14", + "TransactionId": 92610823, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 187, + "CustomerInfo": 13431359, + "PaymentType": "Cash" + }, + { + "Id": 17335, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-06-29T09:32:07", + "TransactionId": 74547135, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 179, + "CustomerInfo": 58028379, + "PaymentType": "Credit Card" + }, + { + "Id": 17336, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2016-03-04T08:18:40", + "TransactionId": 37868930, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 99, + "CustomerInfo": 37779092, + "PaymentType": "Debit Card" + }, + { + "Id": 17337, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-05-24T11:42:35", + "TransactionId": 79895922, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 573, + "CustomerInfo": 12094619, + "PaymentType": "Debit Card" + }, + { + "Id": 17338, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-03-05T10:57:56", + "TransactionId": 14594880, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 38, + "CustomerInfo": 26818109, + "PaymentType": "Debit Card" + }, + { + "Id": 17339, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2018-07-23T13:27:07", + "TransactionId": 95695224, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 362, + "CustomerInfo": 65380052, + "PaymentType": "Debit Card" + }, + { + "Id": 17340, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2016-08-08T18:49:06", + "TransactionId": 40079994, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 830, + "CustomerInfo": 99030118, + "PaymentType": "Cash" + }, + { + "Id": 17341, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2019-03-22T11:15:04", + "TransactionId": 9657863, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 476, + "CustomerInfo": 62900113, + "PaymentType": "Credit Card" + }, + { + "Id": 17342, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2018-12-14T17:24:26", + "TransactionId": 34196120, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 946, + "CustomerInfo": 79613912, + "PaymentType": "Credit Card" + }, + { + "Id": 17343, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-06-29T08:49:38", + "TransactionId": 53655907, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 641, + "CustomerInfo": 96828362, + "PaymentType": "Credit Card" + }, + { + "Id": 17344, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2018-09-24T08:10:11", + "TransactionId": 74853451, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 320, + "CustomerInfo": 49274037, + "PaymentType": "Debit Card" + }, + { + "Id": 17345, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2016-12-06T10:05:48", + "TransactionId": 27965140, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 684, + "CustomerInfo": 26257110, + "PaymentType": "Credit Card" + }, + { + "Id": 17346, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-1", + "TransactionDate": "2017-02-26T15:41:20", + "TransactionId": 9936909, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 520, + "CustomerInfo": 98017162, + "PaymentType": "Debit Card" + }, + { + "Id": 17347, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-01-18T09:04:45", + "TransactionId": 11036504, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 42, + "CustomerInfo": 96609177, + "PaymentType": "Debit Card" + }, + { + "Id": 17348, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2016-07-25T16:19:12", + "TransactionId": 41021379, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 57517087, + "PaymentType": "Credit Card" + }, + { + "Id": 17349, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2017-12-13T08:33:48", + "TransactionId": 81074845, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 778, + "CustomerInfo": 78339594, + "PaymentType": "Debit Card" + }, + { + "Id": 17350, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2017-04-07T10:17:46", + "TransactionId": 53362847, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 457, + "CustomerInfo": 47385264, + "PaymentType": "Credit Card" + }, + { + "Id": 17351, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2019-12-17T11:59:43", + "TransactionId": 33353766, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 460, + "CustomerInfo": 52959766, + "PaymentType": "Debit Card" + }, + { + "Id": 17352, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2019-01-04T08:13:38", + "TransactionId": 66425046, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 374, + "CustomerInfo": 33995676, + "PaymentType": "Cash" + }, + { + "Id": 17353, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-06-14T11:04:42", + "TransactionId": 9391057, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 971, + "CustomerInfo": 15858825, + "PaymentType": "Debit Card" + }, + { + "Id": 17354, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-06-06T13:09:07", + "TransactionId": 95669352, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 668, + "CustomerInfo": 70038002, + "PaymentType": "Debit Card" + }, + { + "Id": 17355, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-03-13T11:34:22", + "TransactionId": 50881608, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 998, + "CustomerInfo": 3848193, + "PaymentType": "Debit Card" + }, + { + "Id": 17356, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2018-06-30T18:54:26", + "TransactionId": 57098505, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 770, + "CustomerInfo": 58242814, + "PaymentType": "Debit Card" + }, + { + "Id": 17357, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-02-28T07:28:16", + "TransactionId": 27501591, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 296, + "CustomerInfo": 40493904, + "PaymentType": "Debit Card" + }, + { + "Id": 17358, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2018-03-02T16:19:12", + "TransactionId": 43957411, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 723, + "CustomerInfo": 85830171, + "PaymentType": "Credit Card" + }, + { + "Id": 17359, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2019-09-22T16:07:32", + "TransactionId": 98876735, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 25, + "CustomerInfo": 64797262, + "PaymentType": "Cash" + }, + { + "Id": 17360, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2019-04-26T09:11:57", + "TransactionId": 53307144, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 109, + "CustomerInfo": 15411212, + "PaymentType": "Credit Card" + }, + { + "Id": 17361, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-04-18T08:09:53", + "TransactionId": 25001077, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 982, + "CustomerInfo": 16105464, + "PaymentType": "Cash" + }, + { + "Id": 17362, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2017-10-07T16:43:49", + "TransactionId": 32848690, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 207, + "CustomerInfo": 53211447, + "PaymentType": "Cash" + }, + { + "Id": 17363, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-02-03T19:44:07", + "TransactionId": 7894652, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 334, + "CustomerInfo": 98270856, + "PaymentType": "Cash" + }, + { + "Id": 17364, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2018-08-19T19:21:56", + "TransactionId": 74620278, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 67, + "CustomerInfo": 3877977, + "PaymentType": "Cash" + }, + { + "Id": 17365, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2016-11-22T14:09:19", + "TransactionId": 83757005, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 694, + "CustomerInfo": 52453660, + "PaymentType": "Cash" + }, + { + "Id": 17366, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-3", + "TransactionDate": "2017-09-27T08:19:06", + "TransactionId": 40418087, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 218, + "CustomerInfo": 7973131, + "PaymentType": "Credit Card" + }, + { + "Id": 17367, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-01-07T19:20:38", + "TransactionId": 71984748, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 378, + "CustomerInfo": 49993426, + "PaymentType": "Debit Card" + }, + { + "Id": 17368, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2019-03-31T07:04:48", + "TransactionId": 28155960, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 626, + "CustomerInfo": 25688417, + "PaymentType": "Debit Card" + }, + { + "Id": 17369, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2019-04-17T08:08:18", + "TransactionId": 28730779, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 534, + "CustomerInfo": 90646174, + "PaymentType": "Debit Card" + }, + { + "Id": 17370, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2018-08-20T16:05:14", + "TransactionId": 24325885, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 604, + "CustomerInfo": 2670431, + "PaymentType": "Credit Card" + }, + { + "Id": 17371, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2019-03-28T16:48:00", + "TransactionId": 28152183, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 169, + "CustomerInfo": 50079074, + "PaymentType": "Credit Card" + }, + { + "Id": 17372, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2018-09-16T14:44:44", + "TransactionId": 43266915, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 601, + "CustomerInfo": 45852298, + "PaymentType": "Cash" + }, + { + "Id": 17373, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2017-01-24T07:30:17", + "TransactionId": 30348164, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 708, + "CustomerInfo": 79816676, + "PaymentType": "Credit Card" + }, + { + "Id": 17374, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-07-02T12:05:46", + "TransactionId": 8303787, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 12942589, + "PaymentType": "Debit Card" + }, + { + "Id": 17375, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2016-01-26T14:18:58", + "TransactionId": 86724570, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 678, + "CustomerInfo": 99034738, + "PaymentType": "Credit Card" + }, + { + "Id": 17376, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2018-06-07T11:53:23", + "TransactionId": 33461437, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 827, + "CustomerInfo": 43919963, + "PaymentType": "Debit Card" + }, + { + "Id": 17377, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-02-11T17:25:44", + "TransactionId": 3764661, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 942, + "CustomerInfo": 40801905, + "PaymentType": "Debit Card" + }, + { + "Id": 17378, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-02-04T13:42:40", + "TransactionId": 47111784, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 193, + "CustomerInfo": 29938235, + "PaymentType": "Credit Card" + }, + { + "Id": 17379, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-05-05T17:18:06", + "TransactionId": 83909261, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 363, + "CustomerInfo": 37209385, + "PaymentType": "Cash" + }, + { + "Id": 17380, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2019-02-12T14:07:52", + "TransactionId": 49211259, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 692, + "CustomerInfo": 85933660, + "PaymentType": "Credit Card" + }, + { + "Id": 17381, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-3", + "TransactionDate": "2018-01-17T14:53:31", + "TransactionId": 38079671, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 675, + "CustomerInfo": 261953, + "PaymentType": "Credit Card" + }, + { + "Id": 17382, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2017-05-05T15:38:44", + "TransactionId": 19965778, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 212, + "CustomerInfo": 41030862, + "PaymentType": "Credit Card" + }, + { + "Id": 17383, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-04-28T09:09:56", + "TransactionId": 95355055, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 459, + "CustomerInfo": 19645843, + "PaymentType": "Cash" + }, + { + "Id": 17384, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2017-05-16T09:54:52", + "TransactionId": 29945918, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 963, + "CustomerInfo": 94298327, + "PaymentType": "Cash" + }, + { + "Id": 17385, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-08-15T13:17:46", + "TransactionId": 19262797, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 860, + "CustomerInfo": 59373817, + "PaymentType": "Credit Card" + }, + { + "Id": 17386, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2019-03-18T14:08:53", + "TransactionId": 99561034, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 113, + "CustomerInfo": 82658610, + "PaymentType": "Debit Card" + }, + { + "Id": 17387, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-11-09T14:48:03", + "TransactionId": 23171380, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 387, + "CustomerInfo": 18477375, + "PaymentType": "Cash" + }, + { + "Id": 17388, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2016-12-03T15:28:57", + "TransactionId": 63452431, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 67302325, + "PaymentType": "Credit Card" + }, + { + "Id": 17389, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-11-09T07:17:37", + "TransactionId": 27913067, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 218, + "CustomerInfo": 7396864, + "PaymentType": "Cash" + }, + { + "Id": 17390, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2016-05-15T14:41:34", + "TransactionId": 39313399, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 323, + "CustomerInfo": 2474167, + "PaymentType": "Credit Card" + }, + { + "Id": 17391, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2017-11-27T14:26:01", + "TransactionId": 33571376, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 123, + "CustomerInfo": 71368170, + "PaymentType": "Credit Card" + }, + { + "Id": 17392, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2018-08-05T16:49:18", + "TransactionId": 62915247, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 499, + "CustomerInfo": 95210230, + "PaymentType": "Debit Card" + }, + { + "Id": 17393, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-04-06T14:30:37", + "TransactionId": 554896, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 272, + "CustomerInfo": 55532923, + "PaymentType": "Debit Card" + }, + { + "Id": 17394, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2017-10-03T15:23:02", + "TransactionId": 55791499, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 495, + "CustomerInfo": 68937078, + "PaymentType": "Credit Card" + }, + { + "Id": 17395, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2017-11-10T15:56:27", + "TransactionId": 44003482, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 551, + "CustomerInfo": 81247986, + "PaymentType": "Debit Card" + }, + { + "Id": 17396, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2019-05-29T18:49:58", + "TransactionId": 96508214, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 38, + "CustomerInfo": 8715183, + "PaymentType": "Credit Card" + }, + { + "Id": 17397, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2017-03-02T16:05:40", + "TransactionId": 88158152, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 819, + "CustomerInfo": 67468488, + "PaymentType": "Debit Card" + }, + { + "Id": 17398, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2018-02-16T08:42:09", + "TransactionId": 50323678, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 193, + "CustomerInfo": 7340007, + "PaymentType": "Debit Card" + }, + { + "Id": 17399, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2019-03-07T19:31:09", + "TransactionId": 42020000, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 131, + "CustomerInfo": 59470203, + "PaymentType": "Debit Card" + }, + { + "Id": 17400, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-01-23T09:51:16", + "TransactionId": 12080456, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 79, + "CustomerInfo": 48613404, + "PaymentType": "Cash" + }, + { + "Id": 17401, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-04-30T11:45:36", + "TransactionId": 69224801, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 687, + "CustomerInfo": 70643844, + "PaymentType": "Cash" + }, + { + "Id": 17402, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2019-02-27T12:21:27", + "TransactionId": 56748246, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 410, + "CustomerInfo": 30838702, + "PaymentType": "Credit Card" + }, + { + "Id": 17403, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2017-12-20T10:30:52", + "TransactionId": 80545022, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 965, + "CustomerInfo": 63712937, + "PaymentType": "Cash" + }, + { + "Id": 17404, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2016-04-12T10:37:47", + "TransactionId": 63553668, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 688, + "CustomerInfo": 49456252, + "PaymentType": "Credit Card" + }, + { + "Id": 17405, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-06-27T12:50:07", + "TransactionId": 50086710, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 810, + "CustomerInfo": 99914487, + "PaymentType": "Cash" + }, + { + "Id": 17406, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2017-08-07T08:04:42", + "TransactionId": 41715097, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 910, + "CustomerInfo": 51628522, + "PaymentType": "Credit Card" + }, + { + "Id": 17407, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2016-10-31T13:57:56", + "TransactionId": 69323326, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 896, + "CustomerInfo": 38823782, + "PaymentType": "Credit Card" + }, + { + "Id": 17408, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-04-03T14:45:45", + "TransactionId": 57558861, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 742, + "CustomerInfo": 21045827, + "PaymentType": "Cash" + }, + { + "Id": 17409, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2016-12-28T13:49:52", + "TransactionId": 4420206, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 245, + "CustomerInfo": 4090854, + "PaymentType": "Credit Card" + }, + { + "Id": 17410, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2017-07-25T09:59:54", + "TransactionId": 8340693, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 223, + "CustomerInfo": 93192117, + "PaymentType": "Cash" + }, + { + "Id": 17411, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2017-11-13T07:28:08", + "TransactionId": 85554720, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 135, + "CustomerInfo": 72700355, + "PaymentType": "Cash" + }, + { + "Id": 17412, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-03-23T14:49:29", + "TransactionId": 82117726, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 799, + "CustomerInfo": 8103012, + "PaymentType": "Cash" + }, + { + "Id": 17413, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-03-03T19:51:45", + "TransactionId": 34088278, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 303, + "CustomerInfo": 72959418, + "PaymentType": "Credit Card" + }, + { + "Id": 17414, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-11-23T08:55:24", + "TransactionId": 21753282, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 545, + "CustomerInfo": 18738826, + "PaymentType": "Credit Card" + }, + { + "Id": 17415, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2016-08-11T07:09:42", + "TransactionId": 38834938, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 493, + "CustomerInfo": 58824502, + "PaymentType": "Cash" + }, + { + "Id": 17416, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2016-11-10T13:54:29", + "TransactionId": 90284594, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 905, + "CustomerInfo": 47017494, + "PaymentType": "Credit Card" + }, + { + "Id": 17417, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2019-05-14T11:09:27", + "TransactionId": 18832587, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 584, + "CustomerInfo": 11882505, + "PaymentType": "Debit Card" + }, + { + "Id": 17418, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-08-21T15:25:38", + "TransactionId": 2459696, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 93256034, + "PaymentType": "Debit Card" + }, + { + "Id": 17419, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-12-31T18:24:37", + "TransactionId": 93846323, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 309, + "CustomerInfo": 90924657, + "PaymentType": "Cash" + }, + { + "Id": 17420, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2019-10-26T12:06:29", + "TransactionId": 87872750, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 486, + "CustomerInfo": 9083283, + "PaymentType": "Debit Card" + }, + { + "Id": 17421, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-01-26T12:19:18", + "TransactionId": 78334037, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 679, + "CustomerInfo": 96789564, + "PaymentType": "Debit Card" + }, + { + "Id": 17422, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2017-12-23T09:36:43", + "TransactionId": 93893127, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 97, + "CustomerInfo": 65586991, + "PaymentType": "Cash" + }, + { + "Id": 17423, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2016-03-23T09:23:37", + "TransactionId": 13001124, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 710, + "CustomerInfo": 48411038, + "PaymentType": "Credit Card" + }, + { + "Id": 17424, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-07-10T09:36:00", + "TransactionId": 59611191, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 410, + "CustomerInfo": 67225214, + "PaymentType": "Cash" + }, + { + "Id": 17425, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-02-16T13:27:50", + "TransactionId": 47856813, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 575, + "CustomerInfo": 88895559, + "PaymentType": "Credit Card" + }, + { + "Id": 17426, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-5", + "TransactionDate": "2019-02-04T13:17:54", + "TransactionId": 67997887, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 574, + "CustomerInfo": 78277268, + "PaymentType": "Cash" + }, + { + "Id": 17427, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-2", + "TransactionDate": "2016-05-06T08:13:55", + "TransactionId": 66194784, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 745, + "CustomerInfo": 97211403, + "PaymentType": "Credit Card" + }, + { + "Id": 17428, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2019-10-16T18:38:27", + "TransactionId": 50201775, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 738, + "CustomerInfo": 27195243, + "PaymentType": "Debit Card" + }, + { + "Id": 17429, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-4", + "TransactionDate": "2016-03-01T19:16:54", + "TransactionId": 66119669, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 814, + "CustomerInfo": 27066589, + "PaymentType": "Debit Card" + }, + { + "Id": 17430, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2018-11-06T09:45:56", + "TransactionId": 97254936, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 266, + "CustomerInfo": 39865917, + "PaymentType": "Credit Card" + }, + { + "Id": 17431, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2016-10-03T11:23:34", + "TransactionId": 20171786, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 382, + "CustomerInfo": 14886421, + "PaymentType": "Cash" + }, + { + "Id": 17432, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-3", + "TransactionDate": "2017-06-13T10:12:09", + "TransactionId": 53323709, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 39, + "CustomerInfo": 2197786, + "PaymentType": "Cash" + }, + { + "Id": 17433, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2019-07-15T18:49:24", + "TransactionId": 4457160, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 46, + "CustomerInfo": 83436739, + "PaymentType": "Cash" + }, + { + "Id": 17434, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2019-07-07T10:56:21", + "TransactionId": 99839873, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 941, + "CustomerInfo": 39927040, + "PaymentType": "Credit Card" + }, + { + "Id": 17435, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-01-17T17:53:14", + "TransactionId": 66602301, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 99, + "CustomerInfo": 92514330, + "PaymentType": "Debit Card" + }, + { + "Id": 17436, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2016-11-19T18:01:09", + "TransactionId": 70545054, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 104, + "CustomerInfo": 64730329, + "PaymentType": "Debit Card" + }, + { + "Id": 17437, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2017-01-17T09:47:40", + "TransactionId": 61622663, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 722, + "CustomerInfo": 19450449, + "PaymentType": "Debit Card" + }, + { + "Id": 17438, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-01-31T15:13:49", + "TransactionId": 75647616, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 394, + "CustomerInfo": 85598639, + "PaymentType": "Debit Card" + }, + { + "Id": 17439, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2019-03-17T14:53:14", + "TransactionId": 11651568, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 875, + "CustomerInfo": 10024625, + "PaymentType": "Cash" + }, + { + "Id": 17440, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2019-12-19T19:05:05", + "TransactionId": 71683186, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 857, + "CustomerInfo": 99770265, + "PaymentType": "Debit Card" + }, + { + "Id": 17441, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-02-01T13:26:41", + "TransactionId": 76763722, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 231, + "CustomerInfo": 37073810, + "PaymentType": "Credit Card" + }, + { + "Id": 17442, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2016-03-04T10:11:00", + "TransactionId": 65095898, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 601, + "CustomerInfo": 87749621, + "PaymentType": "Credit Card" + }, + { + "Id": 17443, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2019-09-30T08:51:13", + "TransactionId": 91564179, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 305, + "CustomerInfo": 92046375, + "PaymentType": "Debit Card" + }, + { + "Id": 17444, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2018-05-01T17:54:14", + "TransactionId": 23818587, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 271, + "CustomerInfo": 96311942, + "PaymentType": "Debit Card" + }, + { + "Id": 17445, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-02-03T18:18:52", + "TransactionId": 75700318, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 47, + "CustomerInfo": 20294532, + "PaymentType": "Credit Card" + }, + { + "Id": 17446, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-3", + "TransactionDate": "2018-06-20T07:14:36", + "TransactionId": 88976489, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 360, + "CustomerInfo": 7160959, + "PaymentType": "Credit Card" + }, + { + "Id": 17447, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2018-09-18T19:21:39", + "TransactionId": 47766975, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 115, + "CustomerInfo": 72040662, + "PaymentType": "Debit Card" + }, + { + "Id": 17448, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2017-03-02T09:46:39", + "TransactionId": 13486992, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 12, + "CustomerInfo": 25380147, + "PaymentType": "Credit Card" + }, + { + "Id": 17449, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2016-03-12T15:10:22", + "TransactionId": 35880735, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 130, + "CustomerInfo": 18216769, + "PaymentType": "Debit Card" + }, + { + "Id": 17450, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-02-24T13:59:57", + "TransactionId": 12782420, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 494, + "CustomerInfo": 54625902, + "PaymentType": "Debit Card" + }, + { + "Id": 17451, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2018-06-10T10:42:23", + "TransactionId": 90498533, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 9, + "CustomerInfo": 44147898, + "PaymentType": "Debit Card" + }, + { + "Id": 17452, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-08-10T08:18:14", + "TransactionId": 90041395, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 760, + "CustomerInfo": 54255414, + "PaymentType": "Debit Card" + }, + { + "Id": 17453, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2016-09-28T17:40:25", + "TransactionId": 658178, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 802, + "CustomerInfo": 6604769, + "PaymentType": "Credit Card" + }, + { + "Id": 17454, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2019-10-14T09:30:58", + "TransactionId": 70112449, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 541, + "CustomerInfo": 91410951, + "PaymentType": "Credit Card" + }, + { + "Id": 17455, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-01-14T14:25:18", + "TransactionId": 69013925, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 82, + "CustomerInfo": 41070816, + "PaymentType": "Credit Card" + }, + { + "Id": 17456, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-05-22T13:42:14", + "TransactionId": 14378651, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 279, + "CustomerInfo": 83315961, + "PaymentType": "Credit Card" + }, + { + "Id": 17457, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2018-09-09T14:10:28", + "TransactionId": 77208291, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 16, + "CustomerInfo": 3130075, + "PaymentType": "Cash" + }, + { + "Id": 17458, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-4", + "TransactionDate": "2019-02-20T15:33:33", + "TransactionId": 62642602, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 80, + "CustomerInfo": 79772282, + "PaymentType": "Cash" + }, + { + "Id": 17459, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2017-04-07T07:09:16", + "TransactionId": 36096355, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 735, + "CustomerInfo": 23983734, + "PaymentType": "Debit Card" + }, + { + "Id": 17460, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-02-22T14:00:49", + "TransactionId": 18420329, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 322, + "CustomerInfo": 88494220, + "PaymentType": "Cash" + }, + { + "Id": 17461, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-12-27T16:58:22", + "TransactionId": 96803779, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 474, + "CustomerInfo": 79465891, + "PaymentType": "Cash" + }, + { + "Id": 17462, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-05-31T13:18:29", + "TransactionId": 68830084, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 931, + "CustomerInfo": 38647746, + "PaymentType": "Cash" + }, + { + "Id": 17463, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-04-24T14:16:39", + "TransactionId": 85813214, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 768, + "CustomerInfo": 72132968, + "PaymentType": "Cash" + }, + { + "Id": 17464, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2017-07-25T16:52:45", + "TransactionId": 3325865, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 443, + "CustomerInfo": 72535285, + "PaymentType": "Debit Card" + }, + { + "Id": 17465, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2019-10-21T10:12:26", + "TransactionId": 15826663, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 200, + "CustomerInfo": 95918232, + "PaymentType": "Debit Card" + }, + { + "Id": 17466, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-07-07T19:21:30", + "TransactionId": 95521141, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 454, + "CustomerInfo": 36507972, + "PaymentType": "Debit Card" + }, + { + "Id": 17467, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2017-10-02T10:33:53", + "TransactionId": 77151040, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 885, + "CustomerInfo": 67270880, + "PaymentType": "Credit Card" + }, + { + "Id": 17468, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2017-06-21T13:07:58", + "TransactionId": 91751616, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 37, + "CustomerInfo": 4614403, + "PaymentType": "Credit Card" + }, + { + "Id": 17469, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2018-10-23T12:54:00", + "TransactionId": 40559779, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 602, + "CustomerInfo": 25228191, + "PaymentType": "Debit Card" + }, + { + "Id": 17470, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2017-07-29T18:36:17", + "TransactionId": 89519735, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 470, + "CustomerInfo": 41287948, + "PaymentType": "Debit Card" + }, + { + "Id": 17471, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2019-04-04T15:06:12", + "TransactionId": 48507662, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 748, + "CustomerInfo": 52191419, + "PaymentType": "Cash" + }, + { + "Id": 17472, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-03-10T17:25:26", + "TransactionId": 61113933, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 61, + "CustomerInfo": 86648010, + "PaymentType": "Credit Card" + }, + { + "Id": 17473, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-12-10T11:16:48", + "TransactionId": 91116316, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 136, + "CustomerInfo": 77015258, + "PaymentType": "Cash" + }, + { + "Id": 17474, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2019-05-04T16:52:36", + "TransactionId": 94750847, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 349, + "CustomerInfo": 15626350, + "PaymentType": "Debit Card" + }, + { + "Id": 17475, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2019-01-25T16:29:43", + "TransactionId": 76969814, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 28, + "CustomerInfo": 57957513, + "PaymentType": "Credit Card" + }, + { + "Id": 17476, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2017-08-09T13:58:39", + "TransactionId": 76662899, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 720, + "CustomerInfo": 66756303, + "PaymentType": "Debit Card" + }, + { + "Id": 17477, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-06-20T19:02:56", + "TransactionId": 4009144, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 361, + "CustomerInfo": 77064009, + "PaymentType": "Debit Card" + }, + { + "Id": 17478, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-12-06T11:04:16", + "TransactionId": 17350855, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 813, + "CustomerInfo": 51303470, + "PaymentType": "Cash" + }, + { + "Id": 17479, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2019-06-23T16:11:25", + "TransactionId": 8171035, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 84, + "CustomerInfo": 36955087, + "PaymentType": "Credit Card" + }, + { + "Id": 17480, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2016-01-07T09:44:56", + "TransactionId": 36941396, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 539, + "CustomerInfo": 18189044, + "PaymentType": "Cash" + }, + { + "Id": 17481, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2018-10-06T12:24:37", + "TransactionId": 4790962, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 458, + "CustomerInfo": 32289810, + "PaymentType": "Credit Card" + }, + { + "Id": 17482, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2016-02-08T13:18:20", + "TransactionId": 67182865, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 925, + "CustomerInfo": 63439804, + "PaymentType": "Credit Card" + }, + { + "Id": 17483, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2016-11-26T19:27:07", + "TransactionId": 33723725, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 379, + "CustomerInfo": 3137810, + "PaymentType": "Debit Card" + }, + { + "Id": 17484, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2017-02-02T15:52:42", + "TransactionId": 65978333, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 141, + "CustomerInfo": 94640699, + "PaymentType": "Cash" + }, + { + "Id": 17485, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2017-12-11T13:21:48", + "TransactionId": 5534850, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 47, + "CustomerInfo": 23068909, + "PaymentType": "Debit Card" + }, + { + "Id": 17486, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2018-11-23T12:29:40", + "TransactionId": 40537358, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 675, + "CustomerInfo": 69029787, + "PaymentType": "Debit Card" + }, + { + "Id": 17487, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-11-14T10:24:58", + "TransactionId": 26594092, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 316, + "CustomerInfo": 5418395, + "PaymentType": "Credit Card" + }, + { + "Id": 17488, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-10-18T18:22:54", + "TransactionId": 54505523, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 441, + "CustomerInfo": 27062016, + "PaymentType": "Credit Card" + }, + { + "Id": 17489, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2018-04-08T07:43:32", + "TransactionId": 64641420, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 915, + "CustomerInfo": 60741247, + "PaymentType": "Cash" + }, + { + "Id": 17490, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2017-02-15T18:22:36", + "TransactionId": 3362653, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 828, + "CustomerInfo": 93667580, + "PaymentType": "Debit Card" + }, + { + "Id": 17491, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2017-10-02T13:37:12", + "TransactionId": 22446786, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 578, + "CustomerInfo": 94294330, + "PaymentType": "Debit Card" + }, + { + "Id": 17492, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2016-11-17T15:13:32", + "TransactionId": 46084493, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 721, + "CustomerInfo": 2859655, + "PaymentType": "Debit Card" + }, + { + "Id": 17493, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2019-09-07T13:00:37", + "TransactionId": 80357046, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 575, + "CustomerInfo": 26188826, + "PaymentType": "Credit Card" + }, + { + "Id": 17494, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2019-10-14T10:22:57", + "TransactionId": 55371455, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 60, + "CustomerInfo": 3194354, + "PaymentType": "Credit Card" + }, + { + "Id": 17495, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2018-08-31T15:49:49", + "TransactionId": 58373079, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 66, + "CustomerInfo": 17572640, + "PaymentType": "Credit Card" + }, + { + "Id": 17496, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2019-12-24T07:18:37", + "TransactionId": 92815221, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 657, + "CustomerInfo": 46647707, + "PaymentType": "Debit Card" + }, + { + "Id": 17497, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2017-06-29T13:42:14", + "TransactionId": 9912780, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 818, + "CustomerInfo": 48662819, + "PaymentType": "Credit Card" + }, + { + "Id": 17498, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2018-09-30T08:05:25", + "TransactionId": 90573473, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 722, + "CustomerInfo": 71146411, + "PaymentType": "Debit Card" + }, + { + "Id": 17499, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2019-03-31T15:20:18", + "TransactionId": 46303620, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 355, + "CustomerInfo": 73238099, + "PaymentType": "Cash" + }, + { + "Id": 17500, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2019-05-21T07:44:50", + "TransactionId": 48683482, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 515, + "CustomerInfo": 86863180, + "PaymentType": "Debit Card" + }, + { + "Id": 17501, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-03-10T10:21:39", + "TransactionId": 31461024, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 773, + "CustomerInfo": 72550380, + "PaymentType": "Debit Card" + }, + { + "Id": 17502, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-11-06T15:39:53", + "TransactionId": 37577086, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 63, + "CustomerInfo": 75061559, + "PaymentType": "Cash" + }, + { + "Id": 17503, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-08-16T19:37:12", + "TransactionId": 43669856, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 117, + "CustomerInfo": 20431874, + "PaymentType": "Cash" + }, + { + "Id": 17504, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-04-17T11:45:19", + "TransactionId": 43415410, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 22, + "CustomerInfo": 72150542, + "PaymentType": "Debit Card" + }, + { + "Id": 17505, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2016-02-22T19:57:04", + "TransactionId": 38786846, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 697, + "CustomerInfo": 70589382, + "PaymentType": "Debit Card" + }, + { + "Id": 17506, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2018-12-08T09:03:53", + "TransactionId": 92876073, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 304, + "CustomerInfo": 94243120, + "PaymentType": "Debit Card" + }, + { + "Id": 17507, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2017-12-20T16:41:14", + "TransactionId": 35275375, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 656, + "CustomerInfo": 64277717, + "PaymentType": "Credit Card" + }, + { + "Id": 17508, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2016-07-31T16:37:03", + "TransactionId": 19397035, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 711, + "CustomerInfo": 83280397, + "PaymentType": "Credit Card" + }, + { + "Id": 17509, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2017-07-03T09:06:46", + "TransactionId": 78659340, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 877, + "CustomerInfo": 46066731, + "PaymentType": "Cash" + }, + { + "Id": 17510, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2017-07-16T18:50:24", + "TransactionId": 90753638, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 348, + "CustomerInfo": 92747409, + "PaymentType": "Cash" + }, + { + "Id": 17511, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2018-09-10T15:52:42", + "TransactionId": 74144559, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 322, + "CustomerInfo": 40902632, + "PaymentType": "Credit Card" + }, + { + "Id": 17512, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-03-03T09:07:03", + "TransactionId": 33114706, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 644, + "CustomerInfo": 20247259, + "PaymentType": "Credit Card" + }, + { + "Id": 17513, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2017-04-03T18:08:47", + "TransactionId": 7153417, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 392, + "CustomerInfo": 19202752, + "PaymentType": "Cash" + }, + { + "Id": 17514, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2016-01-02T14:59:51", + "TransactionId": 55490935, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 951, + "CustomerInfo": 19800113, + "PaymentType": "Credit Card" + }, + { + "Id": 17515, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-11-10T18:27:22", + "TransactionId": 88288083, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 631, + "CustomerInfo": 14333259, + "PaymentType": "Credit Card" + }, + { + "Id": 17516, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2019-02-17T16:56:47", + "TransactionId": 28722845, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 350, + "CustomerInfo": 36527669, + "PaymentType": "Credit Card" + }, + { + "Id": 17517, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2017-02-18T12:26:12", + "TransactionId": 35030616, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 413, + "CustomerInfo": 47280145, + "PaymentType": "Cash" + }, + { + "Id": 17518, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2018-01-14T07:29:34", + "TransactionId": 51480887, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 370, + "CustomerInfo": 74621563, + "PaymentType": "Cash" + }, + { + "Id": 17519, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-03-08T16:21:04", + "TransactionId": 4196156, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 611, + "CustomerInfo": 40558513, + "PaymentType": "Debit Card" + }, + { + "Id": 17520, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2018-01-11T18:13:32", + "TransactionId": 888906, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 411, + "CustomerInfo": 54209778, + "PaymentType": "Credit Card" + }, + { + "Id": 17521, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2018-08-30T13:16:54", + "TransactionId": 52386908, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 418, + "CustomerInfo": 91536330, + "PaymentType": "Debit Card" + }, + { + "Id": 17522, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2016-03-21T10:46:25", + "TransactionId": 11169280, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 478, + "CustomerInfo": 55539528, + "PaymentType": "Cash" + }, + { + "Id": 17523, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2017-09-14T19:57:13", + "TransactionId": 60329777, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 511, + "CustomerInfo": 1826458, + "PaymentType": "Cash" + }, + { + "Id": 17524, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2016-02-05T10:24:58", + "TransactionId": 19469298, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 936, + "CustomerInfo": 8340810, + "PaymentType": "Debit Card" + }, + { + "Id": 17525, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2019-12-02T09:03:36", + "TransactionId": 45833981, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 83, + "CustomerInfo": 81879866, + "PaymentType": "Cash" + }, + { + "Id": 17526, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2016-02-26T11:42:43", + "TransactionId": 38754817, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 29, + "CustomerInfo": 80779957, + "PaymentType": "Debit Card" + }, + { + "Id": 17527, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2016-01-17T07:37:38", + "TransactionId": 99956739, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 312, + "CustomerInfo": 4421676, + "PaymentType": "Credit Card" + }, + { + "Id": 17528, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-12-12T08:52:13", + "TransactionId": 42143188, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 566, + "CustomerInfo": 54650730, + "PaymentType": "Credit Card" + }, + { + "Id": 17529, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-02-15T14:47:02", + "TransactionId": 37230115, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 116, + "CustomerInfo": 62963418, + "PaymentType": "Debit Card" + }, + { + "Id": 17530, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-10-30T15:48:14", + "TransactionId": 3305681, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 912, + "CustomerInfo": 98181800, + "PaymentType": "Cash" + }, + { + "Id": 17531, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2018-10-26T07:04:57", + "TransactionId": 3543468, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 383, + "CustomerInfo": 11900240, + "PaymentType": "Credit Card" + }, + { + "Id": 17532, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2018-10-16T09:36:35", + "TransactionId": 12076402, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 454, + "CustomerInfo": 90936490, + "PaymentType": "Cash" + }, + { + "Id": 17533, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2019-01-17T19:36:55", + "TransactionId": 59201135, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 628, + "CustomerInfo": 65772014, + "PaymentType": "Credit Card" + }, + { + "Id": 17534, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-02-22T12:08:12", + "TransactionId": 3244110, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 306, + "CustomerInfo": 71978973, + "PaymentType": "Credit Card" + }, + { + "Id": 17535, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-05-02T16:09:33", + "TransactionId": 41472532, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 857, + "CustomerInfo": 29074043, + "PaymentType": "Debit Card" + }, + { + "Id": 17536, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-4", + "TransactionDate": "2018-11-20T13:23:40", + "TransactionId": 49277796, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 514, + "CustomerInfo": 31649725, + "PaymentType": "Credit Card" + }, + { + "Id": 17537, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-03-27T11:40:25", + "TransactionId": 93360443, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 278, + "CustomerInfo": 71010146, + "PaymentType": "Credit Card" + }, + { + "Id": 17538, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-01-09T11:02:59", + "TransactionId": 7305914, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 676, + "CustomerInfo": 78145293, + "PaymentType": "Credit Card" + }, + { + "Id": 17539, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2017-09-30T17:40:42", + "TransactionId": 60349979, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 596, + "CustomerInfo": 31920517, + "PaymentType": "Credit Card" + }, + { + "Id": 17540, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2019-06-06T17:52:39", + "TransactionId": 97141712, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 881, + "CustomerInfo": 70523929, + "PaymentType": "Credit Card" + }, + { + "Id": 17541, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-06-13T13:44:59", + "TransactionId": 36454457, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 658, + "CustomerInfo": 82337072, + "PaymentType": "Credit Card" + }, + { + "Id": 17542, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-05-29T12:51:42", + "TransactionId": 4393807, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 960, + "CustomerInfo": 17581162, + "PaymentType": "Cash" + }, + { + "Id": 17543, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-05-14T16:29:17", + "TransactionId": 18230979, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 331, + "CustomerInfo": 92303258, + "PaymentType": "Credit Card" + }, + { + "Id": 17544, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2016-08-28T10:22:39", + "TransactionId": 30410118, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 388, + "CustomerInfo": 79966906, + "PaymentType": "Debit Card" + }, + { + "Id": 17545, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-06-04T14:43:18", + "TransactionId": 43039748, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 945, + "CustomerInfo": 34309644, + "PaymentType": "Credit Card" + }, + { + "Id": 17546, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2018-06-07T13:46:42", + "TransactionId": 98466505, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 93, + "CustomerInfo": 72752178, + "PaymentType": "Debit Card" + }, + { + "Id": 17547, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2016-09-10T13:51:10", + "TransactionId": 11627961, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 467, + "CustomerInfo": 52767572, + "PaymentType": "Credit Card" + }, + { + "Id": 17548, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-08-07T12:45:48", + "TransactionId": 78454655, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 7, + "CustomerInfo": 64185557, + "PaymentType": "Cash" + }, + { + "Id": 17549, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2017-07-20T19:48:17", + "TransactionId": 56801481, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 761, + "CustomerInfo": 1873255, + "PaymentType": "Debit Card" + }, + { + "Id": 17550, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2016-04-29T07:36:37", + "TransactionId": 69866044, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 213, + "CustomerInfo": 20505583, + "PaymentType": "Credit Card" + }, + { + "Id": 17551, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-08-22T14:50:21", + "TransactionId": 76062671, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 72, + "CustomerInfo": 51400681, + "PaymentType": "Credit Card" + }, + { + "Id": 17552, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2019-05-06T07:14:44", + "TransactionId": 26461339, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 857, + "CustomerInfo": 65456880, + "PaymentType": "Debit Card" + }, + { + "Id": 17553, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-08-10T13:07:06", + "TransactionId": 71138800, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 302, + "CustomerInfo": 65351192, + "PaymentType": "Credit Card" + }, + { + "Id": 17554, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-06-14T13:43:06", + "TransactionId": 25592804, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 93, + "CustomerInfo": 28958193, + "PaymentType": "Debit Card" + }, + { + "Id": 17555, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2019-12-11T08:53:23", + "TransactionId": 76566585, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 372, + "CustomerInfo": 55886278, + "PaymentType": "Debit Card" + }, + { + "Id": 17556, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-01-16T18:59:46", + "TransactionId": 32301593, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 762, + "CustomerInfo": 63569774, + "PaymentType": "Cash" + }, + { + "Id": 17557, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-03-24T17:59:51", + "TransactionId": 79264871, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 702, + "CustomerInfo": 56449310, + "PaymentType": "Debit Card" + }, + { + "Id": 17558, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-3", + "TransactionDate": "2016-01-20T11:22:16", + "TransactionId": 53956347, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 187, + "CustomerInfo": 26725462, + "PaymentType": "Credit Card" + }, + { + "Id": 17559, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-01-01T08:57:16", + "TransactionId": 15760390, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 759, + "CustomerInfo": 36399391, + "PaymentType": "Credit Card" + }, + { + "Id": 17560, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-07-08T19:00:12", + "TransactionId": 24258492, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 708, + "CustomerInfo": 77841301, + "PaymentType": "Credit Card" + }, + { + "Id": 17561, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-4", + "TransactionDate": "2018-10-20T07:32:18", + "TransactionId": 18062040, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 508, + "CustomerInfo": 63096055, + "PaymentType": "Credit Card" + }, + { + "Id": 17562, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-12-16T18:23:37", + "TransactionId": 69374942, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 477, + "CustomerInfo": 96182486, + "PaymentType": "Debit Card" + }, + { + "Id": 17563, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2016-09-10T12:35:34", + "TransactionId": 22775229, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 138, + "CustomerInfo": 26203925, + "PaymentType": "Debit Card" + }, + { + "Id": 17564, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-06-01T10:53:02", + "TransactionId": 28349784, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 316, + "CustomerInfo": 89288226, + "PaymentType": "Debit Card" + }, + { + "Id": 17565, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-07-31T08:09:27", + "TransactionId": 64849626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 780, + "CustomerInfo": 4994055, + "PaymentType": "Credit Card" + }, + { + "Id": 17566, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2018-03-30T08:42:17", + "TransactionId": 70361654, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 230, + "CustomerInfo": 68682570, + "PaymentType": "Debit Card" + }, + { + "Id": 17567, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-11-04T19:15:10", + "TransactionId": 9369879, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 482, + "CustomerInfo": 26335223, + "PaymentType": "Credit Card" + }, + { + "Id": 17568, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-05-15T17:54:23", + "TransactionId": 75374493, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 433, + "CustomerInfo": 52551554, + "PaymentType": "Credit Card" + }, + { + "Id": 17569, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-3", + "TransactionDate": "2017-03-08T17:16:13", + "TransactionId": 55001063, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 667, + "CustomerInfo": 71492730, + "PaymentType": "Credit Card" + }, + { + "Id": 17570, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2017-04-02T18:14:07", + "TransactionId": 38848685, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 215, + "CustomerInfo": 86537379, + "PaymentType": "Cash" + }, + { + "Id": 17571, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-02-02T16:42:49", + "TransactionId": 53206166, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 541, + "CustomerInfo": 18669808, + "PaymentType": "Credit Card" + }, + { + "Id": 17572, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2018-07-11T15:24:46", + "TransactionId": 36632906, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 355, + "CustomerInfo": 40167404, + "PaymentType": "Debit Card" + }, + { + "Id": 17573, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2016-04-04T17:11:28", + "TransactionId": 49958021, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 196, + "CustomerInfo": 9474642, + "PaymentType": "Credit Card" + }, + { + "Id": 17574, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2016-06-19T16:33:10", + "TransactionId": 77636537, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 590, + "CustomerInfo": 70238747, + "PaymentType": "Credit Card" + }, + { + "Id": 17575, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-02-24T08:21:33", + "TransactionId": 49029208, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 432, + "CustomerInfo": 68838507, + "PaymentType": "Debit Card" + }, + { + "Id": 17576, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-5", + "TransactionDate": "2017-11-04T08:26:18", + "TransactionId": 44409284, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 316, + "CustomerInfo": 48372943, + "PaymentType": "Debit Card" + }, + { + "Id": 17577, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-02-10T11:52:48", + "TransactionId": 75848303, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 178, + "CustomerInfo": 37013689, + "PaymentType": "Debit Card" + }, + { + "Id": 17578, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-03-07T07:56:21", + "TransactionId": 17784470, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 803, + "CustomerInfo": 67928266, + "PaymentType": "Debit Card" + }, + { + "Id": 17579, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2018-04-28T19:26:24", + "TransactionId": 85512806, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 807, + "CustomerInfo": 48510503, + "PaymentType": "Debit Card" + }, + { + "Id": 17580, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-03-07T14:24:26", + "TransactionId": 84215526, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 684, + "CustomerInfo": 53140827, + "PaymentType": "Cash" + }, + { + "Id": 17581, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-05-31T13:07:32", + "TransactionId": 19057978, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 59433093, + "PaymentType": "Credit Card" + }, + { + "Id": 17582, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2019-07-13T14:47:54", + "TransactionId": 78317529, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 95338646, + "PaymentType": "Credit Card" + }, + { + "Id": 17583, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2018-02-11T14:18:49", + "TransactionId": 10685498, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 547, + "CustomerInfo": 44395832, + "PaymentType": "Debit Card" + }, + { + "Id": 17584, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2019-05-18T08:50:04", + "TransactionId": 87805437, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 792, + "CustomerInfo": 51035734, + "PaymentType": "Debit Card" + }, + { + "Id": 17585, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2018-12-20T10:03:56", + "TransactionId": 60474056, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 775, + "CustomerInfo": 22545643, + "PaymentType": "Cash" + }, + { + "Id": 17586, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2018-10-11T08:12:55", + "TransactionId": 55538935, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 840, + "CustomerInfo": 27853928, + "PaymentType": "Debit Card" + }, + { + "Id": 17587, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2019-01-16T15:04:11", + "TransactionId": 77397258, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 509, + "CustomerInfo": 77340751, + "PaymentType": "Debit Card" + }, + { + "Id": 17588, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-10-15T16:11:17", + "TransactionId": 1484255, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 616, + "CustomerInfo": 27409030, + "PaymentType": "Credit Card" + }, + { + "Id": 17589, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2017-02-05T11:21:24", + "TransactionId": 67506232, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 213, + "CustomerInfo": 58839034, + "PaymentType": "Cash" + }, + { + "Id": 17590, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-07-10T15:19:44", + "TransactionId": 2847799, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 602, + "CustomerInfo": 168275, + "PaymentType": "Debit Card" + }, + { + "Id": 17591, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-06-22T09:55:44", + "TransactionId": 64930331, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 28246252, + "PaymentType": "Debit Card" + }, + { + "Id": 17592, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-08-10T15:08:30", + "TransactionId": 5732507, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 522, + "CustomerInfo": 83206510, + "PaymentType": "Credit Card" + }, + { + "Id": 17593, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-02-03T18:45:30", + "TransactionId": 90809886, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 72537236, + "PaymentType": "Debit Card" + }, + { + "Id": 17594, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-07-06T15:21:36", + "TransactionId": 80025330, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 32, + "CustomerInfo": 75833261, + "PaymentType": "Credit Card" + }, + { + "Id": 17595, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2017-05-09T09:54:00", + "TransactionId": 11591936, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 622, + "CustomerInfo": 9932888, + "PaymentType": "Credit Card" + }, + { + "Id": 17596, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2018-03-03T14:49:21", + "TransactionId": 84044204, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 13396841, + "PaymentType": "Cash" + }, + { + "Id": 17597, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-08-26T10:01:55", + "TransactionId": 99938877, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 563, + "CustomerInfo": 44721899, + "PaymentType": "Cash" + }, + { + "Id": 17598, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2018-10-25T14:25:09", + "TransactionId": 85793651, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 681, + "CustomerInfo": 2791363, + "PaymentType": "Debit Card" + }, + { + "Id": 17599, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2018-01-22T16:10:51", + "TransactionId": 90265596, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 1, + "CustomerInfo": 92810915, + "PaymentType": "Cash" + }, + { + "Id": 17600, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2017-04-21T18:39:01", + "TransactionId": 51469689, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 308, + "CustomerInfo": 65771744, + "PaymentType": "Credit Card" + }, + { + "Id": 17601, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-5", + "TransactionDate": "2016-05-24T13:00:37", + "TransactionId": 67031393, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 119, + "CustomerInfo": 76897161, + "PaymentType": "Cash" + }, + { + "Id": 17602, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2018-02-22T15:53:17", + "TransactionId": 82807921, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 47, + "CustomerInfo": 43269051, + "PaymentType": "Cash" + }, + { + "Id": 17603, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2016-02-03T17:34:57", + "TransactionId": 2761029, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 295, + "CustomerInfo": 55869160, + "PaymentType": "Credit Card" + }, + { + "Id": 17604, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-04-17T15:59:37", + "TransactionId": 98605701, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 963, + "CustomerInfo": 69185582, + "PaymentType": "Credit Card" + }, + { + "Id": 17605, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2019-05-29T10:46:25", + "TransactionId": 88283565, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 76, + "CustomerInfo": 91254088, + "PaymentType": "Credit Card" + }, + { + "Id": 17606, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-12-06T15:48:58", + "TransactionId": 14180003, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 313, + "CustomerInfo": 66285689, + "PaymentType": "Credit Card" + }, + { + "Id": 17607, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2019-05-10T13:43:49", + "TransactionId": 82352770, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 112, + "CustomerInfo": 43273063, + "PaymentType": "Cash" + }, + { + "Id": 17608, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-08-11T10:25:06", + "TransactionId": 47906111, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 446, + "CustomerInfo": 22930715, + "PaymentType": "Cash" + }, + { + "Id": 17609, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-10-09T15:14:33", + "TransactionId": 53631449, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 616, + "CustomerInfo": 62247346, + "PaymentType": "Cash" + }, + { + "Id": 17610, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-06-17T17:06:43", + "TransactionId": 55506728, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 91, + "CustomerInfo": 28691058, + "PaymentType": "Cash" + }, + { + "Id": 17611, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2017-08-22T17:41:34", + "TransactionId": 62418170, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 81, + "CustomerInfo": 1514993, + "PaymentType": "Debit Card" + }, + { + "Id": 17612, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2019-05-31T13:08:50", + "TransactionId": 24231819, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 28653188, + "PaymentType": "Cash" + }, + { + "Id": 17613, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2019-01-23T09:17:43", + "TransactionId": 77074811, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 516, + "CustomerInfo": 95584208, + "PaymentType": "Cash" + }, + { + "Id": 17614, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2017-03-29T14:20:33", + "TransactionId": 34927305, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 102, + "CustomerInfo": 30435764, + "PaymentType": "Cash" + }, + { + "Id": 17615, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-01-16T15:04:02", + "TransactionId": 71631776, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 495, + "CustomerInfo": 82574116, + "PaymentType": "Debit Card" + }, + { + "Id": 17616, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-09-05T10:43:15", + "TransactionId": 42159754, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 222, + "CustomerInfo": 90825053, + "PaymentType": "Debit Card" + }, + { + "Id": 17617, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2016-05-26T11:19:06", + "TransactionId": 85070282, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 899, + "CustomerInfo": 74403987, + "PaymentType": "Credit Card" + }, + { + "Id": 17618, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2019-06-03T16:23:31", + "TransactionId": 21638294, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 78, + "CustomerInfo": 80292899, + "PaymentType": "Credit Card" + }, + { + "Id": 17619, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2016-02-12T10:04:13", + "TransactionId": 26713123, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 344, + "CustomerInfo": 44884452, + "PaymentType": "Cash" + }, + { + "Id": 17620, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2017-08-07T14:43:26", + "TransactionId": 82602748, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 277, + "CustomerInfo": 48805788, + "PaymentType": "Cash" + }, + { + "Id": 17621, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2016-03-11T15:15:24", + "TransactionId": 17531911, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 579, + "CustomerInfo": 49484748, + "PaymentType": "Debit Card" + }, + { + "Id": 17622, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-07-12T08:40:51", + "TransactionId": 45532778, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 293, + "CustomerInfo": 81502896, + "PaymentType": "Cash" + }, + { + "Id": 17623, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-03-11T12:05:37", + "TransactionId": 95965000, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 396, + "CustomerInfo": 18393152, + "PaymentType": "Cash" + }, + { + "Id": 17624, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-09-24T10:23:14", + "TransactionId": 24271384, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 91, + "CustomerInfo": 30577838, + "PaymentType": "Credit Card" + }, + { + "Id": 17625, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-3", + "TransactionDate": "2016-08-09T14:34:39", + "TransactionId": 48160626, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 109, + "CustomerInfo": 4643615, + "PaymentType": "Credit Card" + }, + { + "Id": 17626, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2018-10-05T09:21:19", + "TransactionId": 485921, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 652, + "CustomerInfo": 89581154, + "PaymentType": "Credit Card" + }, + { + "Id": 17627, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-12-26T14:03:59", + "TransactionId": 45268269, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 675, + "CustomerInfo": 37304020, + "PaymentType": "Debit Card" + }, + { + "Id": 17628, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2019-10-26T13:48:09", + "TransactionId": 45561894, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 451, + "CustomerInfo": 73125645, + "PaymentType": "Cash" + }, + { + "Id": 17629, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2019-08-01T13:48:52", + "TransactionId": 33732220, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 945, + "CustomerInfo": 99002301, + "PaymentType": "Credit Card" + }, + { + "Id": 17630, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2017-10-20T19:20:38", + "TransactionId": 64832346, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 251, + "CustomerInfo": 67746737, + "PaymentType": "Cash" + }, + { + "Id": 17631, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2018-04-23T07:07:49", + "TransactionId": 67129833, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 464, + "CustomerInfo": 76396084, + "PaymentType": "Cash" + }, + { + "Id": 17632, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-10-21T15:20:36", + "TransactionId": 65352705, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 923, + "CustomerInfo": 24341098, + "PaymentType": "Debit Card" + }, + { + "Id": 17633, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-07-21T19:59:05", + "TransactionId": 1429529, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 138, + "CustomerInfo": 35852145, + "PaymentType": "Debit Card" + }, + { + "Id": 17634, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2019-03-03T14:24:17", + "TransactionId": 66646196, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 171, + "CustomerInfo": 85774183, + "PaymentType": "Debit Card" + }, + { + "Id": 17635, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2016-07-14T08:36:49", + "TransactionId": 13605740, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 344, + "CustomerInfo": 33922055, + "PaymentType": "Debit Card" + }, + { + "Id": 17636, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2016-09-17T13:51:10", + "TransactionId": 50606126, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 455, + "CustomerInfo": 82742407, + "PaymentType": "Debit Card" + }, + { + "Id": 17637, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-4", + "TransactionDate": "2017-10-26T11:33:04", + "TransactionId": 82672702, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 89, + "CustomerInfo": 85882211, + "PaymentType": "Debit Card" + }, + { + "Id": 17638, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2016-11-27T10:09:24", + "TransactionId": 55869895, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 997, + "CustomerInfo": 76285914, + "PaymentType": "Credit Card" + }, + { + "Id": 17639, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2018-01-14T18:58:11", + "TransactionId": 20269501, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 654, + "CustomerInfo": 17405251, + "PaymentType": "Cash" + }, + { + "Id": 17640, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-01-24T18:59:54", + "TransactionId": 50485107, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 174, + "CustomerInfo": 63385678, + "PaymentType": "Debit Card" + }, + { + "Id": 17641, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-12-20T07:02:47", + "TransactionId": 47939917, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 83739761, + "PaymentType": "Credit Card" + }, + { + "Id": 17642, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-05-26T19:35:37", + "TransactionId": 49665274, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 909, + "CustomerInfo": 7747254, + "PaymentType": "Debit Card" + }, + { + "Id": 17643, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-01-21T19:34:11", + "TransactionId": 58754829, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 950, + "CustomerInfo": 80254348, + "PaymentType": "Debit Card" + }, + { + "Id": 17644, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-01-25T18:40:28", + "TransactionId": 853716, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 417, + "CustomerInfo": 4599674, + "PaymentType": "Cash" + }, + { + "Id": 17645, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2017-02-19T17:38:15", + "TransactionId": 80925873, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 215, + "CustomerInfo": 4790787, + "PaymentType": "Debit Card" + }, + { + "Id": 17646, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-4", + "TransactionDate": "2017-04-16T11:42:43", + "TransactionId": 65647952, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 755, + "CustomerInfo": 14656340, + "PaymentType": "Debit Card" + }, + { + "Id": 17647, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2017-10-13T16:31:09", + "TransactionId": 39341479, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 7023206, + "PaymentType": "Credit Card" + }, + { + "Id": 17648, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-03-28T07:41:05", + "TransactionId": 93101369, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 710, + "CustomerInfo": 47999868, + "PaymentType": "Credit Card" + }, + { + "Id": 17649, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2017-11-05T12:22:02", + "TransactionId": 57300680, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 130, + "CustomerInfo": 27254929, + "PaymentType": "Cash" + }, + { + "Id": 17650, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2016-01-21T14:49:38", + "TransactionId": 80620507, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 829, + "CustomerInfo": 83065556, + "PaymentType": "Cash" + }, + { + "Id": 17651, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2018-12-18T17:52:13", + "TransactionId": 31114051, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 618, + "CustomerInfo": 35250673, + "PaymentType": "Cash" + }, + { + "Id": 17652, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-2", + "TransactionDate": "2016-05-01T12:35:17", + "TransactionId": 82078056, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 374, + "CustomerInfo": 24003705, + "PaymentType": "Debit Card" + }, + { + "Id": 17653, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2018-04-10T18:16:25", + "TransactionId": 96711181, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 332, + "CustomerInfo": 25390219, + "PaymentType": "Cash" + }, + { + "Id": 17654, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-05-08T16:35:54", + "TransactionId": 99425006, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 125, + "CustomerInfo": 134916, + "PaymentType": "Cash" + }, + { + "Id": 17655, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2017-10-14T08:07:18", + "TransactionId": 25263618, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 985, + "CustomerInfo": 23286399, + "PaymentType": "Debit Card" + }, + { + "Id": 17656, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2017-03-17T18:50:24", + "TransactionId": 39757838, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 356, + "CustomerInfo": 69198796, + "PaymentType": "Credit Card" + }, + { + "Id": 17657, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-5", + "TransactionDate": "2019-07-01T17:00:32", + "TransactionId": 97554112, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 274, + "CustomerInfo": 24946840, + "PaymentType": "Cash" + }, + { + "Id": 17658, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2018-06-06T12:15:07", + "TransactionId": 51281072, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 515, + "CustomerInfo": 70295866, + "PaymentType": "Cash" + }, + { + "Id": 17659, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2017-06-11T07:51:01", + "TransactionId": 93892709, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 851, + "CustomerInfo": 57357593, + "PaymentType": "Credit Card" + }, + { + "Id": 17660, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2019-12-31T07:00:55", + "TransactionId": 61329859, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 233, + "CustomerInfo": 95999113, + "PaymentType": "Cash" + }, + { + "Id": 17661, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2017-05-09T08:19:41", + "TransactionId": 70716664, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 674, + "CustomerInfo": 92490028, + "PaymentType": "Credit Card" + }, + { + "Id": 17662, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2016-02-27T12:40:45", + "TransactionId": 9267863, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 619, + "CustomerInfo": 45803184, + "PaymentType": "Debit Card" + }, + { + "Id": 17663, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2019-08-04T18:06:55", + "TransactionId": 56335479, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 266, + "CustomerInfo": 92251626, + "PaymentType": "Debit Card" + }, + { + "Id": 17664, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-1", + "TransactionDate": "2019-06-17T16:40:13", + "TransactionId": 10642025, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 753, + "CustomerInfo": 59163976, + "PaymentType": "Credit Card" + }, + { + "Id": 17665, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2017-10-15T16:19:29", + "TransactionId": 81670309, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 288, + "CustomerInfo": 79180182, + "PaymentType": "Debit Card" + }, + { + "Id": 17666, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2016-10-13T19:33:10", + "TransactionId": 91373468, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 604, + "CustomerInfo": 94647669, + "PaymentType": "Debit Card" + }, + { + "Id": 17667, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-11-07T18:26:12", + "TransactionId": 13071349, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 930, + "CustomerInfo": 52269030, + "PaymentType": "Cash" + }, + { + "Id": 17668, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2017-11-11T15:25:21", + "TransactionId": 16486073, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 787, + "CustomerInfo": 5559727, + "PaymentType": "Credit Card" + }, + { + "Id": 17669, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2019-11-26T12:54:09", + "TransactionId": 34950941, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 441, + "CustomerInfo": 22494471, + "PaymentType": "Credit Card" + }, + { + "Id": 17670, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2016-07-08T08:38:33", + "TransactionId": 95531449, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 958, + "CustomerInfo": 96489018, + "PaymentType": "Debit Card" + }, + { + "Id": 17671, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-03-04T12:27:22", + "TransactionId": 67895949, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 106, + "CustomerInfo": 37637925, + "PaymentType": "Cash" + }, + { + "Id": 17672, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-04-25T18:08:47", + "TransactionId": 85378113, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 342, + "CustomerInfo": 68837187, + "PaymentType": "Credit Card" + }, + { + "Id": 17673, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-09-06T13:58:31", + "TransactionId": 18385915, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 577, + "CustomerInfo": 6252891, + "PaymentType": "Cash" + }, + { + "Id": 17674, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-1", + "TransactionDate": "2018-12-06T08:11:54", + "TransactionId": 82662712, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 838, + "CustomerInfo": 82728677, + "PaymentType": "Cash" + }, + { + "Id": 17675, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2019-12-16T13:07:15", + "TransactionId": 46409851, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 716, + "CustomerInfo": 67407154, + "PaymentType": "Cash" + }, + { + "Id": 17676, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2019-04-30T17:06:52", + "TransactionId": 78903353, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 26, + "CustomerInfo": 94287525, + "PaymentType": "Credit Card" + }, + { + "Id": 17677, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2017-01-06T07:41:05", + "TransactionId": 79583879, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 541, + "CustomerInfo": 68364672, + "PaymentType": "Debit Card" + }, + { + "Id": 17678, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2018-04-19T14:58:25", + "TransactionId": 29554209, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 580, + "CustomerInfo": 24355670, + "PaymentType": "Cash" + }, + { + "Id": 17679, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-11-24T07:59:05", + "TransactionId": 92302488, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 61, + "CustomerInfo": 63649248, + "PaymentType": "Cash" + }, + { + "Id": 17680, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2019-03-19T12:09:48", + "TransactionId": 40335170, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 869, + "CustomerInfo": 3083313, + "PaymentType": "Credit Card" + }, + { + "Id": 17681, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-4", + "TransactionDate": "2017-04-21T17:25:35", + "TransactionId": 49966655, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 772, + "CustomerInfo": 44018886, + "PaymentType": "Cash" + }, + { + "Id": 17682, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2017-10-16T13:52:36", + "TransactionId": 89687826, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 10, + "CustomerInfo": 12206811, + "PaymentType": "Cash" + }, + { + "Id": 17683, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2018-05-13T14:03:07", + "TransactionId": 88157437, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 135, + "CustomerInfo": 81942383, + "PaymentType": "Credit Card" + }, + { + "Id": 17684, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2018-02-01T17:14:12", + "TransactionId": 70177991, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 151, + "CustomerInfo": 16477397, + "PaymentType": "Debit Card" + }, + { + "Id": 17685, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2019-07-27T16:04:57", + "TransactionId": 91366355, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 51403397, + "PaymentType": "Cash" + }, + { + "Id": 17686, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2019-07-14T11:30:20", + "TransactionId": 40735981, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 35468337, + "PaymentType": "Credit Card" + }, + { + "Id": 17687, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-03-16T07:06:58", + "TransactionId": 43594825, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 344, + "CustomerInfo": 27695622, + "PaymentType": "Credit Card" + }, + { + "Id": 17688, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2019-11-12T09:17:51", + "TransactionId": 89522445, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 703, + "CustomerInfo": 49766815, + "PaymentType": "Debit Card" + }, + { + "Id": 17689, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2016-07-27T08:27:10", + "TransactionId": 116425, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 579, + "CustomerInfo": 96586195, + "PaymentType": "Debit Card" + }, + { + "Id": 17690, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-2", + "TransactionDate": "2018-12-27T16:05:31", + "TransactionId": 81540472, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 94, + "CustomerInfo": 30858968, + "PaymentType": "Credit Card" + }, + { + "Id": 17691, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-5", + "TransactionDate": "2017-05-07T08:28:36", + "TransactionId": 86872217, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 267, + "CustomerInfo": 83400885, + "PaymentType": "Credit Card" + }, + { + "Id": 17692, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2019-06-05T15:19:18", + "TransactionId": 8278691, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 347, + "CustomerInfo": 62246899, + "PaymentType": "Debit Card" + }, + { + "Id": 17693, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2018-11-09T12:07:55", + "TransactionId": 53427361, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 233, + "CustomerInfo": 85062630, + "PaymentType": "Debit Card" + }, + { + "Id": 17694, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2019-06-14T14:55:15", + "TransactionId": 3526106, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 673, + "CustomerInfo": 71276033, + "PaymentType": "Debit Card" + }, + { + "Id": 17695, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2019-09-23T08:36:49", + "TransactionId": 30244969, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 164, + "CustomerInfo": 19201349, + "PaymentType": "Debit Card" + }, + { + "Id": 17696, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2016-10-04T13:39:39", + "TransactionId": 25457286, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 810, + "CustomerInfo": 31633405, + "PaymentType": "Credit Card" + }, + { + "Id": 17697, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2017-01-03T18:08:04", + "TransactionId": 77994339, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 236, + "CustomerInfo": 76865757, + "PaymentType": "Cash" + }, + { + "Id": 17698, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2016-09-13T15:30:40", + "TransactionId": 8008943, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 937, + "CustomerInfo": 68898153, + "PaymentType": "Debit Card" + }, + { + "Id": 17699, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2018-10-27T11:20:50", + "TransactionId": 58935820, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 379, + "CustomerInfo": 12119992, + "PaymentType": "Cash" + }, + { + "Id": 17700, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2017-06-30T07:35:54", + "TransactionId": 20494539, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 20, + "CustomerInfo": 49942919, + "PaymentType": "Cash" + }, + { + "Id": 17701, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-03-15T14:40:51", + "TransactionId": 63184112, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 96, + "CustomerInfo": 32816948, + "PaymentType": "Debit Card" + }, + { + "Id": 17702, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2017-04-19T10:29:08", + "TransactionId": 39992628, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 148, + "CustomerInfo": 25072538, + "PaymentType": "Cash" + }, + { + "Id": 17703, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2018-04-17T09:50:59", + "TransactionId": 72838953, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 608, + "CustomerInfo": 73101782, + "PaymentType": "Cash" + }, + { + "Id": 17704, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-1", + "TransactionDate": "2019-10-25T12:02:10", + "TransactionId": 83987840, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 29, + "CustomerInfo": 36600994, + "PaymentType": "Credit Card" + }, + { + "Id": 17705, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-3", + "TransactionDate": "2018-11-10T17:17:48", + "TransactionId": 67764571, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 482, + "CustomerInfo": 96560988, + "PaymentType": "Credit Card" + }, + { + "Id": 17706, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-05-15T07:35:20", + "TransactionId": 93583978, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 179, + "CustomerInfo": 13963686, + "PaymentType": "Debit Card" + }, + { + "Id": 17707, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2016-08-25T08:01:49", + "TransactionId": 66922577, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 105, + "CustomerInfo": 6802512, + "PaymentType": "Debit Card" + }, + { + "Id": 17708, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2017-07-07T15:29:14", + "TransactionId": 69382234, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 366, + "CustomerInfo": 92431817, + "PaymentType": "Cash" + }, + { + "Id": 17709, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2016-06-08T13:11:08", + "TransactionId": 92233062, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 251, + "CustomerInfo": 8423733, + "PaymentType": "Credit Card" + }, + { + "Id": 17710, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-03-23T07:46:42", + "TransactionId": 32228623, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 259, + "CustomerInfo": 61882246, + "PaymentType": "Credit Card" + }, + { + "Id": 17711, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2016-04-06T10:56:30", + "TransactionId": 13747855, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 347, + "CustomerInfo": 70194020, + "PaymentType": "Debit Card" + }, + { + "Id": 17712, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-01-06T18:19:09", + "TransactionId": 75122051, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 843, + "CustomerInfo": 67124567, + "PaymentType": "Credit Card" + }, + { + "Id": 17713, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2018-10-28T11:43:18", + "TransactionId": 18548968, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 935, + "CustomerInfo": 26092371, + "PaymentType": "Cash" + }, + { + "Id": 17714, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2018-12-04T07:21:13", + "TransactionId": 82500120, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 563, + "CustomerInfo": 81506883, + "PaymentType": "Cash" + }, + { + "Id": 17715, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2016-04-25T15:31:32", + "TransactionId": 34819378, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 970, + "CustomerInfo": 52653731, + "PaymentType": "Cash" + }, + { + "Id": 17716, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2018-07-27T18:05:28", + "TransactionId": 82503255, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 725, + "CustomerInfo": 45655234, + "PaymentType": "Cash" + }, + { + "Id": 17717, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-12-20T10:34:54", + "TransactionId": 7487825, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 454, + "CustomerInfo": 86150161, + "PaymentType": "Debit Card" + }, + { + "Id": 17718, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2016-10-04T12:35:00", + "TransactionId": 58858435, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 888, + "CustomerInfo": 87512773, + "PaymentType": "Credit Card" + }, + { + "Id": 17719, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2019-04-11T18:24:20", + "TransactionId": 93996629, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 562, + "CustomerInfo": 18980107, + "PaymentType": "Debit Card" + }, + { + "Id": 17720, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2017-11-25T09:51:59", + "TransactionId": 77280035, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 290, + "CustomerInfo": 55663098, + "PaymentType": "Debit Card" + }, + { + "Id": 17721, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2017-12-20T08:59:25", + "TransactionId": 71394630, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 789, + "CustomerInfo": 97153442, + "PaymentType": "Debit Card" + }, + { + "Id": 17722, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-10-17T17:47:20", + "TransactionId": 62954098, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 963, + "CustomerInfo": 8545354, + "PaymentType": "Credit Card" + }, + { + "Id": 17723, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2019-09-07T18:05:37", + "TransactionId": 16899232, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 494, + "CustomerInfo": 84531971, + "PaymentType": "Cash" + }, + { + "Id": 17724, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-09-04T15:40:45", + "TransactionId": 60003452, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 247, + "CustomerInfo": 17939938, + "PaymentType": "Credit Card" + }, + { + "Id": 17725, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2017-11-15T11:04:16", + "TransactionId": 39466699, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 14, + "CustomerInfo": 93802796, + "PaymentType": "Cash" + }, + { + "Id": 17726, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2016-04-18T11:02:33", + "TransactionId": 94936950, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 224, + "CustomerInfo": 96793713, + "PaymentType": "Credit Card" + }, + { + "Id": 17727, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-06-26T18:22:28", + "TransactionId": 6092769, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 193, + "CustomerInfo": 66433704, + "PaymentType": "Cash" + }, + { + "Id": 17728, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-01-09T07:12:09", + "TransactionId": 94112067, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 704, + "CustomerInfo": 37173139, + "PaymentType": "Credit Card" + }, + { + "Id": 17729, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-04-13T17:25:18", + "TransactionId": 22865097, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 907, + "CustomerInfo": 40530137, + "PaymentType": "Credit Card" + }, + { + "Id": 17730, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2017-10-10T12:48:40", + "TransactionId": 61923738, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 201, + "CustomerInfo": 77207629, + "PaymentType": "Debit Card" + }, + { + "Id": 17731, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2016-08-08T16:20:30", + "TransactionId": 94821009, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 643, + "CustomerInfo": 97920485, + "PaymentType": "Cash" + }, + { + "Id": 17732, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2016-11-05T15:27:30", + "TransactionId": 26896307, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 859, + "CustomerInfo": 62306569, + "PaymentType": "Cash" + }, + { + "Id": 17733, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2017-07-13T08:07:00", + "TransactionId": 86646684, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 878, + "CustomerInfo": 26113075, + "PaymentType": "Credit Card" + }, + { + "Id": 17734, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2019-12-15T13:50:53", + "TransactionId": 82520544, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 209, + "CustomerInfo": 61981690, + "PaymentType": "Debit Card" + }, + { + "Id": 17735, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2017-08-19T08:06:35", + "TransactionId": 79073217, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 739, + "CustomerInfo": 26374797, + "PaymentType": "Credit Card" + }, + { + "Id": 17736, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2016-06-11T18:49:58", + "TransactionId": 68721707, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 903, + "CustomerInfo": 73454063, + "PaymentType": "Debit Card" + }, + { + "Id": 17737, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2017-02-04T12:22:54", + "TransactionId": 28475136, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 853, + "CustomerInfo": 2454947, + "PaymentType": "Debit Card" + }, + { + "Id": 17738, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2016-06-03T08:40:34", + "TransactionId": 41805306, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 246, + "CustomerInfo": 13315760, + "PaymentType": "Credit Card" + }, + { + "Id": 17739, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2018-11-19T07:31:26", + "TransactionId": 86167426, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 101, + "CustomerInfo": 94935636, + "PaymentType": "Debit Card" + }, + { + "Id": 17740, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2018-01-14T19:11:34", + "TransactionId": 23869804, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 510, + "CustomerInfo": 77724601, + "PaymentType": "Cash" + }, + { + "Id": 17741, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-09-08T10:51:01", + "TransactionId": 29024180, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 479, + "CustomerInfo": 65297599, + "PaymentType": "Cash" + }, + { + "Id": 17742, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2017-03-30T12:39:19", + "TransactionId": 59118410, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 282, + "CustomerInfo": 57466250, + "PaymentType": "Debit Card" + }, + { + "Id": 17743, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2018-04-23T15:22:02", + "TransactionId": 63649755, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 445, + "CustomerInfo": 54067921, + "PaymentType": "Cash" + }, + { + "Id": 17744, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2016-03-17T13:51:27", + "TransactionId": 53674750, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 267, + "CustomerInfo": 33267628, + "PaymentType": "Debit Card" + }, + { + "Id": 17745, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-02-16T15:17:43", + "TransactionId": 17956061, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 147, + "CustomerInfo": 6127731, + "PaymentType": "Cash" + }, + { + "Id": 17746, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-03-08T10:14:01", + "TransactionId": 76505459, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 52, + "CustomerInfo": 43722538, + "PaymentType": "Cash" + }, + { + "Id": 17747, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2019-07-10T16:22:05", + "TransactionId": 27562133, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 279, + "CustomerInfo": 75826188, + "PaymentType": "Credit Card" + }, + { + "Id": 17748, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-11-29T18:49:41", + "TransactionId": 41572143, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 255, + "CustomerInfo": 64952732, + "PaymentType": "Debit Card" + }, + { + "Id": 17749, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2016-07-15T13:07:15", + "TransactionId": 90507395, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 831, + "CustomerInfo": 69869135, + "PaymentType": "Credit Card" + }, + { + "Id": 17750, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2018-10-16T10:01:55", + "TransactionId": 95140951, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 853, + "CustomerInfo": 41747342, + "PaymentType": "Credit Card" + }, + { + "Id": 17751, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2018-01-23T16:54:46", + "TransactionId": 89367179, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 736, + "CustomerInfo": 68538631, + "PaymentType": "Debit Card" + }, + { + "Id": 17752, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2018-10-24T18:52:42", + "TransactionId": 74785753, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 736, + "CustomerInfo": 65685990, + "PaymentType": "Credit Card" + }, + { + "Id": 17753, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-09-22T12:18:52", + "TransactionId": 15629031, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 593, + "CustomerInfo": 56781917, + "PaymentType": "Cash" + }, + { + "Id": 17754, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-03-10T10:49:44", + "TransactionId": 24433056, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 770, + "CustomerInfo": 41315427, + "PaymentType": "Debit Card" + }, + { + "Id": 17755, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-1", + "TransactionDate": "2016-01-23T07:23:40", + "TransactionId": 77288455, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 697, + "CustomerInfo": 15297829, + "PaymentType": "Debit Card" + }, + { + "Id": 17756, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2019-06-29T17:00:14", + "TransactionId": 35121322, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 986, + "CustomerInfo": 51946598, + "PaymentType": "Cash" + }, + { + "Id": 17757, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2017-09-26T08:09:53", + "TransactionId": 51096629, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 74361306, + "PaymentType": "Cash" + }, + { + "Id": 17758, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-01-26T16:35:37", + "TransactionId": 12653945, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 916, + "CustomerInfo": 15958831, + "PaymentType": "Cash" + }, + { + "Id": 17759, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2018-07-12T07:14:36", + "TransactionId": 97066930, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 398, + "CustomerInfo": 20301590, + "PaymentType": "Cash" + }, + { + "Id": 17760, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-01-31T17:05:34", + "TransactionId": 3136065, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 482, + "CustomerInfo": 97299342, + "PaymentType": "Debit Card" + }, + { + "Id": 17761, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2016-02-28T14:48:46", + "TransactionId": 93110751, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 374, + "CustomerInfo": 85343655, + "PaymentType": "Debit Card" + }, + { + "Id": 17762, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2019-06-10T13:17:20", + "TransactionId": 88069012, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 797, + "CustomerInfo": 92660667, + "PaymentType": "Debit Card" + }, + { + "Id": 17763, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2017-08-11T16:29:08", + "TransactionId": 71108652, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 283, + "CustomerInfo": 776260, + "PaymentType": "Credit Card" + }, + { + "Id": 17764, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2019-06-28T09:06:55", + "TransactionId": 20111681, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 3833400, + "PaymentType": "Debit Card" + }, + { + "Id": 17765, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-2", + "TransactionDate": "2019-10-10T19:48:09", + "TransactionId": 99475166, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 441, + "CustomerInfo": 41181330, + "PaymentType": "Credit Card" + }, + { + "Id": 17766, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2019-04-07T15:25:38", + "TransactionId": 2117367, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 206, + "CustomerInfo": 13882177, + "PaymentType": "Debit Card" + }, + { + "Id": 17767, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-07-27T19:22:13", + "TransactionId": 71512817, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 745, + "CustomerInfo": 85665832, + "PaymentType": "Credit Card" + }, + { + "Id": 17768, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2018-03-11T19:31:26", + "TransactionId": 32161625, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 164, + "CustomerInfo": 38404838, + "PaymentType": "Cash" + }, + { + "Id": 17769, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-11-29T07:53:54", + "TransactionId": 60429203, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 930, + "CustomerInfo": 21047925, + "PaymentType": "Cash" + }, + { + "Id": 17770, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2018-05-03T09:44:21", + "TransactionId": 61749239, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 15, + "CustomerInfo": 77649453, + "PaymentType": "Cash" + }, + { + "Id": 17771, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2017-07-11T14:55:41", + "TransactionId": 47018264, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 776, + "CustomerInfo": 29469160, + "PaymentType": "Cash" + }, + { + "Id": 17772, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-1", + "TransactionDate": "2019-06-05T08:26:36", + "TransactionId": 75139973, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 109, + "CustomerInfo": 38190411, + "PaymentType": "Credit Card" + }, + { + "Id": 17773, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2017-04-27T14:34:05", + "TransactionId": 92474554, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 332, + "CustomerInfo": 98621292, + "PaymentType": "Cash" + }, + { + "Id": 17774, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-09-27T18:27:30", + "TransactionId": 10155114, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 229, + "CustomerInfo": 28089831, + "PaymentType": "Debit Card" + }, + { + "Id": 17775, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2018-05-07T12:23:46", + "TransactionId": 41365982, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 394, + "CustomerInfo": 69640717, + "PaymentType": "Debit Card" + }, + { + "Id": 17776, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2019-07-22T19:39:56", + "TransactionId": 77569916, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 362, + "CustomerInfo": 85235362, + "PaymentType": "Credit Card" + }, + { + "Id": 17777, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2018-06-25T09:59:28", + "TransactionId": 50619802, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 958, + "CustomerInfo": 52797793, + "PaymentType": "Cash" + }, + { + "Id": 17778, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2019-05-19T16:27:33", + "TransactionId": 569162, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 767, + "CustomerInfo": 52848896, + "PaymentType": "Credit Card" + }, + { + "Id": 17779, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-05-13T07:12:17", + "TransactionId": 78486715, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 422, + "CustomerInfo": 83309685, + "PaymentType": "Credit Card" + }, + { + "Id": 17780, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2018-03-10T12:30:32", + "TransactionId": 1282980, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 934, + "CustomerInfo": 7461446, + "PaymentType": "Cash" + }, + { + "Id": 17781, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-12-16T12:55:44", + "TransactionId": 6137357, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 548, + "CustomerInfo": 3576840, + "PaymentType": "Credit Card" + }, + { + "Id": 17782, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-12-05T07:02:47", + "TransactionId": 14471558, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 87, + "CustomerInfo": 1035507, + "PaymentType": "Cash" + }, + { + "Id": 17783, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-3", + "TransactionDate": "2016-09-10T18:57:19", + "TransactionId": 14124592, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 648, + "CustomerInfo": 30628586, + "PaymentType": "Cash" + }, + { + "Id": 17784, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2017-04-13T18:11:14", + "TransactionId": 62262872, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 400, + "CustomerInfo": 50292936, + "PaymentType": "Debit Card" + }, + { + "Id": 17785, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2017-02-20T16:29:34", + "TransactionId": 12882978, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 168, + "CustomerInfo": 67428364, + "PaymentType": "Credit Card" + }, + { + "Id": 17786, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-5", + "TransactionDate": "2016-01-01T09:16:08", + "TransactionId": 34461267, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 780, + "CustomerInfo": 64438506, + "PaymentType": "Cash" + }, + { + "Id": 17787, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2017-01-11T07:31:44", + "TransactionId": 89030045, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 221, + "CustomerInfo": 15047350, + "PaymentType": "Debit Card" + }, + { + "Id": 17788, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-3", + "TransactionDate": "2017-03-02T13:00:29", + "TransactionId": 98797418, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 161, + "CustomerInfo": 55964086, + "PaymentType": "Debit Card" + }, + { + "Id": 17789, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2018-01-14T15:05:11", + "TransactionId": 63723379, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 308, + "CustomerInfo": 21040075, + "PaymentType": "Cash" + }, + { + "Id": 17790, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2019-02-19T08:31:12", + "TransactionId": 55119329, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 446, + "CustomerInfo": 80001280, + "PaymentType": "Debit Card" + }, + { + "Id": 17791, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2018-06-28T14:55:24", + "TransactionId": 65996211, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 771, + "CustomerInfo": 32661042, + "PaymentType": "Cash" + }, + { + "Id": 17792, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2018-01-12T13:06:32", + "TransactionId": 15342344, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 976, + "CustomerInfo": 99214820, + "PaymentType": "Credit Card" + }, + { + "Id": 17793, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-08-25T17:34:48", + "TransactionId": 85604110, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 457, + "CustomerInfo": 83501755, + "PaymentType": "Debit Card" + }, + { + "Id": 17794, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2019-09-21T15:35:08", + "TransactionId": 61031566, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 994, + "CustomerInfo": 24329071, + "PaymentType": "Credit Card" + }, + { + "Id": 17795, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-08-12T12:41:28", + "TransactionId": 37549771, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 942, + "CustomerInfo": 10510790, + "PaymentType": "Debit Card" + }, + { + "Id": 17796, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-08-10T12:22:45", + "TransactionId": 44872682, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 365, + "CustomerInfo": 85974918, + "PaymentType": "Debit Card" + }, + { + "Id": 17797, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-10-10T10:09:33", + "TransactionId": 76133674, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 959, + "CustomerInfo": 75725628, + "PaymentType": "Credit Card" + }, + { + "Id": 17798, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2016-07-19T11:31:21", + "TransactionId": 41222013, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 885, + "CustomerInfo": 51426166, + "PaymentType": "Debit Card" + }, + { + "Id": 17799, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2017-01-19T16:29:43", + "TransactionId": 73116120, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 517, + "CustomerInfo": 16500960, + "PaymentType": "Credit Card" + }, + { + "Id": 17800, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2018-01-17T17:59:00", + "TransactionId": 69751116, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 159, + "CustomerInfo": 3193345, + "PaymentType": "Debit Card" + }, + { + "Id": 17801, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-12-18T10:05:14", + "TransactionId": 1131007, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 948, + "CustomerInfo": 25466485, + "PaymentType": "Credit Card" + }, + { + "Id": 17802, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-08-21T09:28:31", + "TransactionId": 20543511, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 22306376, + "PaymentType": "Debit Card" + }, + { + "Id": 17803, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2016-06-23T18:20:01", + "TransactionId": 48114509, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 135, + "CustomerInfo": 33354122, + "PaymentType": "Cash" + }, + { + "Id": 17804, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2018-06-09T15:21:27", + "TransactionId": 86865448, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 56541555, + "PaymentType": "Credit Card" + }, + { + "Id": 17805, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2016-05-25T12:39:36", + "TransactionId": 8263320, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 305, + "CustomerInfo": 30462891, + "PaymentType": "Cash" + }, + { + "Id": 17806, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2017-08-18T14:35:31", + "TransactionId": 96983011, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 254, + "CustomerInfo": 77244790, + "PaymentType": "Debit Card" + }, + { + "Id": 17807, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2016-08-03T18:07:29", + "TransactionId": 93557039, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 132, + "CustomerInfo": 7038243, + "PaymentType": "Cash" + }, + { + "Id": 17808, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2019-06-27T15:00:17", + "TransactionId": 63401046, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 539, + "CustomerInfo": 68361826, + "PaymentType": "Credit Card" + }, + { + "Id": 17809, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2019-06-28T09:47:57", + "TransactionId": 60471652, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 158, + "CustomerInfo": 49744090, + "PaymentType": "Debit Card" + }, + { + "Id": 17810, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-02-02T15:41:54", + "TransactionId": 34088780, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 187, + "CustomerInfo": 2453318, + "PaymentType": "Cash" + }, + { + "Id": 17811, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-08-16T12:14:15", + "TransactionId": 89655233, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 77018747, + "PaymentType": "Debit Card" + }, + { + "Id": 17812, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2017-09-12T17:54:58", + "TransactionId": 80495959, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 373, + "CustomerInfo": 12191586, + "PaymentType": "Cash" + }, + { + "Id": 17813, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2018-09-20T18:20:53", + "TransactionId": 9685790, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 810, + "CustomerInfo": 20451908, + "PaymentType": "Debit Card" + }, + { + "Id": 17814, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-4", + "TransactionDate": "2016-03-25T17:54:14", + "TransactionId": 98913053, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 686, + "CustomerInfo": 47201584, + "PaymentType": "Credit Card" + }, + { + "Id": 17815, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2019-05-10T18:16:42", + "TransactionId": 46410099, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 919, + "CustomerInfo": 70013500, + "PaymentType": "Cash" + }, + { + "Id": 17816, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-01-03T13:43:24", + "TransactionId": 70205961, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 24603253, + "PaymentType": "Cash" + }, + { + "Id": 17817, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2017-06-10T14:19:58", + "TransactionId": 9703843, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 290, + "CustomerInfo": 45884750, + "PaymentType": "Cash" + }, + { + "Id": 17818, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2017-01-23T15:13:15", + "TransactionId": 15490378, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 890, + "CustomerInfo": 42154276, + "PaymentType": "Debit Card" + }, + { + "Id": 17819, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2016-02-05T18:52:25", + "TransactionId": 90662071, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 33, + "CustomerInfo": 56910882, + "PaymentType": "Debit Card" + }, + { + "Id": 17820, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2019-03-25T15:43:29", + "TransactionId": 99145973, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 895, + "CustomerInfo": 68376888, + "PaymentType": "Credit Card" + }, + { + "Id": 17821, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2018-07-30T15:50:15", + "TransactionId": 36375711, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 941, + "CustomerInfo": 42669948, + "PaymentType": "Debit Card" + }, + { + "Id": 17822, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2018-12-08T09:07:55", + "TransactionId": 73121794, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 582, + "CustomerInfo": 29922684, + "PaymentType": "Credit Card" + }, + { + "Id": 17823, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2019-06-23T19:05:57", + "TransactionId": 97870195, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 889, + "CustomerInfo": 64168573, + "PaymentType": "Credit Card" + }, + { + "Id": 17824, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2016-04-05T13:14:27", + "TransactionId": 5734407, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 183, + "CustomerInfo": 34369929, + "PaymentType": "Debit Card" + }, + { + "Id": 17825, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-03-11T14:05:17", + "TransactionId": 53247100, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 728, + "CustomerInfo": 97971279, + "PaymentType": "Credit Card" + }, + { + "Id": 17826, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2018-10-12T19:12:35", + "TransactionId": 65885689, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 786, + "CustomerInfo": 30598305, + "PaymentType": "Debit Card" + }, + { + "Id": 17827, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2019-05-16T10:41:57", + "TransactionId": 82361978, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 812, + "CustomerInfo": 91575407, + "PaymentType": "Debit Card" + }, + { + "Id": 17828, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2018-04-06T15:58:11", + "TransactionId": 99703662, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 318, + "CustomerInfo": 55014802, + "PaymentType": "Cash" + }, + { + "Id": 17829, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-07-05T17:26:44", + "TransactionId": 23784560, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 29, + "CustomerInfo": 17769400, + "PaymentType": "Credit Card" + }, + { + "Id": 17830, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-11-22T17:55:32", + "TransactionId": 81802096, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 846, + "CustomerInfo": 17999497, + "PaymentType": "Debit Card" + }, + { + "Id": 17831, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-10-17T18:48:23", + "TransactionId": 46649657, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 399, + "CustomerInfo": 27134667, + "PaymentType": "Credit Card" + }, + { + "Id": 17832, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2019-08-04T09:08:12", + "TransactionId": 34429956, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 237, + "CustomerInfo": 38154165, + "PaymentType": "Credit Card" + }, + { + "Id": 17833, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2017-12-15T11:12:03", + "TransactionId": 6355611, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 63942228, + "PaymentType": "Credit Card" + }, + { + "Id": 17834, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-12-23T17:34:57", + "TransactionId": 11344810, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 741, + "CustomerInfo": 35163248, + "PaymentType": "Credit Card" + }, + { + "Id": 17835, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2017-09-23T08:23:08", + "TransactionId": 19971855, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 423, + "CustomerInfo": 53596437, + "PaymentType": "Cash" + }, + { + "Id": 17836, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-07-15T19:06:58", + "TransactionId": 11320158, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 137, + "CustomerInfo": 56738239, + "PaymentType": "Cash" + }, + { + "Id": 17837, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-01-17T16:00:37", + "TransactionId": 2584094, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 803, + "CustomerInfo": 89916986, + "PaymentType": "Debit Card" + }, + { + "Id": 17838, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2019-07-30T08:23:43", + "TransactionId": 8155286, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 197, + "CustomerInfo": 29365022, + "PaymentType": "Credit Card" + }, + { + "Id": 17839, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2016-06-04T17:14:56", + "TransactionId": 83153689, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 421, + "CustomerInfo": 17297147, + "PaymentType": "Credit Card" + }, + { + "Id": 17840, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2016-08-21T11:27:53", + "TransactionId": 60220724, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 506, + "CustomerInfo": 34890034, + "PaymentType": "Credit Card" + }, + { + "Id": 17841, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2019-06-12T18:20:10", + "TransactionId": 11225254, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 285, + "CustomerInfo": 74624531, + "PaymentType": "Debit Card" + }, + { + "Id": 17842, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2016-11-24T08:04:08", + "TransactionId": 5381774, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 931, + "CustomerInfo": 94375800, + "PaymentType": "Cash" + }, + { + "Id": 17843, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-10-14T10:21:39", + "TransactionId": 71232762, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 236, + "CustomerInfo": 32592820, + "PaymentType": "Credit Card" + }, + { + "Id": 17844, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-06-21T13:57:22", + "TransactionId": 71670939, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 920, + "CustomerInfo": 62227643, + "PaymentType": "Debit Card" + }, + { + "Id": 17845, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2018-09-26T14:18:49", + "TransactionId": 3028803, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 34584937, + "PaymentType": "Cash" + }, + { + "Id": 17846, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2016-06-15T13:29:43", + "TransactionId": 10883967, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 254, + "CustomerInfo": 16348688, + "PaymentType": "Credit Card" + }, + { + "Id": 17847, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-01-21T10:04:05", + "TransactionId": 20201099, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 555, + "CustomerInfo": 17664468, + "PaymentType": "Cash" + }, + { + "Id": 17848, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2019-09-22T11:06:26", + "TransactionId": 98305382, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 331, + "CustomerInfo": 70901931, + "PaymentType": "Cash" + }, + { + "Id": 17849, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2016-09-05T08:08:53", + "TransactionId": 92039009, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 776, + "CustomerInfo": 92477583, + "PaymentType": "Debit Card" + }, + { + "Id": 17850, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2017-07-07T16:24:58", + "TransactionId": 49831512, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 16, + "CustomerInfo": 38765297, + "PaymentType": "Credit Card" + }, + { + "Id": 17851, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2019-10-07T10:36:55", + "TransactionId": 20973223, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 663, + "CustomerInfo": 75547015, + "PaymentType": "Cash" + }, + { + "Id": 17852, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-2", + "TransactionDate": "2016-04-23T07:38:56", + "TransactionId": 61055962, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 616, + "CustomerInfo": 78700144, + "PaymentType": "Debit Card" + }, + { + "Id": 17853, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2016-09-30T10:27:59", + "TransactionId": 75352571, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 803, + "CustomerInfo": 7225321, + "PaymentType": "Cash" + }, + { + "Id": 17854, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-05-02T10:25:06", + "TransactionId": 68016543, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 16, + "CustomerInfo": 31420721, + "PaymentType": "Cash" + }, + { + "Id": 17855, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2019-02-12T10:39:48", + "TransactionId": 49122941, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 597, + "CustomerInfo": 90725627, + "PaymentType": "Debit Card" + }, + { + "Id": 17856, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2016-03-16T09:19:44", + "TransactionId": 67093189, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 181, + "CustomerInfo": 1109630, + "PaymentType": "Debit Card" + }, + { + "Id": 17857, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2019-10-02T16:11:25", + "TransactionId": 84994310, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 642, + "CustomerInfo": 60478054, + "PaymentType": "Credit Card" + }, + { + "Id": 17858, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2018-09-10T13:41:23", + "TransactionId": 73633116, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 508, + "CustomerInfo": 48093607, + "PaymentType": "Debit Card" + }, + { + "Id": 17859, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-12-04T13:51:01", + "TransactionId": 56222256, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 52, + "CustomerInfo": 72691187, + "PaymentType": "Debit Card" + }, + { + "Id": 17860, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-4", + "TransactionDate": "2017-07-20T07:19:03", + "TransactionId": 23715977, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 905, + "CustomerInfo": 61402631, + "PaymentType": "Cash" + }, + { + "Id": 17861, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2017-06-09T08:57:50", + "TransactionId": 23977236, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 373, + "CustomerInfo": 62778759, + "PaymentType": "Debit Card" + }, + { + "Id": 17862, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2017-10-13T19:48:17", + "TransactionId": 51770062, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 556, + "CustomerInfo": 13351797, + "PaymentType": "Credit Card" + }, + { + "Id": 17863, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2018-03-11T08:09:36", + "TransactionId": 12930245, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 47, + "CustomerInfo": 50229378, + "PaymentType": "Debit Card" + }, + { + "Id": 17864, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2016-09-02T19:39:22", + "TransactionId": 94131660, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 657, + "CustomerInfo": 61996438, + "PaymentType": "Cash" + }, + { + "Id": 17865, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-3", + "TransactionDate": "2016-02-24T12:29:48", + "TransactionId": 72477398, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 89, + "CustomerInfo": 40908197, + "PaymentType": "Credit Card" + }, + { + "Id": 17866, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2019-09-13T13:27:07", + "TransactionId": 10140476, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 277, + "CustomerInfo": 10963983, + "PaymentType": "Credit Card" + }, + { + "Id": 17867, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-11-28T17:43:00", + "TransactionId": 60700697, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 668329, + "PaymentType": "Debit Card" + }, + { + "Id": 17868, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2016-12-13T09:30:58", + "TransactionId": 73319003, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 725, + "CustomerInfo": 47702423, + "PaymentType": "Debit Card" + }, + { + "Id": 17869, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-12-13T14:40:16", + "TransactionId": 69948146, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 264, + "CustomerInfo": 42152386, + "PaymentType": "Credit Card" + }, + { + "Id": 17870, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2016-06-30T13:40:39", + "TransactionId": 75534766, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 195, + "CustomerInfo": 17307290, + "PaymentType": "Credit Card" + }, + { + "Id": 17871, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-2", + "TransactionDate": "2017-10-28T10:25:49", + "TransactionId": 35400818, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 516, + "CustomerInfo": 71454850, + "PaymentType": "Cash" + }, + { + "Id": 17872, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-12-30T08:14:56", + "TransactionId": 30157167, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 555, + "CustomerInfo": 39240160, + "PaymentType": "Cash" + }, + { + "Id": 17873, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2017-01-04T14:14:21", + "TransactionId": 66283334, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 432, + "CustomerInfo": 44468347, + "PaymentType": "Credit Card" + }, + { + "Id": 17874, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2018-01-11T15:52:25", + "TransactionId": 34364318, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 949, + "CustomerInfo": 78034440, + "PaymentType": "Debit Card" + }, + { + "Id": 17875, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-1", + "TransactionDate": "2017-07-08T11:14:30", + "TransactionId": 45394558, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 94, + "CustomerInfo": 7330833, + "PaymentType": "Cash" + }, + { + "Id": 17876, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-12-26T14:04:34", + "TransactionId": 98040975, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 475, + "CustomerInfo": 28540565, + "PaymentType": "Credit Card" + }, + { + "Id": 17877, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2019-07-15T19:04:39", + "TransactionId": 49035902, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 337, + "CustomerInfo": 36013560, + "PaymentType": "Cash" + }, + { + "Id": 17878, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-04-28T17:33:22", + "TransactionId": 77102060, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 599, + "CustomerInfo": 95760505, + "PaymentType": "Cash" + }, + { + "Id": 17879, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2017-02-01T16:46:08", + "TransactionId": 41952554, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 927, + "CustomerInfo": 20237146, + "PaymentType": "Credit Card" + }, + { + "Id": 17880, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-1", + "TransactionDate": "2018-07-02T11:36:32", + "TransactionId": 35820902, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 590, + "CustomerInfo": 21485672, + "PaymentType": "Cash" + }, + { + "Id": 17881, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2017-11-10T09:24:12", + "TransactionId": 89943314, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 757, + "CustomerInfo": 94022398, + "PaymentType": "Cash" + }, + { + "Id": 17882, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-03-24T14:16:39", + "TransactionId": 86322980, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 408, + "CustomerInfo": 62041499, + "PaymentType": "Credit Card" + }, + { + "Id": 17883, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2018-01-02T09:27:56", + "TransactionId": 70333464, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 420, + "CustomerInfo": 43300163, + "PaymentType": "Cash" + }, + { + "Id": 17884, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2016-10-02T07:19:55", + "TransactionId": 46448382, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 288, + "CustomerInfo": 55704482, + "PaymentType": "Debit Card" + }, + { + "Id": 17885, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-08-17T07:53:11", + "TransactionId": 89689618, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 912, + "CustomerInfo": 1179442, + "PaymentType": "Credit Card" + }, + { + "Id": 17886, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-12-09T18:36:52", + "TransactionId": 16020449, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 56, + "CustomerInfo": 92977286, + "PaymentType": "Debit Card" + }, + { + "Id": 17887, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2019-10-18T17:45:01", + "TransactionId": 82171712, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 437, + "CustomerInfo": 792078, + "PaymentType": "Debit Card" + }, + { + "Id": 17888, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-3", + "TransactionDate": "2019-03-02T19:21:13", + "TransactionId": 65830319, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 491, + "CustomerInfo": 52150312, + "PaymentType": "Debit Card" + }, + { + "Id": 17889, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2016-04-11T07:10:16", + "TransactionId": 64782721, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 802, + "CustomerInfo": 93676151, + "PaymentType": "Credit Card" + }, + { + "Id": 17890, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2016-07-11T17:31:21", + "TransactionId": 28750382, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 178, + "CustomerInfo": 17315284, + "PaymentType": "Cash" + }, + { + "Id": 17891, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2016-11-08T19:52:54", + "TransactionId": 31693940, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 903, + "CustomerInfo": 29990773, + "PaymentType": "Credit Card" + }, + { + "Id": 17892, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2018-01-29T09:49:49", + "TransactionId": 79241268, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 679, + "CustomerInfo": 37943396, + "PaymentType": "Debit Card" + }, + { + "Id": 17893, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2019-06-24T08:57:50", + "TransactionId": 90119570, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 716, + "CustomerInfo": 99483572, + "PaymentType": "Cash" + }, + { + "Id": 17894, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2017-09-22T13:18:20", + "TransactionId": 20273079, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 943, + "CustomerInfo": 31923446, + "PaymentType": "Debit Card" + }, + { + "Id": 17895, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-07-14T07:28:08", + "TransactionId": 43636646, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 646, + "CustomerInfo": 18634914, + "PaymentType": "Debit Card" + }, + { + "Id": 17896, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2019-04-29T19:08:59", + "TransactionId": 70085689, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 37, + "CustomerInfo": 88943605, + "PaymentType": "Credit Card" + }, + { + "Id": 17897, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2016-10-10T10:50:36", + "TransactionId": 78908534, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 331, + "CustomerInfo": 74290579, + "PaymentType": "Credit Card" + }, + { + "Id": 17898, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-12-31T16:45:16", + "TransactionId": 2111636, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 205, + "CustomerInfo": 71230348, + "PaymentType": "Cash" + }, + { + "Id": 17899, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2019-02-23T15:50:07", + "TransactionId": 15909110, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 462, + "CustomerInfo": 27381801, + "PaymentType": "Cash" + }, + { + "Id": 17900, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2016-11-08T07:16:28", + "TransactionId": 26767445, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 883, + "CustomerInfo": 48513563, + "PaymentType": "Cash" + }, + { + "Id": 17901, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2017-01-09T12:43:12", + "TransactionId": 72766386, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 1, + "CustomerInfo": 45892529, + "PaymentType": "Credit Card" + }, + { + "Id": 17902, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2016-09-08T11:38:33", + "TransactionId": 71133245, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 8, + "CustomerInfo": 6309161, + "PaymentType": "Credit Card" + }, + { + "Id": 17903, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2017-03-16T11:29:37", + "TransactionId": 32130873, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 73, + "CustomerInfo": 70138865, + "PaymentType": "Debit Card" + }, + { + "Id": 17904, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-01-23T11:36:49", + "TransactionId": 88198703, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 190, + "CustomerInfo": 94743323, + "PaymentType": "Debit Card" + }, + { + "Id": 17905, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-2", + "TransactionDate": "2017-02-25T11:57:16", + "TransactionId": 96959983, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 802, + "CustomerInfo": 47258824, + "PaymentType": "Cash" + }, + { + "Id": 17906, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2018-10-04T09:12:06", + "TransactionId": 16830907, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 822, + "CustomerInfo": 1244677, + "PaymentType": "Cash" + }, + { + "Id": 17907, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2017-06-29T13:51:10", + "TransactionId": 77639621, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 425, + "CustomerInfo": 79766791, + "PaymentType": "Credit Card" + }, + { + "Id": 17908, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2017-05-11T16:57:48", + "TransactionId": 55549634, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 124, + "CustomerInfo": 86827045, + "PaymentType": "Cash" + }, + { + "Id": 17909, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-04-29T13:58:22", + "TransactionId": 87784204, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 419, + "CustomerInfo": 28872771, + "PaymentType": "Cash" + }, + { + "Id": 17910, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2017-03-21T15:33:42", + "TransactionId": 52074809, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 542, + "CustomerInfo": 27668254, + "PaymentType": "Credit Card" + }, + { + "Id": 17911, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2017-10-05T08:45:36", + "TransactionId": 40361175, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 131, + "CustomerInfo": 82199466, + "PaymentType": "Cash" + }, + { + "Id": 17912, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2018-09-25T15:33:42", + "TransactionId": 16934067, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 907, + "CustomerInfo": 48778022, + "PaymentType": "Cash" + }, + { + "Id": 17913, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-10-21T07:06:23", + "TransactionId": 97668267, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 843, + "CustomerInfo": 43494891, + "PaymentType": "Cash" + }, + { + "Id": 17914, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-05-26T07:25:24", + "TransactionId": 58864034, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 125, + "CustomerInfo": 21994755, + "PaymentType": "Credit Card" + }, + { + "Id": 17915, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2017-12-11T07:38:21", + "TransactionId": 70030630, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 274, + "CustomerInfo": 22801393, + "PaymentType": "Debit Card" + }, + { + "Id": 17916, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-4", + "TransactionDate": "2018-10-04T13:14:44", + "TransactionId": 1925786, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 654, + "CustomerInfo": 28663584, + "PaymentType": "Credit Card" + }, + { + "Id": 17917, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-2", + "TransactionDate": "2016-10-06T08:25:18", + "TransactionId": 34704380, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 44, + "CustomerInfo": 53434284, + "PaymentType": "Debit Card" + }, + { + "Id": 17918, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2017-11-19T19:36:46", + "TransactionId": 5934839, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 521, + "CustomerInfo": 31147564, + "PaymentType": "Debit Card" + }, + { + "Id": 17919, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-01-13T19:04:57", + "TransactionId": 51840336, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 607, + "CustomerInfo": 65340500, + "PaymentType": "Debit Card" + }, + { + "Id": 17920, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-2", + "TransactionDate": "2019-02-03T08:34:48", + "TransactionId": 65559140, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 567, + "CustomerInfo": 38647302, + "PaymentType": "Debit Card" + }, + { + "Id": 17921, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-10-10T13:27:59", + "TransactionId": 76053399, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 128, + "CustomerInfo": 40811675, + "PaymentType": "Cash" + }, + { + "Id": 17922, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2019-06-01T12:28:57", + "TransactionId": 97742961, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 195, + "CustomerInfo": 83281523, + "PaymentType": "Debit Card" + }, + { + "Id": 17923, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2019-04-10T14:27:01", + "TransactionId": 47580429, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 192, + "CustomerInfo": 17644141, + "PaymentType": "Credit Card" + }, + { + "Id": 17924, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-04-16T16:17:46", + "TransactionId": 35153089, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 723, + "CustomerInfo": 19044656, + "PaymentType": "Credit Card" + }, + { + "Id": 17925, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-07-04T19:14:18", + "TransactionId": 9086715, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 482, + "CustomerInfo": 91534335, + "PaymentType": "Cash" + }, + { + "Id": 17926, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2016-11-17T13:15:10", + "TransactionId": 90112599, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 659, + "CustomerInfo": 7531818, + "PaymentType": "Cash" + }, + { + "Id": 17927, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2019-11-14T10:53:37", + "TransactionId": 26707750, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 72989930, + "PaymentType": "Cash" + }, + { + "Id": 17928, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-12-05T12:37:00", + "TransactionId": 86419079, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 509, + "CustomerInfo": 93491708, + "PaymentType": "Credit Card" + }, + { + "Id": 17929, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-04-17T07:26:41", + "TransactionId": 81160258, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 352, + "CustomerInfo": 81817531, + "PaymentType": "Cash" + }, + { + "Id": 17930, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-3", + "TransactionDate": "2017-01-29T13:57:04", + "TransactionId": 23716651, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 971, + "CustomerInfo": 8407616, + "PaymentType": "Credit Card" + }, + { + "Id": 17931, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-01-07T17:31:38", + "TransactionId": 84016328, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 215, + "CustomerInfo": 97045323, + "PaymentType": "Credit Card" + }, + { + "Id": 17932, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-12-16T18:40:11", + "TransactionId": 46304558, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 696, + "CustomerInfo": 68983290, + "PaymentType": "Cash" + }, + { + "Id": 17933, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-02-24T19:33:10", + "TransactionId": 59487380, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 853, + "CustomerInfo": 7385373, + "PaymentType": "Debit Card" + }, + { + "Id": 17934, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2019-06-21T13:53:02", + "TransactionId": 69840152, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 348, + "CustomerInfo": 6245311, + "PaymentType": "Credit Card" + }, + { + "Id": 17935, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2019-05-04T12:58:28", + "TransactionId": 15103752, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 941, + "CustomerInfo": 44369650, + "PaymentType": "Debit Card" + }, + { + "Id": 17936, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2017-10-08T13:27:42", + "TransactionId": 78839819, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 241, + "CustomerInfo": 47324391, + "PaymentType": "Credit Card" + }, + { + "Id": 17937, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2018-08-30T09:44:47", + "TransactionId": 67796293, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 585, + "CustomerInfo": 66399749, + "PaymentType": "Cash" + }, + { + "Id": 17938, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2019-03-13T16:51:36", + "TransactionId": 48966409, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 255, + "CustomerInfo": 73074537, + "PaymentType": "Credit Card" + }, + { + "Id": 17939, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-08-14T07:39:04", + "TransactionId": 79469316, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 477, + "CustomerInfo": 44316062, + "PaymentType": "Credit Card" + }, + { + "Id": 17940, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2018-03-15T16:56:12", + "TransactionId": 90940444, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 42, + "CustomerInfo": 58822825, + "PaymentType": "Debit Card" + }, + { + "Id": 17941, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2016-12-12T10:36:03", + "TransactionId": 27497278, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 898, + "CustomerInfo": 27428060, + "PaymentType": "Credit Card" + }, + { + "Id": 17942, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2017-12-03T19:39:56", + "TransactionId": 86126319, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 443, + "CustomerInfo": 89670352, + "PaymentType": "Credit Card" + }, + { + "Id": 17943, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2017-02-21T11:18:32", + "TransactionId": 10942941, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 582, + "CustomerInfo": 51562447, + "PaymentType": "Credit Card" + }, + { + "Id": 17944, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-05-26T14:07:52", + "TransactionId": 21499574, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 770, + "CustomerInfo": 73456689, + "PaymentType": "Cash" + }, + { + "Id": 17945, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2016-08-01T10:53:54", + "TransactionId": 33793909, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 572, + "CustomerInfo": 72461907, + "PaymentType": "Credit Card" + }, + { + "Id": 17946, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-12-22T10:10:25", + "TransactionId": 20503977, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 828, + "CustomerInfo": 74531892, + "PaymentType": "Cash" + }, + { + "Id": 17947, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2016-06-11T18:44:12", + "TransactionId": 87497499, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 590, + "CustomerInfo": 18501657, + "PaymentType": "Debit Card" + }, + { + "Id": 17948, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2019-09-18T15:43:55", + "TransactionId": 13094145, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 320, + "CustomerInfo": 14977218, + "PaymentType": "Cash" + }, + { + "Id": 17949, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-2", + "TransactionDate": "2018-02-20T14:44:36", + "TransactionId": 37009394, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 124, + "CustomerInfo": 57707954, + "PaymentType": "Debit Card" + }, + { + "Id": 17950, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-07-12T14:48:37", + "TransactionId": 85704859, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 140, + "CustomerInfo": 36081220, + "PaymentType": "Cash" + }, + { + "Id": 17951, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2016-05-29T14:59:34", + "TransactionId": 90307138, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 56, + "CustomerInfo": 43456239, + "PaymentType": "Debit Card" + }, + { + "Id": 17952, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-2", + "TransactionDate": "2018-01-19T19:49:26", + "TransactionId": 21028508, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 575, + "CustomerInfo": 6587741, + "PaymentType": "Debit Card" + }, + { + "Id": 17953, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2016-07-06T14:23:34", + "TransactionId": 4510357, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 187, + "CustomerInfo": 56589760, + "PaymentType": "Credit Card" + }, + { + "Id": 17954, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2016-05-25T15:19:26", + "TransactionId": 38958062, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 18, + "CustomerInfo": 26830504, + "PaymentType": "Credit Card" + }, + { + "Id": 17955, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2016-10-20T18:14:33", + "TransactionId": 63708543, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 348, + "CustomerInfo": 40809357, + "PaymentType": "Debit Card" + }, + { + "Id": 17956, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2019-11-25T09:19:26", + "TransactionId": 53389626, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 984, + "CustomerInfo": 45949581, + "PaymentType": "Cash" + }, + { + "Id": 17957, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2017-04-10T19:34:19", + "TransactionId": 74068347, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 920, + "CustomerInfo": 70407154, + "PaymentType": "Debit Card" + }, + { + "Id": 17958, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2018-03-08T09:17:00", + "TransactionId": 19627288, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 688, + "CustomerInfo": 39965652, + "PaymentType": "Cash" + }, + { + "Id": 17959, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2017-01-26T11:21:07", + "TransactionId": 45656030, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 214, + "CustomerInfo": 90905914, + "PaymentType": "Credit Card" + }, + { + "Id": 17960, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-08-15T12:46:48", + "TransactionId": 94675082, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 776, + "CustomerInfo": 748276, + "PaymentType": "Debit Card" + }, + { + "Id": 17961, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-1", + "TransactionDate": "2017-10-13T17:10:36", + "TransactionId": 46007, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 790, + "CustomerInfo": 82714355, + "PaymentType": "Cash" + }, + { + "Id": 17962, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2019-10-24T13:44:41", + "TransactionId": 14264551, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 113, + "CustomerInfo": 31748181, + "PaymentType": "Cash" + }, + { + "Id": 17963, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2016-03-08T09:23:11", + "TransactionId": 4781920, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 388, + "CustomerInfo": 59427181, + "PaymentType": "Cash" + }, + { + "Id": 17964, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-4", + "TransactionDate": "2017-10-15T12:15:33", + "TransactionId": 20399367, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 617, + "CustomerInfo": 30550315, + "PaymentType": "Debit Card" + }, + { + "Id": 17965, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-09-15T14:27:36", + "TransactionId": 94707949, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 867, + "CustomerInfo": 90725415, + "PaymentType": "Debit Card" + }, + { + "Id": 17966, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2018-01-21T16:05:05", + "TransactionId": 20072903, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 388, + "CustomerInfo": 94355972, + "PaymentType": "Cash" + }, + { + "Id": 17967, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-06-10T10:15:45", + "TransactionId": 95185781, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 827, + "CustomerInfo": 3506571, + "PaymentType": "Cash" + }, + { + "Id": 17968, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2019-10-15T09:15:33", + "TransactionId": 12337412, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 228, + "CustomerInfo": 82433939, + "PaymentType": "Cash" + }, + { + "Id": 17969, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2018-12-02T15:32:24", + "TransactionId": 39942480, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 244, + "CustomerInfo": 92712825, + "PaymentType": "Cash" + }, + { + "Id": 17970, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2018-10-21T09:10:13", + "TransactionId": 97346483, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 734, + "CustomerInfo": 88415453, + "PaymentType": "Debit Card" + }, + { + "Id": 17971, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2016-08-18T19:58:48", + "TransactionId": 40155999, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 25, + "CustomerInfo": 24249319, + "PaymentType": "Debit Card" + }, + { + "Id": 17972, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2018-09-11T16:53:20", + "TransactionId": 32856673, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 911, + "CustomerInfo": 38649127, + "PaymentType": "Cash" + }, + { + "Id": 17973, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2016-11-13T10:44:07", + "TransactionId": 13581809, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 320, + "CustomerInfo": 93196687, + "PaymentType": "Credit Card" + }, + { + "Id": 17974, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-08-09T13:09:16", + "TransactionId": 36784001, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 472, + "CustomerInfo": 38135441, + "PaymentType": "Cash" + }, + { + "Id": 17975, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2018-01-16T14:07:09", + "TransactionId": 29145821, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 166, + "CustomerInfo": 37118583, + "PaymentType": "Debit Card" + }, + { + "Id": 17976, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2016-04-08T08:25:44", + "TransactionId": 7469967, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 876, + "CustomerInfo": 26990205, + "PaymentType": "Cash" + }, + { + "Id": 17977, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2017-09-20T09:51:59", + "TransactionId": 72663043, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 493, + "CustomerInfo": 53405703, + "PaymentType": "Debit Card" + }, + { + "Id": 17978, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2017-02-16T15:19:44", + "TransactionId": 93007250, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 647, + "CustomerInfo": 67787903, + "PaymentType": "Cash" + }, + { + "Id": 17979, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2018-07-16T13:33:36", + "TransactionId": 89236775, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 491, + "CustomerInfo": 40671527, + "PaymentType": "Credit Card" + }, + { + "Id": 17980, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2016-08-11T11:11:20", + "TransactionId": 48544947, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 746, + "CustomerInfo": 5863877, + "PaymentType": "Debit Card" + }, + { + "Id": 17981, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-3", + "TransactionDate": "2016-03-28T18:21:53", + "TransactionId": 39410455, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 209, + "CustomerInfo": 74480823, + "PaymentType": "Debit Card" + }, + { + "Id": 17982, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2018-03-20T17:24:35", + "TransactionId": 59090471, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 845, + "CustomerInfo": 58069128, + "PaymentType": "Cash" + }, + { + "Id": 17983, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-01-07T14:27:45", + "TransactionId": 7250482, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 289, + "CustomerInfo": 3713266, + "PaymentType": "Cash" + }, + { + "Id": 17984, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-08-15T16:54:46", + "TransactionId": 78920602, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 809, + "CustomerInfo": 17390968, + "PaymentType": "Cash" + }, + { + "Id": 17985, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-07-08T07:41:23", + "TransactionId": 91791341, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 173, + "CustomerInfo": 29189764, + "PaymentType": "Credit Card" + }, + { + "Id": 17986, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-10-10T07:20:47", + "TransactionId": 64534267, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 252, + "CustomerInfo": 3298988, + "PaymentType": "Cash" + }, + { + "Id": 17987, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-4", + "TransactionDate": "2017-10-09T09:06:46", + "TransactionId": 68768846, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 287, + "CustomerInfo": 2608919, + "PaymentType": "Debit Card" + }, + { + "Id": 17988, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2017-05-02T16:01:47", + "TransactionId": 28592221, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 479, + "CustomerInfo": 9124674, + "PaymentType": "Cash" + }, + { + "Id": 17989, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2018-12-04T11:38:59", + "TransactionId": 30236705, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 760, + "CustomerInfo": 21872300, + "PaymentType": "Cash" + }, + { + "Id": 17990, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2017-01-19T08:10:45", + "TransactionId": 47932882, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 689, + "CustomerInfo": 11244765, + "PaymentType": "Cash" + }, + { + "Id": 17991, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-10-17T17:49:03", + "TransactionId": 93400344, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 596, + "CustomerInfo": 52908156, + "PaymentType": "Debit Card" + }, + { + "Id": 17992, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-04-29T19:24:14", + "TransactionId": 32131, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 293, + "CustomerInfo": 22842941, + "PaymentType": "Credit Card" + }, + { + "Id": 17993, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2018-04-24T15:26:38", + "TransactionId": 66477213, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 680, + "CustomerInfo": 61732449, + "PaymentType": "Cash" + }, + { + "Id": 17994, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2016-07-02T07:00:12", + "TransactionId": 36760687, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 815, + "CustomerInfo": 79927009, + "PaymentType": "Debit Card" + }, + { + "Id": 17995, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2018-10-12T11:39:42", + "TransactionId": 92301002, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 780, + "CustomerInfo": 35263070, + "PaymentType": "Debit Card" + }, + { + "Id": 17996, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2017-05-19T10:25:15", + "TransactionId": 74688356, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 307, + "CustomerInfo": 8740775, + "PaymentType": "Credit Card" + }, + { + "Id": 17997, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2016-05-27T14:51:56", + "TransactionId": 33900212, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 516, + "CustomerInfo": 75964424, + "PaymentType": "Cash" + }, + { + "Id": 17998, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-11-07T08:46:28", + "TransactionId": 6382139, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 117, + "CustomerInfo": 52378063, + "PaymentType": "Credit Card" + }, + { + "Id": 17999, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2018-11-08T14:40:34", + "TransactionId": 77986387, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 971, + "CustomerInfo": 91893223, + "PaymentType": "Credit Card" + }, + { + "Id": 18000, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-04-17T11:36:23", + "TransactionId": 34860005, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 974, + "CustomerInfo": 69000036, + "PaymentType": "Debit Card" + }, + { + "Id": 18001, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2019-05-29T08:39:07", + "TransactionId": 3387696, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 574, + "CustomerInfo": 23891242, + "PaymentType": "Credit Card" + }, + { + "Id": 18002, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2017-12-13T18:04:19", + "TransactionId": 39110366, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 705, + "CustomerInfo": 44400491, + "PaymentType": "Cash" + }, + { + "Id": 18003, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2017-12-18T08:36:32", + "TransactionId": 63711696, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 147, + "CustomerInfo": 5958219, + "PaymentType": "Debit Card" + }, + { + "Id": 18004, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2016-07-17T09:11:57", + "TransactionId": 1640069, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 692, + "CustomerInfo": 15166503, + "PaymentType": "Debit Card" + }, + { + "Id": 18005, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-06-18T14:14:12", + "TransactionId": 42916538, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 284, + "CustomerInfo": 71686077, + "PaymentType": "Debit Card" + }, + { + "Id": 18006, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2018-02-01T19:24:58", + "TransactionId": 35306333, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 889, + "CustomerInfo": 97042837, + "PaymentType": "Credit Card" + }, + { + "Id": 18007, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-02-22T16:58:48", + "TransactionId": 43247983, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 984, + "CustomerInfo": 66626690, + "PaymentType": "Debit Card" + }, + { + "Id": 18008, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2016-02-26T08:16:22", + "TransactionId": 92974384, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 427, + "CustomerInfo": 75247660, + "PaymentType": "Cash" + }, + { + "Id": 18009, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2017-11-05T13:54:20", + "TransactionId": 73385946, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 207, + "CustomerInfo": 26006022, + "PaymentType": "Cash" + }, + { + "Id": 18010, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-01-20T08:07:44", + "TransactionId": 30249538, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 234, + "CustomerInfo": 54516586, + "PaymentType": "Cash" + }, + { + "Id": 18011, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-08-26T09:21:27", + "TransactionId": 9403100, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 339, + "CustomerInfo": 66844459, + "PaymentType": "Credit Card" + }, + { + "Id": 18012, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-01-26T12:51:07", + "TransactionId": 48392996, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 590, + "CustomerInfo": 81215502, + "PaymentType": "Debit Card" + }, + { + "Id": 18013, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-3", + "TransactionDate": "2018-12-29T10:22:13", + "TransactionId": 31259504, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 784, + "CustomerInfo": 29524609, + "PaymentType": "Cash" + }, + { + "Id": 18014, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-06-26T07:48:00", + "TransactionId": 37557893, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 251, + "CustomerInfo": 73254692, + "PaymentType": "Debit Card" + }, + { + "Id": 18015, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2019-02-28T17:01:15", + "TransactionId": 11221229, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 429, + "CustomerInfo": 54764334, + "PaymentType": "Debit Card" + }, + { + "Id": 18016, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2019-09-26T11:12:03", + "TransactionId": 62456980, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 833, + "CustomerInfo": 2879098, + "PaymentType": "Debit Card" + }, + { + "Id": 18017, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2017-04-07T13:41:23", + "TransactionId": 49283158, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 291, + "CustomerInfo": 78244084, + "PaymentType": "Credit Card" + }, + { + "Id": 18018, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2016-11-08T16:01:47", + "TransactionId": 72940836, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 982, + "CustomerInfo": 40554551, + "PaymentType": "Cash" + }, + { + "Id": 18019, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2017-02-10T12:00:09", + "TransactionId": 22851661, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 400, + "CustomerInfo": 95181072, + "PaymentType": "Debit Card" + }, + { + "Id": 18020, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-06-01T14:51:48", + "TransactionId": 92335101, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 633, + "CustomerInfo": 29023867, + "PaymentType": "Debit Card" + }, + { + "Id": 18021, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-03-23T11:28:45", + "TransactionId": 71954783, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 559, + "CustomerInfo": 18946407, + "PaymentType": "Credit Card" + }, + { + "Id": 18022, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2017-06-12T08:51:56", + "TransactionId": 79481996, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 801, + "CustomerInfo": 38543486, + "PaymentType": "Debit Card" + }, + { + "Id": 18023, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-5", + "TransactionDate": "2016-10-19T16:34:28", + "TransactionId": 70885035, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 462, + "CustomerInfo": 6019334, + "PaymentType": "Cash" + }, + { + "Id": 18024, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2017-07-18T12:48:23", + "TransactionId": 36487964, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 584, + "CustomerInfo": 43632336, + "PaymentType": "Cash" + }, + { + "Id": 18025, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-07-11T16:18:29", + "TransactionId": 78668507, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 648, + "CustomerInfo": 61657610, + "PaymentType": "Cash" + }, + { + "Id": 18026, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2017-03-05T07:48:52", + "TransactionId": 21961680, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 9, + "CustomerInfo": 16278065, + "PaymentType": "Debit Card" + }, + { + "Id": 18027, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-4", + "TransactionDate": "2019-03-04T07:31:00", + "TransactionId": 60821336, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 28, + "CustomerInfo": 37441890, + "PaymentType": "Cash" + }, + { + "Id": 18028, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2019-09-29T12:49:15", + "TransactionId": 40337849, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 935, + "CustomerInfo": 79451937, + "PaymentType": "Cash" + }, + { + "Id": 18029, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2017-11-23T19:19:03", + "TransactionId": 76316915, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 467, + "CustomerInfo": 89632337, + "PaymentType": "Debit Card" + }, + { + "Id": 18030, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2019-05-17T16:14:18", + "TransactionId": 69148458, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 740, + "CustomerInfo": 95066524, + "PaymentType": "Credit Card" + }, + { + "Id": 18031, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2016-05-01T16:57:30", + "TransactionId": 52813034, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 971, + "CustomerInfo": 33600747, + "PaymentType": "Debit Card" + }, + { + "Id": 18032, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2016-11-12T18:14:59", + "TransactionId": 4101263, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 792, + "CustomerInfo": 39767171, + "PaymentType": "Cash" + }, + { + "Id": 18033, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2017-11-08T18:52:25", + "TransactionId": 72025191, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 50, + "CustomerInfo": 10261930, + "PaymentType": "Credit Card" + }, + { + "Id": 18034, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2019-02-13T08:02:15", + "TransactionId": 16518152, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 509, + "CustomerInfo": 86515447, + "PaymentType": "Cash" + }, + { + "Id": 18035, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2017-06-08T13:24:58", + "TransactionId": 8544136, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 64378112, + "PaymentType": "Cash" + }, + { + "Id": 18036, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2017-02-16T08:51:04", + "TransactionId": 57753300, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 901, + "CustomerInfo": 20855462, + "PaymentType": "Debit Card" + }, + { + "Id": 18037, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2018-02-26T14:36:58", + "TransactionId": 82596716, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 968, + "CustomerInfo": 55113337, + "PaymentType": "Debit Card" + }, + { + "Id": 18038, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2016-10-29T07:34:11", + "TransactionId": 53538672, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 840, + "CustomerInfo": 57637285, + "PaymentType": "Cash" + }, + { + "Id": 18039, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2017-03-31T19:44:41", + "TransactionId": 18415137, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 559, + "CustomerInfo": 78238620, + "PaymentType": "Credit Card" + }, + { + "Id": 18040, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-07-01T07:58:22", + "TransactionId": 87361277, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 566, + "CustomerInfo": 53780889, + "PaymentType": "Debit Card" + }, + { + "Id": 18041, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-11-23T16:17:02", + "TransactionId": 17764385, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 726, + "CustomerInfo": 20221779, + "PaymentType": "Credit Card" + }, + { + "Id": 18042, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2016-05-08T08:28:36", + "TransactionId": 57995896, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 329, + "CustomerInfo": 29380759, + "PaymentType": "Debit Card" + }, + { + "Id": 18043, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2017-12-06T13:26:50", + "TransactionId": 5671301, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 394, + "CustomerInfo": 67125220, + "PaymentType": "Debit Card" + }, + { + "Id": 18044, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2018-11-19T07:53:02", + "TransactionId": 52806078, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 81, + "CustomerInfo": 18536823, + "PaymentType": "Debit Card" + }, + { + "Id": 18045, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2018-06-21T16:58:22", + "TransactionId": 14951819, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 831, + "CustomerInfo": 57175635, + "PaymentType": "Credit Card" + }, + { + "Id": 18046, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2018-04-13T08:56:41", + "TransactionId": 65781624, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 887, + "CustomerInfo": 75019840, + "PaymentType": "Credit Card" + }, + { + "Id": 18047, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2016-02-09T19:51:10", + "TransactionId": 91064501, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 314, + "CustomerInfo": 86429413, + "PaymentType": "Credit Card" + }, + { + "Id": 18048, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2018-01-13T08:18:58", + "TransactionId": 39930410, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 726, + "CustomerInfo": 83791794, + "PaymentType": "Debit Card" + }, + { + "Id": 18049, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2018-03-28T16:18:12", + "TransactionId": 85351269, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 79, + "CustomerInfo": 31797070, + "PaymentType": "Debit Card" + }, + { + "Id": 18050, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2018-03-01T07:12:00", + "TransactionId": 27640581, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 413, + "CustomerInfo": 23520628, + "PaymentType": "Credit Card" + }, + { + "Id": 18051, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-09-30T12:03:45", + "TransactionId": 4319777, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 914, + "CustomerInfo": 45203665, + "PaymentType": "Credit Card" + }, + { + "Id": 18052, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-08-27T09:11:31", + "TransactionId": 6219575, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 544, + "CustomerInfo": 88497322, + "PaymentType": "Credit Card" + }, + { + "Id": 18053, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2018-11-11T15:23:11", + "TransactionId": 37104654, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 193, + "CustomerInfo": 42269361, + "PaymentType": "Debit Card" + }, + { + "Id": 18054, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2016-04-13T10:31:52", + "TransactionId": 11149987, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 739, + "CustomerInfo": 35584204, + "PaymentType": "Credit Card" + }, + { + "Id": 18055, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2017-02-03T10:09:33", + "TransactionId": 88678621, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 77655067, + "PaymentType": "Cash" + }, + { + "Id": 18056, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-11-27T17:53:57", + "TransactionId": 60763952, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 809, + "CustomerInfo": 91922193, + "PaymentType": "Debit Card" + }, + { + "Id": 18057, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2016-10-20T13:09:42", + "TransactionId": 39508925, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 605, + "CustomerInfo": 80477186, + "PaymentType": "Credit Card" + }, + { + "Id": 18058, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-01-21T11:00:14", + "TransactionId": 92736367, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 289, + "CustomerInfo": 20342546, + "PaymentType": "Debit Card" + }, + { + "Id": 18059, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2018-10-04T13:27:50", + "TransactionId": 96576162, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 313, + "CustomerInfo": 38013875, + "PaymentType": "Cash" + }, + { + "Id": 18060, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-5", + "TransactionDate": "2016-05-29T16:12:09", + "TransactionId": 99739838, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 433, + "CustomerInfo": 4823586, + "PaymentType": "Debit Card" + }, + { + "Id": 18061, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-3", + "TransactionDate": "2018-04-13T18:32:59", + "TransactionId": 43018436, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 359, + "CustomerInfo": 29329114, + "PaymentType": "Credit Card" + }, + { + "Id": 18062, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2017-04-18T19:04:31", + "TransactionId": 46215834, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 473, + "CustomerInfo": 24028654, + "PaymentType": "Credit Card" + }, + { + "Id": 18063, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2019-04-10T19:09:33", + "TransactionId": 35638934, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 106, + "CustomerInfo": 98077692, + "PaymentType": "Cash" + }, + { + "Id": 18064, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-10-11T14:57:50", + "TransactionId": 98123185, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 921, + "CustomerInfo": 12202828, + "PaymentType": "Debit Card" + }, + { + "Id": 18065, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2019-03-13T19:22:48", + "TransactionId": 46603436, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 3, + "CustomerInfo": 8210485, + "PaymentType": "Cash" + }, + { + "Id": 18066, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-12-23T19:38:21", + "TransactionId": 95431350, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 998, + "CustomerInfo": 89021114, + "PaymentType": "Cash" + }, + { + "Id": 18067, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-02-06T18:29:23", + "TransactionId": 15342638, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 840, + "CustomerInfo": 19084429, + "PaymentType": "Cash" + }, + { + "Id": 18068, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-1", + "TransactionDate": "2016-12-10T12:42:03", + "TransactionId": 99449844, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 981, + "CustomerInfo": 78843884, + "PaymentType": "Debit Card" + }, + { + "Id": 18069, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2018-09-15T07:14:36", + "TransactionId": 54941618, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 578, + "CustomerInfo": 81921320, + "PaymentType": "Credit Card" + }, + { + "Id": 18070, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2016-01-07T11:30:55", + "TransactionId": 57154510, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 31680961, + "PaymentType": "Credit Card" + }, + { + "Id": 18071, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2019-10-29T17:57:16", + "TransactionId": 58632703, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 409, + "CustomerInfo": 21800298, + "PaymentType": "Credit Card" + }, + { + "Id": 18072, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-05-07T14:57:59", + "TransactionId": 47845583, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 723, + "CustomerInfo": 5498550, + "PaymentType": "Cash" + }, + { + "Id": 18073, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2016-02-05T10:41:40", + "TransactionId": 82709459, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 239, + "CustomerInfo": 30642603, + "PaymentType": "Debit Card" + }, + { + "Id": 18074, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-1", + "TransactionDate": "2017-09-14T13:40:13", + "TransactionId": 74287889, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 723, + "CustomerInfo": 48496486, + "PaymentType": "Cash" + }, + { + "Id": 18075, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2018-05-03T13:26:33", + "TransactionId": 92760776, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 184, + "CustomerInfo": 47470611, + "PaymentType": "Credit Card" + }, + { + "Id": 18076, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-08-02T12:56:36", + "TransactionId": 63671444, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 838, + "CustomerInfo": 51239134, + "PaymentType": "Credit Card" + }, + { + "Id": 18077, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2019-02-06T12:40:54", + "TransactionId": 34820762, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 274, + "CustomerInfo": 60617278, + "PaymentType": "Cash" + }, + { + "Id": 18078, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2019-07-21T10:36:37", + "TransactionId": 88338258, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 985, + "CustomerInfo": 75317501, + "PaymentType": "Credit Card" + }, + { + "Id": 18079, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2016-09-19T07:29:08", + "TransactionId": 63021053, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 395, + "CustomerInfo": 50499478, + "PaymentType": "Credit Card" + }, + { + "Id": 18080, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2018-10-06T08:06:09", + "TransactionId": 86295734, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 94, + "CustomerInfo": 95040187, + "PaymentType": "Credit Card" + }, + { + "Id": 18081, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2017-03-10T15:32:33", + "TransactionId": 48476262, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 511, + "CustomerInfo": 59307406, + "PaymentType": "Credit Card" + }, + { + "Id": 18082, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-04-21T10:15:45", + "TransactionId": 51735423, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 243, + "CustomerInfo": 8595797, + "PaymentType": "Debit Card" + }, + { + "Id": 18083, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2016-04-28T11:51:48", + "TransactionId": 28938591, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 418, + "CustomerInfo": 89353819, + "PaymentType": "Debit Card" + }, + { + "Id": 18084, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2016-03-20T13:27:50", + "TransactionId": 37789576, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 838, + "CustomerInfo": 90514648, + "PaymentType": "Cash" + }, + { + "Id": 18085, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-12-20T19:17:28", + "TransactionId": 19881887, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 576, + "CustomerInfo": 29329436, + "PaymentType": "Debit Card" + }, + { + "Id": 18086, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-4", + "TransactionDate": "2017-03-03T18:44:47", + "TransactionId": 9916351, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 547, + "CustomerInfo": 25265185, + "PaymentType": "Cash" + }, + { + "Id": 18087, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-12-17T11:19:58", + "TransactionId": 82150695, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 112, + "CustomerInfo": 43853305, + "PaymentType": "Cash" + }, + { + "Id": 18088, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2016-03-06T19:57:30", + "TransactionId": 76218760, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 477, + "CustomerInfo": 61605789, + "PaymentType": "Cash" + }, + { + "Id": 18089, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-11-02T17:06:00", + "TransactionId": 69565311, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 221, + "CustomerInfo": 4531532, + "PaymentType": "Cash" + }, + { + "Id": 18090, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2019-09-13T16:12:35", + "TransactionId": 28174412, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 502, + "CustomerInfo": 48541232, + "PaymentType": "Cash" + }, + { + "Id": 18091, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-1", + "TransactionDate": "2019-03-01T13:50:44", + "TransactionId": 8139809, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 75, + "CustomerInfo": 13678232, + "PaymentType": "Debit Card" + }, + { + "Id": 18092, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2019-07-04T08:25:00", + "TransactionId": 61631201, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 125, + "CustomerInfo": 88282190, + "PaymentType": "Debit Card" + }, + { + "Id": 18093, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-08-22T18:26:21", + "TransactionId": 43254001, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 783, + "CustomerInfo": 20851735, + "PaymentType": "Cash" + }, + { + "Id": 18094, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2017-04-27T12:53:00", + "TransactionId": 99433866, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 529, + "CustomerInfo": 2292687, + "PaymentType": "Debit Card" + }, + { + "Id": 18095, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2017-01-05T15:53:25", + "TransactionId": 41150296, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 496, + "CustomerInfo": 12190705, + "PaymentType": "Cash" + }, + { + "Id": 18096, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2019-01-26T19:56:47", + "TransactionId": 16061559, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 53, + "CustomerInfo": 97131556, + "PaymentType": "Debit Card" + }, + { + "Id": 18097, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2018-01-31T07:47:25", + "TransactionId": 7905335, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 160, + "CustomerInfo": 88883480, + "PaymentType": "Cash" + }, + { + "Id": 18098, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2016-11-05T12:00:17", + "TransactionId": 91383471, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 508, + "CustomerInfo": 80283148, + "PaymentType": "Cash" + }, + { + "Id": 18099, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2018-09-07T10:56:30", + "TransactionId": 43363627, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 7, + "CustomerInfo": 3967364, + "PaymentType": "Credit Card" + }, + { + "Id": 18100, + "Region": "NA", + "Country": "Trinidad and Tobago", + "Code": "TT", + "StoreId": "TT-5", + "TransactionDate": "2016-06-06T13:06:40", + "TransactionId": 50137776, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 124, + "CustomerInfo": 14988383, + "PaymentType": "Debit Card" + }, + { + "Id": 18101, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2017-10-25T07:12:43", + "TransactionId": 74651862, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 21, + "CustomerInfo": 68730597, + "PaymentType": "Credit Card" + }, + { + "Id": 18102, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-12-21T10:06:06", + "TransactionId": 96077194, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 983, + "CustomerInfo": 1205770, + "PaymentType": "Debit Card" + }, + { + "Id": 18103, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2017-12-31T10:52:36", + "TransactionId": 94368284, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 133, + "CustomerInfo": 93526639, + "PaymentType": "Credit Card" + }, + { + "Id": 18104, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-5", + "TransactionDate": "2017-06-18T15:21:27", + "TransactionId": 78576499, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 2, + "CustomerInfo": 81616204, + "PaymentType": "Debit Card" + }, + { + "Id": 18105, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2017-06-10T07:05:14", + "TransactionId": 29862668, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 645, + "CustomerInfo": 24781428, + "PaymentType": "Debit Card" + }, + { + "Id": 18106, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2018-02-08T18:54:52", + "TransactionId": 60945222, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 945, + "CustomerInfo": 87974714, + "PaymentType": "Credit Card" + }, + { + "Id": 18107, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-5", + "TransactionDate": "2016-07-03T16:18:12", + "TransactionId": 1791073, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 177, + "CustomerInfo": 40075605, + "PaymentType": "Debit Card" + }, + { + "Id": 18108, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2016-12-05T11:57:33", + "TransactionId": 36953177, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 95, + "CustomerInfo": 3696863, + "PaymentType": "Debit Card" + }, + { + "Id": 18109, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-09-28T19:02:12", + "TransactionId": 3858947, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 310, + "CustomerInfo": 3684388, + "PaymentType": "Debit Card" + }, + { + "Id": 18110, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-4", + "TransactionDate": "2018-07-02T07:16:11", + "TransactionId": 79473700, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 165, + "CustomerInfo": 24729994, + "PaymentType": "Cash" + }, + { + "Id": 18111, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2018-12-30T12:52:25", + "TransactionId": 36839184, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 586, + "CustomerInfo": 10218678, + "PaymentType": "Debit Card" + }, + { + "Id": 18112, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2019-04-01T18:25:55", + "TransactionId": 37259203, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 569, + "CustomerInfo": 53776947, + "PaymentType": "Debit Card" + }, + { + "Id": 18113, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2018-11-17T14:33:56", + "TransactionId": 60416687, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 875, + "CustomerInfo": 3911784, + "PaymentType": "Credit Card" + }, + { + "Id": 18114, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2018-05-11T14:19:41", + "TransactionId": 90012576, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 189, + "CustomerInfo": 83825945, + "PaymentType": "Cash" + }, + { + "Id": 18115, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2018-04-05T13:21:04", + "TransactionId": 90758750, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 117, + "CustomerInfo": 28251374, + "PaymentType": "Credit Card" + }, + { + "Id": 18116, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-04-26T17:15:22", + "TransactionId": 78955609, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 929, + "CustomerInfo": 42158966, + "PaymentType": "Cash" + }, + { + "Id": 18117, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2016-09-18T15:42:12", + "TransactionId": 41785743, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 58, + "CustomerInfo": 68783385, + "PaymentType": "Debit Card" + }, + { + "Id": 18118, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-01-07T12:16:34", + "TransactionId": 51809355, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 284, + "CustomerInfo": 62117022, + "PaymentType": "Credit Card" + }, + { + "Id": 18119, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2019-06-20T08:41:08", + "TransactionId": 38292130, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 319, + "CustomerInfo": 32666535, + "PaymentType": "Debit Card" + }, + { + "Id": 18120, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2019-10-25T14:12:29", + "TransactionId": 66943219, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 945, + "CustomerInfo": 81951988, + "PaymentType": "Credit Card" + }, + { + "Id": 18121, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-07-08T19:24:40", + "TransactionId": 3923232, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 332, + "CustomerInfo": 62877528, + "PaymentType": "Debit Card" + }, + { + "Id": 18122, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-01-18T12:44:04", + "TransactionId": 9902981, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 155, + "CustomerInfo": 87984575, + "PaymentType": "Debit Card" + }, + { + "Id": 18123, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2016-07-07T12:05:02", + "TransactionId": 92354852, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 992, + "CustomerInfo": 36071240, + "PaymentType": "Cash" + }, + { + "Id": 18124, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2017-12-05T12:43:21", + "TransactionId": 76882361, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 569, + "CustomerInfo": 61335337, + "PaymentType": "Debit Card" + }, + { + "Id": 18125, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-2", + "TransactionDate": "2016-09-05T14:38:33", + "TransactionId": 89914111, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 575, + "CustomerInfo": 77500228, + "PaymentType": "Credit Card" + }, + { + "Id": 18126, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-4", + "TransactionDate": "2016-08-31T17:11:11", + "TransactionId": 71555282, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 184, + "CustomerInfo": 75261395, + "PaymentType": "Credit Card" + }, + { + "Id": 18127, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2016-01-01T14:48:03", + "TransactionId": 75109436, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 322, + "CustomerInfo": 99328686, + "PaymentType": "Credit Card" + }, + { + "Id": 18128, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-2", + "TransactionDate": "2019-03-27T15:31:49", + "TransactionId": 60157797, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 206, + "CustomerInfo": 7983864, + "PaymentType": "Credit Card" + }, + { + "Id": 18129, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2019-04-30T09:47:31", + "TransactionId": 78046864, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 926, + "CustomerInfo": 85824400, + "PaymentType": "Debit Card" + }, + { + "Id": 18130, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2016-05-13T17:25:44", + "TransactionId": 38912622, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 394, + "CustomerInfo": 75437244, + "PaymentType": "Debit Card" + }, + { + "Id": 18131, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-2", + "TransactionDate": "2018-07-09T08:07:52", + "TransactionId": 24557715, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 736, + "CustomerInfo": 75272825, + "PaymentType": "Debit Card" + }, + { + "Id": 18132, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2018-01-06T08:07:26", + "TransactionId": 25682500, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 113, + "CustomerInfo": 52089585, + "PaymentType": "Cash" + }, + { + "Id": 18133, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2018-12-07T17:56:15", + "TransactionId": 27756200, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 3, + "CustomerInfo": 71269640, + "PaymentType": "Debit Card" + }, + { + "Id": 18134, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2018-01-22T19:59:31", + "TransactionId": 10518229, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 963, + "CustomerInfo": 36392032, + "PaymentType": "Cash" + }, + { + "Id": 18135, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2016-02-16T11:48:12", + "TransactionId": 62005075, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 417, + "CustomerInfo": 88729331, + "PaymentType": "Cash" + }, + { + "Id": 18136, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2017-04-17T14:49:47", + "TransactionId": 70651961, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 247, + "CustomerInfo": 96687642, + "PaymentType": "Cash" + }, + { + "Id": 18137, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2017-02-09T16:20:12", + "TransactionId": 6169696, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 497, + "CustomerInfo": 16276388, + "PaymentType": "Credit Card" + }, + { + "Id": 18138, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2016-12-19T19:05:23", + "TransactionId": 36871187, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 1000, + "CustomerInfo": 92946276, + "PaymentType": "Cash" + }, + { + "Id": 18139, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-04-30T16:46:16", + "TransactionId": 29989067, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 470, + "CustomerInfo": 38963580, + "PaymentType": "Debit Card" + }, + { + "Id": 18140, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-4", + "TransactionDate": "2016-07-21T13:00:12", + "TransactionId": 88499922, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 925, + "CustomerInfo": 6183334, + "PaymentType": "Debit Card" + }, + { + "Id": 18141, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-05-03T07:16:19", + "TransactionId": 11975274, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 918, + "CustomerInfo": 9506100, + "PaymentType": "Debit Card" + }, + { + "Id": 18142, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2018-04-29T17:10:19", + "TransactionId": 20224326, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 877, + "CustomerInfo": 61732022, + "PaymentType": "Debit Card" + }, + { + "Id": 18143, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2018-05-16T15:17:08", + "TransactionId": 82884114, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 853, + "CustomerInfo": 85225389, + "PaymentType": "Cash" + }, + { + "Id": 18144, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-08-29T15:39:19", + "TransactionId": 79982429, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 834, + "CustomerInfo": 71603057, + "PaymentType": "Cash" + }, + { + "Id": 18145, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2017-12-04T14:49:03", + "TransactionId": 82195, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 794, + "CustomerInfo": 7110699, + "PaymentType": "Debit Card" + }, + { + "Id": 18146, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-05-13T17:28:36", + "TransactionId": 27583868, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 309, + "CustomerInfo": 13389016, + "PaymentType": "Credit Card" + }, + { + "Id": 18147, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2019-09-13T12:42:03", + "TransactionId": 96500450, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 70, + "CustomerInfo": 3251111, + "PaymentType": "Credit Card" + }, + { + "Id": 18148, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-2", + "TransactionDate": "2019-06-29T14:32:21", + "TransactionId": 78638148, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 815, + "CustomerInfo": 35519916, + "PaymentType": "Cash" + }, + { + "Id": 18149, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-2", + "TransactionDate": "2018-02-10T17:23:25", + "TransactionId": 22193458, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 128, + "CustomerInfo": 17915022, + "PaymentType": "Credit Card" + }, + { + "Id": 18150, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-1", + "TransactionDate": "2018-12-27T10:16:02", + "TransactionId": 39891012, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 376, + "CustomerInfo": 53442397, + "PaymentType": "Cash" + }, + { + "Id": 18151, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2017-07-05T07:40:05", + "TransactionId": 93756514, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 539, + "CustomerInfo": 15842417, + "PaymentType": "Debit Card" + }, + { + "Id": 18152, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2016-03-02T16:54:55", + "TransactionId": 2342668, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 761, + "CustomerInfo": 63293326, + "PaymentType": "Credit Card" + }, + { + "Id": 18153, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-12-18T19:13:44", + "TransactionId": 56329403, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 561, + "CustomerInfo": 81778346, + "PaymentType": "Cash" + }, + { + "Id": 18154, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2017-07-26T10:30:09", + "TransactionId": 57418008, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 179, + "CustomerInfo": 22382489, + "PaymentType": "Debit Card" + }, + { + "Id": 18155, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2017-12-14T13:44:59", + "TransactionId": 63635224, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 894, + "CustomerInfo": 57012589, + "PaymentType": "Credit Card" + }, + { + "Id": 18156, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-5", + "TransactionDate": "2017-10-04T17:05:17", + "TransactionId": 74291913, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 143, + "CustomerInfo": 85775451, + "PaymentType": "Debit Card" + }, + { + "Id": 18157, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-4", + "TransactionDate": "2019-06-08T19:41:40", + "TransactionId": 15679845, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 343, + "CustomerInfo": 53341463, + "PaymentType": "Credit Card" + }, + { + "Id": 18158, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-12-31T18:43:03", + "TransactionId": 33262456, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 240, + "CustomerInfo": 14836624, + "PaymentType": "Debit Card" + }, + { + "Id": 18159, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2017-04-03T17:14:21", + "TransactionId": 59654869, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 267, + "CustomerInfo": 70228054, + "PaymentType": "Credit Card" + }, + { + "Id": 18160, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2017-11-26T14:25:44", + "TransactionId": 66183828, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 299, + "CustomerInfo": 66668662, + "PaymentType": "Debit Card" + }, + { + "Id": 18161, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-08-18T17:21:24", + "TransactionId": 37630478, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 41, + "CustomerInfo": 38752683, + "PaymentType": "Debit Card" + }, + { + "Id": 18162, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-3", + "TransactionDate": "2017-01-03T17:43:26", + "TransactionId": 69354232, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 930, + "CustomerInfo": 99136441, + "PaymentType": "Debit Card" + }, + { + "Id": 18163, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2019-12-11T13:55:12", + "TransactionId": 79938805, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 163, + "CustomerInfo": 32041143, + "PaymentType": "Credit Card" + }, + { + "Id": 18164, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2018-12-09T14:41:34", + "TransactionId": 81488809, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 185, + "CustomerInfo": 94635256, + "PaymentType": "Cash" + }, + { + "Id": 18165, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2016-11-06T14:07:44", + "TransactionId": 38783103, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 124, + "CustomerInfo": 57782691, + "PaymentType": "Cash" + }, + { + "Id": 18166, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-4", + "TransactionDate": "2017-06-29T11:35:05", + "TransactionId": 71884397, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 123, + "CustomerInfo": 30789444, + "PaymentType": "Debit Card" + }, + { + "Id": 18167, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-01-19T18:30:49", + "TransactionId": 44239526, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 15, + "CustomerInfo": 64119430, + "PaymentType": "Credit Card" + }, + { + "Id": 18168, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2016-06-02T19:19:55", + "TransactionId": 93495786, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 229, + "CustomerInfo": 30556401, + "PaymentType": "Cash" + }, + { + "Id": 18169, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2019-09-07T19:27:59", + "TransactionId": 5675875, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 402, + "CustomerInfo": 6279898, + "PaymentType": "Credit Card" + }, + { + "Id": 18170, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-2", + "TransactionDate": "2018-05-31T13:50:53", + "TransactionId": 44424523, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 276, + "CustomerInfo": 88909564, + "PaymentType": "Cash" + }, + { + "Id": 18171, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-3", + "TransactionDate": "2019-05-22T14:05:25", + "TransactionId": 43904406, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 201, + "CustomerInfo": 56872314, + "PaymentType": "Debit Card" + }, + { + "Id": 18172, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2017-08-25T11:17:14", + "TransactionId": 54585829, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 325, + "CustomerInfo": 54397874, + "PaymentType": "Cash" + }, + { + "Id": 18173, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-11-03T18:46:57", + "TransactionId": 57658889, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 19, + "CustomerInfo": 50757517, + "PaymentType": "Cash" + }, + { + "Id": 18174, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-03-18T17:53:05", + "TransactionId": 61009611, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 593, + "CustomerInfo": 91919899, + "PaymentType": "Cash" + }, + { + "Id": 18175, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-10-08T11:27:27", + "TransactionId": 35194824, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 440, + "CustomerInfo": 2776870, + "PaymentType": "Credit Card" + }, + { + "Id": 18176, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2016-09-01T18:39:01", + "TransactionId": 35502325, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 478, + "CustomerInfo": 35555115, + "PaymentType": "Cash" + }, + { + "Id": 18177, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-09-28T07:40:31", + "TransactionId": 52765684, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 630, + "CustomerInfo": 9662379, + "PaymentType": "Cash" + }, + { + "Id": 18178, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-5", + "TransactionDate": "2018-05-03T17:46:02", + "TransactionId": 86603014, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 180, + "CustomerInfo": 88301118, + "PaymentType": "Credit Card" + }, + { + "Id": 18179, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-1", + "TransactionDate": "2019-05-23T18:33:50", + "TransactionId": 3471808, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 120, + "CustomerInfo": 20489670, + "PaymentType": "Cash" + }, + { + "Id": 18180, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2018-01-04T10:02:38", + "TransactionId": 95556214, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 908, + "CustomerInfo": 17096283, + "PaymentType": "Debit Card" + }, + { + "Id": 18181, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-1", + "TransactionDate": "2018-06-24T13:49:26", + "TransactionId": 65312208, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 383, + "CustomerInfo": 1408061, + "PaymentType": "Credit Card" + }, + { + "Id": 18182, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2017-07-16T11:34:05", + "TransactionId": 68745910, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 808, + "CustomerInfo": 98254448, + "PaymentType": "Credit Card" + }, + { + "Id": 18183, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-04-21T08:31:29", + "TransactionId": 91817002, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 660, + "CustomerInfo": 90946426, + "PaymentType": "Credit Card" + }, + { + "Id": 18184, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2017-01-07T11:33:39", + "TransactionId": 50591448, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 892, + "CustomerInfo": 909309, + "PaymentType": "Cash" + }, + { + "Id": 18185, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2016-04-05T10:42:49", + "TransactionId": 47769379, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 971, + "CustomerInfo": 51454016, + "PaymentType": "Debit Card" + }, + { + "Id": 18186, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2019-09-29T15:45:22", + "TransactionId": 48223190, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 623, + "CustomerInfo": 32761525, + "PaymentType": "Cash" + }, + { + "Id": 18187, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2016-12-14T15:12:23", + "TransactionId": 49120280, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 733, + "CustomerInfo": 50056433, + "PaymentType": "Debit Card" + }, + { + "Id": 18188, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2019-08-30T18:32:59", + "TransactionId": 33828246, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 267, + "CustomerInfo": 61596151, + "PaymentType": "Debit Card" + }, + { + "Id": 18189, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2019-08-28T08:08:18", + "TransactionId": 6899088, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 841, + "CustomerInfo": 88877427, + "PaymentType": "Credit Card" + }, + { + "Id": 18190, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2016-01-25T19:59:31", + "TransactionId": 51558707, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 258, + "CustomerInfo": 25821849, + "PaymentType": "Credit Card" + }, + { + "Id": 18191, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-1", + "TransactionDate": "2016-02-26T19:07:58", + "TransactionId": 8817893, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 830, + "CustomerInfo": 17311207, + "PaymentType": "Debit Card" + }, + { + "Id": 18192, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2019-11-07T14:13:47", + "TransactionId": 84973895, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 39, + "CustomerInfo": 37784174, + "PaymentType": "Debit Card" + }, + { + "Id": 18193, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2019-04-11T10:52:54", + "TransactionId": 34673379, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 569, + "CustomerInfo": 74593096, + "PaymentType": "Debit Card" + }, + { + "Id": 18194, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-04-08T08:02:59", + "TransactionId": 45615914, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 344, + "CustomerInfo": 91248301, + "PaymentType": "Cash" + }, + { + "Id": 18195, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-02-15T09:27:56", + "TransactionId": 77881589, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 862, + "CustomerInfo": 50273012, + "PaymentType": "Credit Card" + }, + { + "Id": 18196, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2017-12-21T19:21:22", + "TransactionId": 49477729, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 296, + "CustomerInfo": 85324552, + "PaymentType": "Credit Card" + }, + { + "Id": 18197, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2016-08-10T11:03:50", + "TransactionId": 34770597, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 912, + "CustomerInfo": 47934806, + "PaymentType": "Debit Card" + }, + { + "Id": 18198, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2017-12-25T09:37:26", + "TransactionId": 80985265, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 955, + "CustomerInfo": 77107938, + "PaymentType": "Cash" + }, + { + "Id": 18199, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2019-07-06T11:13:21", + "TransactionId": 46320075, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 441, + "CustomerInfo": 34445848, + "PaymentType": "Cash" + }, + { + "Id": 18200, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2018-12-20T16:54:46", + "TransactionId": 44182367, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 770, + "CustomerInfo": 7705380, + "PaymentType": "Credit Card" + }, + { + "Id": 18201, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2019-01-18T15:00:09", + "TransactionId": 94032133, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 826, + "CustomerInfo": 19227594, + "PaymentType": "Debit Card" + }, + { + "Id": 18202, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2017-07-02T07:47:51", + "TransactionId": 47549251, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 980, + "CustomerInfo": 13041288, + "PaymentType": "Cash" + }, + { + "Id": 18203, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2019-01-20T09:29:57", + "TransactionId": 77444794, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 528, + "CustomerInfo": 71132534, + "PaymentType": "Credit Card" + }, + { + "Id": 18204, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2016-05-02T19:51:10", + "TransactionId": 31115872, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 562, + "CustomerInfo": 1935574, + "PaymentType": "Cash" + }, + { + "Id": 18205, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-2", + "TransactionDate": "2016-09-19T10:12:26", + "TransactionId": 61208471, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 310, + "CustomerInfo": 85798098, + "PaymentType": "Debit Card" + }, + { + "Id": 18206, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2017-02-09T16:55:12", + "TransactionId": 66506470, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 826, + "CustomerInfo": 79394182, + "PaymentType": "Credit Card" + }, + { + "Id": 18207, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2016-05-02T09:54:26", + "TransactionId": 2708158, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 286, + "CustomerInfo": 728160, + "PaymentType": "Cash" + }, + { + "Id": 18208, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2016-04-22T08:17:48", + "TransactionId": 33824793, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 205, + "CustomerInfo": 78205624, + "PaymentType": "Cash" + }, + { + "Id": 18209, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2019-12-17T14:51:30", + "TransactionId": 37637692, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 485, + "CustomerInfo": 8111929, + "PaymentType": "Cash" + }, + { + "Id": 18210, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2016-04-17T13:48:09", + "TransactionId": 1292705, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 749, + "CustomerInfo": 98576333, + "PaymentType": "Cash" + }, + { + "Id": 18211, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2017-12-07T09:48:58", + "TransactionId": 67642137, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 207, + "CustomerInfo": 15200728, + "PaymentType": "Cash" + }, + { + "Id": 18212, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2017-07-30T15:59:37", + "TransactionId": 72053044, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 704, + "CustomerInfo": 32338373, + "PaymentType": "Debit Card" + }, + { + "Id": 18213, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-04-29T18:59:28", + "TransactionId": 87591502, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 608, + "CustomerInfo": 34357253, + "PaymentType": "Debit Card" + }, + { + "Id": 18214, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2019-12-07T12:09:04", + "TransactionId": 92699498, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 900, + "CustomerInfo": 26290655, + "PaymentType": "Debit Card" + }, + { + "Id": 18215, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2016-11-09T08:20:41", + "TransactionId": 1468744, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 806, + "CustomerInfo": 38191802, + "PaymentType": "Debit Card" + }, + { + "Id": 18216, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2018-01-12T18:27:48", + "TransactionId": 76445823, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 74, + "CustomerInfo": 75508943, + "PaymentType": "Cash" + }, + { + "Id": 18217, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-01-18T10:37:47", + "TransactionId": 9888396, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 71, + "CustomerInfo": 94297874, + "PaymentType": "Cash" + }, + { + "Id": 18218, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-2", + "TransactionDate": "2018-04-24T19:20:04", + "TransactionId": 40140164, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 778, + "CustomerInfo": 98966118, + "PaymentType": "Debit Card" + }, + { + "Id": 18219, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-5", + "TransactionDate": "2019-10-27T12:36:17", + "TransactionId": 53300353, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 89, + "CustomerInfo": 31582566, + "PaymentType": "Debit Card" + }, + { + "Id": 18220, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-5", + "TransactionDate": "2017-04-18T18:40:54", + "TransactionId": 99097953, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 764, + "CustomerInfo": 46456642, + "PaymentType": "Credit Card" + }, + { + "Id": 18221, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2019-02-15T09:22:28", + "TransactionId": 54361534, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 267, + "CustomerInfo": 1543250, + "PaymentType": "Debit Card" + }, + { + "Id": 18222, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2018-07-18T16:51:45", + "TransactionId": 67469685, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 245, + "CustomerInfo": 77347915, + "PaymentType": "Debit Card" + }, + { + "Id": 18223, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2016-06-25T10:01:47", + "TransactionId": 36143438, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 149, + "CustomerInfo": 83997869, + "PaymentType": "Credit Card" + }, + { + "Id": 18224, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2019-07-02T07:26:41", + "TransactionId": 30513258, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 174, + "CustomerInfo": 57858311, + "PaymentType": "Cash" + }, + { + "Id": 18225, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-02-10T15:14:07", + "TransactionId": 61496280, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 843, + "CustomerInfo": 34706954, + "PaymentType": "Credit Card" + }, + { + "Id": 18226, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2017-09-11T08:36:49", + "TransactionId": 32377057, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 58, + "CustomerInfo": 7971574, + "PaymentType": "Credit Card" + }, + { + "Id": 18227, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-09-18T08:39:59", + "TransactionId": 54319100, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 106, + "CustomerInfo": 23510376, + "PaymentType": "Credit Card" + }, + { + "Id": 18228, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-01-11T13:27:59", + "TransactionId": 56568666, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 255, + "CustomerInfo": 41176886, + "PaymentType": "Cash" + }, + { + "Id": 18229, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-01-04T16:32:53", + "TransactionId": 77346201, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 43, + "CustomerInfo": 11385281, + "PaymentType": "Cash" + }, + { + "Id": 18230, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-12-20T11:25:52", + "TransactionId": 67606169, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 732, + "CustomerInfo": 2531712, + "PaymentType": "Credit Card" + }, + { + "Id": 18231, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2016-09-24T08:33:04", + "TransactionId": 53947153, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 939, + "CustomerInfo": 12397858, + "PaymentType": "Credit Card" + }, + { + "Id": 18232, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2016-02-09T16:21:56", + "TransactionId": 54942921, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 433, + "CustomerInfo": 73006800, + "PaymentType": "Credit Card" + }, + { + "Id": 18233, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-09-25T12:51:24", + "TransactionId": 50280815, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 634, + "CustomerInfo": 73637543, + "PaymentType": "Cash" + }, + { + "Id": 18234, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-5", + "TransactionDate": "2019-03-17T10:07:41", + "TransactionId": 45405484, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 316, + "CustomerInfo": 39638683, + "PaymentType": "Credit Card" + }, + { + "Id": 18235, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-01-11T07:43:49", + "TransactionId": 277539, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 440, + "CustomerInfo": 42119949, + "PaymentType": "Debit Card" + }, + { + "Id": 18236, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-2", + "TransactionDate": "2019-10-04T11:22:34", + "TransactionId": 40652594, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 587, + "CustomerInfo": 33033803, + "PaymentType": "Debit Card" + }, + { + "Id": 18237, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2019-07-30T15:41:54", + "TransactionId": 1964865, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 472, + "CustomerInfo": 44537437, + "PaymentType": "Debit Card" + }, + { + "Id": 18238, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-11-19T07:47:00", + "TransactionId": 15280210, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 612, + "CustomerInfo": 57740590, + "PaymentType": "Credit Card" + }, + { + "Id": 18239, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2017-12-21T17:52:31", + "TransactionId": 40668278, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 237, + "CustomerInfo": 89348379, + "PaymentType": "Cash" + }, + { + "Id": 18240, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2017-12-20T07:04:48", + "TransactionId": 55922451, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 890, + "CustomerInfo": 39542528, + "PaymentType": "Debit Card" + }, + { + "Id": 18241, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-03-01T17:52:13", + "TransactionId": 67299265, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 58, + "CustomerInfo": 30538907, + "PaymentType": "Cash" + }, + { + "Id": 18242, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2018-11-01T07:34:11", + "TransactionId": 7935003, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 322, + "CustomerInfo": 97849017, + "PaymentType": "Cash" + }, + { + "Id": 18243, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2018-12-12T10:13:09", + "TransactionId": 72029471, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 211, + "CustomerInfo": 80630553, + "PaymentType": "Debit Card" + }, + { + "Id": 18244, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-03-12T14:21:33", + "TransactionId": 78120884, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 885, + "CustomerInfo": 95126553, + "PaymentType": "Cash" + }, + { + "Id": 18245, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2017-07-25T19:30:43", + "TransactionId": 4550561, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 587, + "CustomerInfo": 17376625, + "PaymentType": "Cash" + }, + { + "Id": 18246, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-09-28T08:27:53", + "TransactionId": 31353184, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 959, + "CustomerInfo": 79203326, + "PaymentType": "Debit Card" + }, + { + "Id": 18247, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2017-05-21T14:40:25", + "TransactionId": 27218360, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 76, + "CustomerInfo": 85639501, + "PaymentType": "Credit Card" + }, + { + "Id": 18248, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2016-12-15T19:51:01", + "TransactionId": 71532157, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 63, + "CustomerInfo": 54813648, + "PaymentType": "Debit Card" + }, + { + "Id": 18249, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2019-12-17T10:13:18", + "TransactionId": 47905542, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 962, + "CustomerInfo": 88305609, + "PaymentType": "Cash" + }, + { + "Id": 18250, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2018-06-05T12:53:34", + "TransactionId": 4564464, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 652, + "CustomerInfo": 42505763, + "PaymentType": "Debit Card" + }, + { + "Id": 18251, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2017-04-05T07:14:36", + "TransactionId": 71922555, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 503, + "CustomerInfo": 88483239, + "PaymentType": "Debit Card" + }, + { + "Id": 18252, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-07-21T13:41:48", + "TransactionId": 41442716, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 312, + "CustomerInfo": 22740719, + "PaymentType": "Debit Card" + }, + { + "Id": 18253, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2019-11-22T07:01:38", + "TransactionId": 83714664, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 34, + "CustomerInfo": 8470840, + "PaymentType": "Credit Card" + }, + { + "Id": 18254, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-09-08T18:35:43", + "TransactionId": 13884066, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 683, + "CustomerInfo": 94371528, + "PaymentType": "Credit Card" + }, + { + "Id": 18255, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2019-05-05T13:23:23", + "TransactionId": 26907172, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 854, + "CustomerInfo": 15846511, + "PaymentType": "Cash" + }, + { + "Id": 18256, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-05-30T11:50:47", + "TransactionId": 53898992, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 503, + "CustomerInfo": 31761301, + "PaymentType": "Debit Card" + }, + { + "Id": 18257, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2018-08-27T16:40:05", + "TransactionId": 98043943, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 784, + "CustomerInfo": 66737297, + "PaymentType": "Cash" + }, + { + "Id": 18258, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-2", + "TransactionDate": "2017-03-29T11:28:45", + "TransactionId": 96257834, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 158, + "CustomerInfo": 20951582, + "PaymentType": "Cash" + }, + { + "Id": 18259, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-05-12T09:28:57", + "TransactionId": 23299441, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 723, + "CustomerInfo": 89218094, + "PaymentType": "Credit Card" + }, + { + "Id": 18260, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2019-12-13T14:10:02", + "TransactionId": 51035997, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 545, + "CustomerInfo": 32512863, + "PaymentType": "Debit Card" + }, + { + "Id": 18261, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2018-02-06T19:15:36", + "TransactionId": 68480467, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 118, + "CustomerInfo": 61860851, + "PaymentType": "Cash" + }, + { + "Id": 18262, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2019-04-07T11:43:35", + "TransactionId": 71744895, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 74, + "CustomerInfo": 7750257, + "PaymentType": "Credit Card" + }, + { + "Id": 18263, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2018-10-20T12:57:27", + "TransactionId": 59050559, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 357, + "CustomerInfo": 67356020, + "PaymentType": "Credit Card" + }, + { + "Id": 18264, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2017-12-30T10:29:43", + "TransactionId": 87698825, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 902, + "CustomerInfo": 5259379, + "PaymentType": "Debit Card" + }, + { + "Id": 18265, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2017-08-19T08:39:16", + "TransactionId": 83465949, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 617, + "CustomerInfo": 99545923, + "PaymentType": "Credit Card" + }, + { + "Id": 18266, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2017-12-23T07:29:51", + "TransactionId": 28226147, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 840, + "CustomerInfo": 97591137, + "PaymentType": "Debit Card" + }, + { + "Id": 18267, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-5", + "TransactionDate": "2017-01-05T19:13:09", + "TransactionId": 60432037, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 415, + "CustomerInfo": 52783123, + "PaymentType": "Debit Card" + }, + { + "Id": 18268, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2016-12-21T11:35:14", + "TransactionId": 35977023, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 640, + "CustomerInfo": 1286050, + "PaymentType": "Debit Card" + }, + { + "Id": 18269, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2017-04-21T15:43:12", + "TransactionId": 45017059, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 455, + "CustomerInfo": 65956850, + "PaymentType": "Debit Card" + }, + { + "Id": 18270, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2016-01-27T19:45:59", + "TransactionId": 84917091, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 485, + "CustomerInfo": 67604952, + "PaymentType": "Cash" + }, + { + "Id": 18271, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2017-09-25T16:29:43", + "TransactionId": 3697287, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 671, + "CustomerInfo": 63643700, + "PaymentType": "Cash" + }, + { + "Id": 18272, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2016-04-18T18:54:52", + "TransactionId": 93345289, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 758, + "CustomerInfo": 69205053, + "PaymentType": "Debit Card" + }, + { + "Id": 18273, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2017-10-26T18:02:27", + "TransactionId": 49539137, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 936, + "CustomerInfo": 18029877, + "PaymentType": "Credit Card" + }, + { + "Id": 18274, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-04-25T19:50:10", + "TransactionId": 69820617, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 984, + "CustomerInfo": 87410358, + "PaymentType": "Cash" + }, + { + "Id": 18275, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-03-30T17:00:32", + "TransactionId": 57650782, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 349, + "CustomerInfo": 61074508, + "PaymentType": "Credit Card" + }, + { + "Id": 18276, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-09-20T14:15:22", + "TransactionId": 8539019, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 101, + "CustomerInfo": 33138284, + "PaymentType": "Debit Card" + }, + { + "Id": 18277, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2016-05-12T13:07:15", + "TransactionId": 53870747, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 454, + "CustomerInfo": 53630556, + "PaymentType": "Credit Card" + }, + { + "Id": 18278, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2019-01-25T13:46:16", + "TransactionId": 34553658, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 451, + "CustomerInfo": 19428485, + "PaymentType": "Debit Card" + }, + { + "Id": 18279, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2019-03-30T12:10:05", + "TransactionId": 29195672, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 41, + "CustomerInfo": 85885002, + "PaymentType": "Cash" + }, + { + "Id": 18280, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2017-03-18T10:34:28", + "TransactionId": 51847862, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 599, + "CustomerInfo": 74102063, + "PaymentType": "Debit Card" + }, + { + "Id": 18281, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-02-04T12:26:30", + "TransactionId": 45016085, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 93, + "CustomerInfo": 96009428, + "PaymentType": "Debit Card" + }, + { + "Id": 18282, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2018-08-10T10:43:06", + "TransactionId": 62505989, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 76, + "CustomerInfo": 27338859, + "PaymentType": "Cash" + }, + { + "Id": 18283, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-03-14T10:11:51", + "TransactionId": 45310208, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 418, + "CustomerInfo": 27281091, + "PaymentType": "Cash" + }, + { + "Id": 18284, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2016-09-30T16:28:42", + "TransactionId": 48133954, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 42, + "CustomerInfo": 77878724, + "PaymentType": "Cash" + }, + { + "Id": 18285, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2017-06-02T16:43:49", + "TransactionId": 31274807, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 916, + "CustomerInfo": 37252402, + "PaymentType": "Debit Card" + }, + { + "Id": 18286, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-12-11T13:35:54", + "TransactionId": 39873411, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 618, + "CustomerInfo": 47567975, + "PaymentType": "Credit Card" + }, + { + "Id": 18287, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-10-28T13:25:24", + "TransactionId": 21735819, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 678, + "CustomerInfo": 85754770, + "PaymentType": "Debit Card" + }, + { + "Id": 18288, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2017-03-26T08:26:10", + "TransactionId": 78748039, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 53, + "CustomerInfo": 59638560, + "PaymentType": "Cash" + }, + { + "Id": 18289, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-09-04T12:57:10", + "TransactionId": 67276921, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 536, + "CustomerInfo": 67897192, + "PaymentType": "Credit Card" + }, + { + "Id": 18290, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-06-09T07:50:36", + "TransactionId": 87578547, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 54, + "CustomerInfo": 67660368, + "PaymentType": "Credit Card" + }, + { + "Id": 18291, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-04-08T07:42:58", + "TransactionId": 85972394, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 338, + "CustomerInfo": 62694442, + "PaymentType": "Credit Card" + }, + { + "Id": 18292, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2019-03-02T17:41:25", + "TransactionId": 40859759, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 353, + "CustomerInfo": 51327127, + "PaymentType": "Credit Card" + }, + { + "Id": 18293, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-04-12T17:30:12", + "TransactionId": 71973949, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 580, + "CustomerInfo": 77187606, + "PaymentType": "Cash" + }, + { + "Id": 18294, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2016-03-28T08:51:22", + "TransactionId": 6034676, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 524, + "CustomerInfo": 96088302, + "PaymentType": "Debit Card" + }, + { + "Id": 18295, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2018-09-24T18:12:40", + "TransactionId": 21428682, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 674, + "CustomerInfo": 2689245, + "PaymentType": "Cash" + }, + { + "Id": 18296, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2018-09-22T17:26:53", + "TransactionId": 32859861, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 933, + "CustomerInfo": 83603144, + "PaymentType": "Credit Card" + }, + { + "Id": 18297, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2018-04-20T08:23:17", + "TransactionId": 83621677, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 617, + "CustomerInfo": 25588447, + "PaymentType": "Debit Card" + }, + { + "Id": 18298, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2019-08-19T16:29:00", + "TransactionId": 9510593, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 849, + "CustomerInfo": 90367823, + "PaymentType": "Debit Card" + }, + { + "Id": 18299, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2017-12-26T09:01:35", + "TransactionId": 69740523, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 166, + "CustomerInfo": 85982167, + "PaymentType": "Cash" + }, + { + "Id": 18300, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-02-06T17:06:26", + "TransactionId": 57379814, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 28, + "CustomerInfo": 8869673, + "PaymentType": "Cash" + }, + { + "Id": 18301, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2017-09-18T07:54:37", + "TransactionId": 5014838, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 914, + "CustomerInfo": 74358396, + "PaymentType": "Cash" + }, + { + "Id": 18302, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2016-08-04T09:17:34", + "TransactionId": 41082323, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 261, + "CustomerInfo": 72979480, + "PaymentType": "Cash" + }, + { + "Id": 18303, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-4", + "TransactionDate": "2018-05-17T19:36:37", + "TransactionId": 98762297, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 788, + "CustomerInfo": 661873, + "PaymentType": "Cash" + }, + { + "Id": 18304, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-07-02T18:28:39", + "TransactionId": 5020770, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 109, + "CustomerInfo": 48747571, + "PaymentType": "Debit Card" + }, + { + "Id": 18305, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-5", + "TransactionDate": "2018-10-01T18:51:33", + "TransactionId": 9435133, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 576, + "CustomerInfo": 21747892, + "PaymentType": "Debit Card" + }, + { + "Id": 18306, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-12-11T19:29:17", + "TransactionId": 41368171, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 182, + "CustomerInfo": 19015835, + "PaymentType": "Debit Card" + }, + { + "Id": 18307, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2018-04-14T16:18:12", + "TransactionId": 79192584, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 166, + "CustomerInfo": 50222425, + "PaymentType": "Credit Card" + }, + { + "Id": 18308, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2017-01-25T11:29:11", + "TransactionId": 66037224, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 390, + "CustomerInfo": 56273413, + "PaymentType": "Credit Card" + }, + { + "Id": 18309, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-09-26T09:06:12", + "TransactionId": 9547055, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 349, + "CustomerInfo": 24608127, + "PaymentType": "Debit Card" + }, + { + "Id": 18310, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2017-12-18T15:42:29", + "TransactionId": 40823847, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 30, + "CustomerInfo": 1241463, + "PaymentType": "Cash" + }, + { + "Id": 18311, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2018-02-22T07:32:36", + "TransactionId": 25312813, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 912, + "CustomerInfo": 54421347, + "PaymentType": "Credit Card" + }, + { + "Id": 18312, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2019-05-26T12:49:41", + "TransactionId": 52600156, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 853, + "CustomerInfo": 40816893, + "PaymentType": "Credit Card" + }, + { + "Id": 18313, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2016-10-03T15:19:44", + "TransactionId": 72655279, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 691, + "CustomerInfo": 73947050, + "PaymentType": "Cash" + }, + { + "Id": 18314, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-11-01T09:13:15", + "TransactionId": 85590173, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 35, + "CustomerInfo": 9102149, + "PaymentType": "Credit Card" + }, + { + "Id": 18315, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2019-08-01T14:00:14", + "TransactionId": 46350572, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 162, + "CustomerInfo": 51128465, + "PaymentType": "Credit Card" + }, + { + "Id": 18316, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-3", + "TransactionDate": "2017-12-14T17:00:40", + "TransactionId": 83196394, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 3, + "CustomerInfo": 16907182, + "PaymentType": "Debit Card" + }, + { + "Id": 18317, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-3", + "TransactionDate": "2018-10-22T10:48:35", + "TransactionId": 17109686, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 980, + "CustomerInfo": 61022590, + "PaymentType": "Credit Card" + }, + { + "Id": 18318, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2019-12-08T09:12:06", + "TransactionId": 39512708, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 565, + "CustomerInfo": 47705911, + "PaymentType": "Credit Card" + }, + { + "Id": 18319, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2017-12-09T14:26:10", + "TransactionId": 4447781, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 426, + "CustomerInfo": 52935046, + "PaymentType": "Debit Card" + }, + { + "Id": 18320, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-3", + "TransactionDate": "2018-08-21T12:21:19", + "TransactionId": 43071876, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 975, + "CustomerInfo": 12740611, + "PaymentType": "Cash" + }, + { + "Id": 18321, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2016-01-11T07:27:33", + "TransactionId": 55652310, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 532, + "CustomerInfo": 22866906, + "PaymentType": "Debit Card" + }, + { + "Id": 18322, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2019-02-04T09:35:51", + "TransactionId": 75040610, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 967, + "CustomerInfo": 51602064, + "PaymentType": "Debit Card" + }, + { + "Id": 18323, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-04-10T11:25:26", + "TransactionId": 19691275, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 125, + "CustomerInfo": 29757509, + "PaymentType": "Debit Card" + }, + { + "Id": 18324, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2018-11-13T13:18:20", + "TransactionId": 46079522, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 374, + "CustomerInfo": 30156509, + "PaymentType": "Debit Card" + }, + { + "Id": 18325, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2019-10-20T19:42:32", + "TransactionId": 71532296, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 389, + "CustomerInfo": 22696455, + "PaymentType": "Cash" + }, + { + "Id": 18326, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-5", + "TransactionDate": "2018-05-01T17:07:44", + "TransactionId": 51972769, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 856, + "CustomerInfo": 68463652, + "PaymentType": "Debit Card" + }, + { + "Id": 18327, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2016-01-30T12:51:59", + "TransactionId": 48178222, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 840, + "CustomerInfo": 12687680, + "PaymentType": "Debit Card" + }, + { + "Id": 18328, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2016-06-19T15:53:08", + "TransactionId": 80086428, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 576, + "CustomerInfo": 21184948, + "PaymentType": "Credit Card" + }, + { + "Id": 18329, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2018-12-03T19:05:23", + "TransactionId": 97096921, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 528, + "CustomerInfo": 61488526, + "PaymentType": "Credit Card" + }, + { + "Id": 18330, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2017-12-16T13:37:38", + "TransactionId": 19115535, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 927, + "CustomerInfo": 46279673, + "PaymentType": "Credit Card" + }, + { + "Id": 18331, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-3", + "TransactionDate": "2016-09-13T12:56:01", + "TransactionId": 75053230, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 563, + "CustomerInfo": 76729661, + "PaymentType": "Debit Card" + }, + { + "Id": 18332, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2017-05-14T19:57:56", + "TransactionId": 66857849, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 822, + "CustomerInfo": 90157776, + "PaymentType": "Credit Card" + }, + { + "Id": 18333, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2018-02-26T07:58:22", + "TransactionId": 42420801, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 572, + "CustomerInfo": 82719803, + "PaymentType": "Credit Card" + }, + { + "Id": 18334, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2019-04-12T14:54:14", + "TransactionId": 80529694, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 501, + "CustomerInfo": 82429784, + "PaymentType": "Credit Card" + }, + { + "Id": 18335, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2016-09-28T09:15:16", + "TransactionId": 81826973, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 50, + "CustomerInfo": 49677465, + "PaymentType": "Credit Card" + }, + { + "Id": 18336, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2017-09-29T11:13:38", + "TransactionId": 7042892, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 782, + "CustomerInfo": 43424889, + "PaymentType": "Credit Card" + }, + { + "Id": 18337, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2017-02-25T08:10:19", + "TransactionId": 65729812, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 796, + "CustomerInfo": 57327997, + "PaymentType": "Cash" + }, + { + "Id": 18338, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2019-11-22T09:01:35", + "TransactionId": 19029993, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 549, + "CustomerInfo": 99929322, + "PaymentType": "Credit Card" + }, + { + "Id": 18339, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2018-08-30T13:50:01", + "TransactionId": 36885930, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 607, + "CustomerInfo": 85697573, + "PaymentType": "Credit Card" + }, + { + "Id": 18340, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2016-06-14T11:20:07", + "TransactionId": 24636960, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 605, + "CustomerInfo": 46056274, + "PaymentType": "Credit Card" + }, + { + "Id": 18341, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2017-10-05T09:29:40", + "TransactionId": 7516715, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 152, + "CustomerInfo": 7664499, + "PaymentType": "Debit Card" + }, + { + "Id": 18342, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2016-10-19T15:44:12", + "TransactionId": 18085341, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 86, + "CustomerInfo": 82702516, + "PaymentType": "Credit Card" + }, + { + "Id": 18343, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2018-07-25T09:43:55", + "TransactionId": 34700487, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 861, + "CustomerInfo": 72924, + "PaymentType": "Debit Card" + }, + { + "Id": 18344, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-4", + "TransactionDate": "2017-12-02T15:09:30", + "TransactionId": 23744135, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 579, + "CustomerInfo": 57266264, + "PaymentType": "Debit Card" + }, + { + "Id": 18345, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-09-01T07:07:06", + "TransactionId": 27381253, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 808, + "CustomerInfo": 25831681, + "PaymentType": "Cash" + }, + { + "Id": 18346, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-5", + "TransactionDate": "2018-05-18T14:47:11", + "TransactionId": 64577466, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 483, + "CustomerInfo": 79348470, + "PaymentType": "Cash" + }, + { + "Id": 18347, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-2", + "TransactionDate": "2018-10-16T09:39:53", + "TransactionId": 13070615, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 631, + "CustomerInfo": 77763371, + "PaymentType": "Credit Card" + }, + { + "Id": 18348, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2016-08-24T17:17:23", + "TransactionId": 94693921, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 587, + "CustomerInfo": 44209095, + "PaymentType": "Credit Card" + }, + { + "Id": 18349, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-1", + "TransactionDate": "2016-12-18T10:53:11", + "TransactionId": 69105908, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 652, + "CustomerInfo": 17930546, + "PaymentType": "Debit Card" + }, + { + "Id": 18350, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-01-31T13:37:29", + "TransactionId": 76615587, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 116, + "CustomerInfo": 40549407, + "PaymentType": "Credit Card" + }, + { + "Id": 18351, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-3", + "TransactionDate": "2019-08-15T18:47:14", + "TransactionId": 44505425, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 994, + "CustomerInfo": 9765432, + "PaymentType": "Credit Card" + }, + { + "Id": 18352, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-01-02T10:26:24", + "TransactionId": 43607907, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 84, + "CustomerInfo": 50264556, + "PaymentType": "Cash" + }, + { + "Id": 18353, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2017-08-09T07:23:05", + "TransactionId": 79889988, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 431, + "CustomerInfo": 57323980, + "PaymentType": "Debit Card" + }, + { + "Id": 18354, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-08-21T07:14:01", + "TransactionId": 40521513, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 440, + "CustomerInfo": 23442881, + "PaymentType": "Debit Card" + }, + { + "Id": 18355, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2016-09-25T17:25:44", + "TransactionId": 43299655, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 80, + "CustomerInfo": 39621755, + "PaymentType": "Debit Card" + }, + { + "Id": 18356, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2018-05-07T19:06:23", + "TransactionId": 96067585, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 234, + "CustomerInfo": 8479068, + "PaymentType": "Credit Card" + }, + { + "Id": 18357, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-06-25T14:06:17", + "TransactionId": 35859786, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 175, + "CustomerInfo": 77865806, + "PaymentType": "Credit Card" + }, + { + "Id": 18358, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2016-04-09T19:09:42", + "TransactionId": 36162384, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 273, + "CustomerInfo": 14819275, + "PaymentType": "Debit Card" + }, + { + "Id": 18359, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2017-03-04T07:40:22", + "TransactionId": 55176054, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 57, + "CustomerInfo": 67384836, + "PaymentType": "Credit Card" + }, + { + "Id": 18360, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-12-10T13:30:43", + "TransactionId": 78974015, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 262, + "CustomerInfo": 43042629, + "PaymentType": "Debit Card" + }, + { + "Id": 18361, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2019-04-01T15:47:14", + "TransactionId": 62767494, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 62, + "CustomerInfo": 38809381, + "PaymentType": "Credit Card" + }, + { + "Id": 18362, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-4", + "TransactionDate": "2019-08-10T14:42:00", + "TransactionId": 48202424, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 607, + "CustomerInfo": 79832088, + "PaymentType": "Debit Card" + }, + { + "Id": 18363, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2018-11-06T07:11:08", + "TransactionId": 378051, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 845, + "CustomerInfo": 35115708, + "PaymentType": "Debit Card" + }, + { + "Id": 18364, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-09-29T15:26:12", + "TransactionId": 57272425, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 67, + "CustomerInfo": 73906075, + "PaymentType": "Cash" + }, + { + "Id": 18365, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-5", + "TransactionDate": "2016-10-22T08:50:47", + "TransactionId": 24723038, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 620, + "CustomerInfo": 78757440, + "PaymentType": "Cash" + }, + { + "Id": 18366, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-12-08T11:50:04", + "TransactionId": 66564716, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 692, + "CustomerInfo": 63250545, + "PaymentType": "Credit Card" + }, + { + "Id": 18367, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2017-10-08T08:22:25", + "TransactionId": 34070553, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 113, + "CustomerInfo": 18783625, + "PaymentType": "Cash" + }, + { + "Id": 18368, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2018-07-10T09:34:51", + "TransactionId": 91966455, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 499, + "CustomerInfo": 7135633, + "PaymentType": "Debit Card" + }, + { + "Id": 18369, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2017-06-11T14:35:05", + "TransactionId": 68243404, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 79, + "CustomerInfo": 51137851, + "PaymentType": "Credit Card" + }, + { + "Id": 18370, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2016-02-15T18:38:27", + "TransactionId": 34277068, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 133, + "CustomerInfo": 6539620, + "PaymentType": "Debit Card" + }, + { + "Id": 18371, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2018-02-19T13:48:52", + "TransactionId": 21351074, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 271, + "CustomerInfo": 45608688, + "PaymentType": "Cash" + }, + { + "Id": 18372, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-12-02T10:08:24", + "TransactionId": 7326213, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 366, + "CustomerInfo": 48795868, + "PaymentType": "Cash" + }, + { + "Id": 18373, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-3", + "TransactionDate": "2017-10-27T19:06:40", + "TransactionId": 14239736, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 783, + "CustomerInfo": 8897626, + "PaymentType": "Cash" + }, + { + "Id": 18374, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2017-07-31T10:48:43", + "TransactionId": 99467786, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 624, + "CustomerInfo": 49495053, + "PaymentType": "Cash" + }, + { + "Id": 18375, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2017-06-24T13:31:52", + "TransactionId": 61210502, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 68, + "CustomerInfo": 72681387, + "PaymentType": "Cash" + }, + { + "Id": 18376, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2016-06-28T13:11:51", + "TransactionId": 84977200, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 789, + "CustomerInfo": 30743262, + "PaymentType": "Cash" + }, + { + "Id": 18377, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2019-06-15T12:27:22", + "TransactionId": 48792554, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 947, + "CustomerInfo": 81019714, + "PaymentType": "Credit Card" + }, + { + "Id": 18378, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2019-08-06T07:08:59", + "TransactionId": 76711667, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 867, + "CustomerInfo": 93790870, + "PaymentType": "Debit Card" + }, + { + "Id": 18379, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2017-12-16T09:44:04", + "TransactionId": 26051832, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 305, + "CustomerInfo": 44752148, + "PaymentType": "Cash" + }, + { + "Id": 18380, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2019-08-20T08:35:23", + "TransactionId": 96400125, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 808, + "CustomerInfo": 66573112, + "PaymentType": "Credit Card" + }, + { + "Id": 18381, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2016-03-20T18:48:32", + "TransactionId": 95270709, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 39, + "CustomerInfo": 68859812, + "PaymentType": "Credit Card" + }, + { + "Id": 18382, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2017-05-27T19:40:22", + "TransactionId": 75154962, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 435, + "CustomerInfo": 84761344, + "PaymentType": "Debit Card" + }, + { + "Id": 18383, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2016-07-17T14:47:28", + "TransactionId": 11299572, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 871, + "CustomerInfo": 89750576, + "PaymentType": "Cash" + }, + { + "Id": 18384, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2017-12-26T09:02:01", + "TransactionId": 9643883, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 360, + "CustomerInfo": 6093602, + "PaymentType": "Debit Card" + }, + { + "Id": 18385, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2016-06-05T15:20:36", + "TransactionId": 59801187, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 51739277, + "PaymentType": "Cash" + }, + { + "Id": 18386, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2018-11-22T13:53:02", + "TransactionId": 6437643, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 352, + "CustomerInfo": 26267992, + "PaymentType": "Debit Card" + }, + { + "Id": 18387, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2019-11-26T17:54:06", + "TransactionId": 26768462, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 294, + "CustomerInfo": 55540353, + "PaymentType": "Cash" + }, + { + "Id": 18388, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2017-03-28T08:17:14", + "TransactionId": 67393478, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 361, + "CustomerInfo": 56379689, + "PaymentType": "Credit Card" + }, + { + "Id": 18389, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2017-03-29T07:20:47", + "TransactionId": 14197957, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 278, + "CustomerInfo": 21846599, + "PaymentType": "Cash" + }, + { + "Id": 18390, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2017-05-17T15:49:15", + "TransactionId": 64197416, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 24, + "CustomerInfo": 58331019, + "PaymentType": "Debit Card" + }, + { + "Id": 18391, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2016-09-28T12:25:38", + "TransactionId": 96031178, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 566, + "CustomerInfo": 55317893, + "PaymentType": "Credit Card" + }, + { + "Id": 18392, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2017-01-20T17:32:56", + "TransactionId": 51896200, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 971, + "CustomerInfo": 76151820, + "PaymentType": "Credit Card" + }, + { + "Id": 18393, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2019-11-07T07:41:57", + "TransactionId": 3104964, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 245, + "CustomerInfo": 78367878, + "PaymentType": "Credit Card" + }, + { + "Id": 18394, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2016-12-20T15:01:00", + "TransactionId": 27958093, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 109, + "CustomerInfo": 12495993, + "PaymentType": "Debit Card" + }, + { + "Id": 18395, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2016-11-08T17:16:22", + "TransactionId": 59863019, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 73203055, + "PaymentType": "Debit Card" + }, + { + "Id": 18396, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2017-11-26T08:16:05", + "TransactionId": 27603248, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 569, + "CustomerInfo": 47503911, + "PaymentType": "Credit Card" + }, + { + "Id": 18397, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2018-04-23T11:08:44", + "TransactionId": 57396039, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 210, + "CustomerInfo": 54261931, + "PaymentType": "Debit Card" + }, + { + "Id": 18398, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-4", + "TransactionDate": "2016-10-02T16:11:25", + "TransactionId": 87302818, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 741, + "CustomerInfo": 7214261, + "PaymentType": "Debit Card" + }, + { + "Id": 18399, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2017-08-20T12:48:32", + "TransactionId": 42085934, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 77119051, + "PaymentType": "Debit Card" + }, + { + "Id": 18400, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2017-08-17T12:59:28", + "TransactionId": 19681776, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 427, + "CustomerInfo": 70201902, + "PaymentType": "Debit Card" + }, + { + "Id": 18401, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-03-08T16:14:36", + "TransactionId": 64853118, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 381, + "CustomerInfo": 17121995, + "PaymentType": "Debit Card" + }, + { + "Id": 18402, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2019-09-21T18:33:59", + "TransactionId": 57406583, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 702, + "CustomerInfo": 86730594, + "PaymentType": "Cash" + }, + { + "Id": 18403, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2018-08-11T18:49:15", + "TransactionId": 98083813, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 399, + "CustomerInfo": 75441403, + "PaymentType": "Debit Card" + }, + { + "Id": 18404, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-02-27T12:51:50", + "TransactionId": 87247051, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 42635892, + "PaymentType": "Cash" + }, + { + "Id": 18405, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2019-03-27T13:15:36", + "TransactionId": 19585190, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 152, + "CustomerInfo": 83194422, + "PaymentType": "Debit Card" + }, + { + "Id": 18406, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2018-01-26T14:20:15", + "TransactionId": 78926858, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 273, + "CustomerInfo": 87807830, + "PaymentType": "Debit Card" + }, + { + "Id": 18407, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2019-09-16T18:54:00", + "TransactionId": 84575656, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 629, + "CustomerInfo": 97661015, + "PaymentType": "Credit Card" + }, + { + "Id": 18408, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2019-04-03T16:16:19", + "TransactionId": 85178905, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 880, + "CustomerInfo": 9994282, + "PaymentType": "Credit Card" + }, + { + "Id": 18409, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-05-07T12:12:06", + "TransactionId": 13215769, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 983, + "CustomerInfo": 2277826, + "PaymentType": "Cash" + }, + { + "Id": 18410, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-08-02T08:12:20", + "TransactionId": 42406503, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 965, + "CustomerInfo": 31196525, + "PaymentType": "Debit Card" + }, + { + "Id": 18411, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-1", + "TransactionDate": "2019-01-01T08:40:34", + "TransactionId": 37160692, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 366, + "CustomerInfo": 43459598, + "PaymentType": "Cash" + }, + { + "Id": 18412, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-3", + "TransactionDate": "2019-09-15T07:39:04", + "TransactionId": 50336400, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 394, + "CustomerInfo": 49692626, + "PaymentType": "Credit Card" + }, + { + "Id": 18413, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-3", + "TransactionDate": "2019-05-25T18:10:31", + "TransactionId": 60255882, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 337, + "CustomerInfo": 4045532, + "PaymentType": "Debit Card" + }, + { + "Id": 18414, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-3", + "TransactionDate": "2019-03-05T10:31:18", + "TransactionId": 79387495, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 939, + "CustomerInfo": 1865035, + "PaymentType": "Debit Card" + }, + { + "Id": 18415, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-2", + "TransactionDate": "2018-08-10T17:56:50", + "TransactionId": 47436828, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 913, + "CustomerInfo": 40085587, + "PaymentType": "Credit Card" + }, + { + "Id": 18416, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-01-10T15:07:21", + "TransactionId": 90574954, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 220, + "CustomerInfo": 92973885, + "PaymentType": "Credit Card" + }, + { + "Id": 18417, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2019-10-21T08:22:34", + "TransactionId": 37020575, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 993, + "CustomerInfo": 87522837, + "PaymentType": "Cash" + }, + { + "Id": 18418, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2019-08-13T12:02:01", + "TransactionId": 80041760, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 701, + "CustomerInfo": 69846944, + "PaymentType": "Cash" + }, + { + "Id": 18419, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-07-15T11:14:30", + "TransactionId": 31115522, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 236, + "CustomerInfo": 80133908, + "PaymentType": "Cash" + }, + { + "Id": 18420, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-11-19T07:01:47", + "TransactionId": 87110522, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 616, + "CustomerInfo": 51192289, + "PaymentType": "Credit Card" + }, + { + "Id": 18421, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2019-09-05T14:23:25", + "TransactionId": 86407311, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 531, + "CustomerInfo": 54332498, + "PaymentType": "Credit Card" + }, + { + "Id": 18422, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-08-16T09:14:24", + "TransactionId": 16918566, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 404, + "CustomerInfo": 42039936, + "PaymentType": "Cash" + }, + { + "Id": 18423, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2017-08-09T11:33:13", + "TransactionId": 91490675, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 88, + "CustomerInfo": 68123426, + "PaymentType": "Credit Card" + }, + { + "Id": 18424, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2018-03-27T15:06:12", + "TransactionId": 51693271, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 897, + "CustomerInfo": 46138665, + "PaymentType": "Credit Card" + }, + { + "Id": 18425, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2017-03-04T13:32:53", + "TransactionId": 76036215, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 230, + "CustomerInfo": 56764525, + "PaymentType": "Cash" + }, + { + "Id": 18426, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-5", + "TransactionDate": "2019-05-09T10:04:57", + "TransactionId": 95634177, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 966, + "CustomerInfo": 55258704, + "PaymentType": "Credit Card" + }, + { + "Id": 18427, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2017-10-06T16:16:11", + "TransactionId": 25251345, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 50, + "CustomerInfo": 74389889, + "PaymentType": "Debit Card" + }, + { + "Id": 18428, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2016-04-30T07:17:54", + "TransactionId": 19736922, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 897, + "CustomerInfo": 81093513, + "PaymentType": "Credit Card" + }, + { + "Id": 18429, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2016-04-14T19:03:04", + "TransactionId": 2906090, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 621, + "CustomerInfo": 46246355, + "PaymentType": "Credit Card" + }, + { + "Id": 18430, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2019-11-15T08:11:37", + "TransactionId": 91867819, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 720, + "CustomerInfo": 69920184, + "PaymentType": "Credit Card" + }, + { + "Id": 18431, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2018-01-10T10:08:07", + "TransactionId": 15046045, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 833, + "CustomerInfo": 27217757, + "PaymentType": "Cash" + }, + { + "Id": 18432, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2016-04-04T12:12:23", + "TransactionId": 66862617, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 882, + "CustomerInfo": 80652129, + "PaymentType": "Credit Card" + }, + { + "Id": 18433, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-02-19T11:16:48", + "TransactionId": 16328659, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 990, + "CustomerInfo": 88039324, + "PaymentType": "Debit Card" + }, + { + "Id": 18434, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-03-15T12:45:56", + "TransactionId": 93997865, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 783, + "CustomerInfo": 90845643, + "PaymentType": "Debit Card" + }, + { + "Id": 18435, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-05-28T12:39:19", + "TransactionId": 44046326, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 810, + "CustomerInfo": 5982901, + "PaymentType": "Credit Card" + }, + { + "Id": 18436, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-4", + "TransactionDate": "2019-11-20T17:56:59", + "TransactionId": 10390206, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 326, + "CustomerInfo": 76763592, + "PaymentType": "Cash" + }, + { + "Id": 18437, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2019-11-05T13:52:28", + "TransactionId": 23147964, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 726, + "CustomerInfo": 82289727, + "PaymentType": "Cash" + }, + { + "Id": 18438, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2016-08-14T18:12:23", + "TransactionId": 24016345, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 293, + "CustomerInfo": 54376799, + "PaymentType": "Cash" + }, + { + "Id": 18439, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2018-02-27T19:47:43", + "TransactionId": 23209931, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 854, + "CustomerInfo": 2632607, + "PaymentType": "Cash" + }, + { + "Id": 18440, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-5", + "TransactionDate": "2016-04-24T08:37:41", + "TransactionId": 11540486, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 436, + "CustomerInfo": 45917572, + "PaymentType": "Credit Card" + }, + { + "Id": 18441, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-1", + "TransactionDate": "2018-10-26T16:09:07", + "TransactionId": 57367543, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 863, + "CustomerInfo": 52188219, + "PaymentType": "Debit Card" + }, + { + "Id": 18442, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2018-03-29T08:26:18", + "TransactionId": 88869680, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 102, + "CustomerInfo": 94581603, + "PaymentType": "Cash" + }, + { + "Id": 18443, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2018-11-22T14:54:14", + "TransactionId": 56386969, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 479, + "CustomerInfo": 47449673, + "PaymentType": "Credit Card" + }, + { + "Id": 18444, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2016-06-12T18:33:59", + "TransactionId": 93221546, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 819, + "CustomerInfo": 58312242, + "PaymentType": "Cash" + }, + { + "Id": 18445, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-2", + "TransactionDate": "2016-10-09T12:02:53", + "TransactionId": 24692278, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 395, + "CustomerInfo": 26801946, + "PaymentType": "Credit Card" + }, + { + "Id": 18446, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-1", + "TransactionDate": "2018-07-18T11:41:34", + "TransactionId": 98816286, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 938, + "CustomerInfo": 38532572, + "PaymentType": "Credit Card" + }, + { + "Id": 18447, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2017-05-22T08:44:01", + "TransactionId": 52661617, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 960, + "CustomerInfo": 3048528, + "PaymentType": "Cash" + }, + { + "Id": 18448, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-11-09T12:23:46", + "TransactionId": 48462875, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 353, + "CustomerInfo": 86373851, + "PaymentType": "Credit Card" + }, + { + "Id": 18449, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2019-04-02T18:17:00", + "TransactionId": 31758699, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 113, + "CustomerInfo": 45357446, + "PaymentType": "Cash" + }, + { + "Id": 18450, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2018-08-19T15:30:06", + "TransactionId": 26326288, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 52, + "CustomerInfo": 9291543, + "PaymentType": "Debit Card" + }, + { + "Id": 18451, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2016-12-23T11:45:10", + "TransactionId": 74502992, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 823, + "CustomerInfo": 67052086, + "PaymentType": "Debit Card" + }, + { + "Id": 18452, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-12-05T09:25:29", + "TransactionId": 30454114, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 309, + "CustomerInfo": 64718447, + "PaymentType": "Credit Card" + }, + { + "Id": 18453, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2017-02-22T14:08:36", + "TransactionId": 94434447, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 208, + "CustomerInfo": 59730115, + "PaymentType": "Credit Card" + }, + { + "Id": 18454, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-01-11T17:02:07", + "TransactionId": 33041089, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 1000, + "CustomerInfo": 73195656, + "PaymentType": "Debit Card" + }, + { + "Id": 18455, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2017-08-07T09:23:11", + "TransactionId": 37188361, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 737, + "CustomerInfo": 34044096, + "PaymentType": "Debit Card" + }, + { + "Id": 18456, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-09-22T07:05:57", + "TransactionId": 82502964, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 208, + "CustomerInfo": 92875758, + "PaymentType": "Debit Card" + }, + { + "Id": 18457, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2017-12-26T16:19:55", + "TransactionId": 84358318, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 25, + "CustomerInfo": 79268727, + "PaymentType": "Debit Card" + }, + { + "Id": 18458, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2016-04-16T19:15:53", + "TransactionId": 77951497, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 893, + "CustomerInfo": 88858007, + "PaymentType": "Debit Card" + }, + { + "Id": 18459, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-07-04T13:34:28", + "TransactionId": 88360026, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 595, + "CustomerInfo": 2560042, + "PaymentType": "Cash" + }, + { + "Id": 18460, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2019-01-04T18:49:15", + "TransactionId": 98931623, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 289, + "CustomerInfo": 88530502, + "PaymentType": "Debit Card" + }, + { + "Id": 18461, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2016-07-11T13:52:19", + "TransactionId": 72209256, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 426, + "CustomerInfo": 29578241, + "PaymentType": "Credit Card" + }, + { + "Id": 18462, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2018-08-04T16:12:52", + "TransactionId": 55651032, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 157, + "CustomerInfo": 90703441, + "PaymentType": "Credit Card" + }, + { + "Id": 18463, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2019-10-30T08:53:57", + "TransactionId": 49792191, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 523, + "CustomerInfo": 50622035, + "PaymentType": "Cash" + }, + { + "Id": 18464, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2019-03-28T16:09:24", + "TransactionId": 20354648, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 695, + "CustomerInfo": 97748395, + "PaymentType": "Debit Card" + }, + { + "Id": 18465, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-01-08T08:53:40", + "TransactionId": 44359596, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 673, + "CustomerInfo": 51842696, + "PaymentType": "Debit Card" + }, + { + "Id": 18466, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-09-26T09:29:31", + "TransactionId": 56469563, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 496, + "CustomerInfo": 3086642, + "PaymentType": "Credit Card" + }, + { + "Id": 18467, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2019-12-31T10:59:05", + "TransactionId": 62228335, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 657, + "CustomerInfo": 23708666, + "PaymentType": "Cash" + }, + { + "Id": 18468, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2017-08-14T17:16:57", + "TransactionId": 13472764, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 477, + "CustomerInfo": 46372300, + "PaymentType": "Debit Card" + }, + { + "Id": 18469, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-11-21T08:47:37", + "TransactionId": 30853292, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 795, + "CustomerInfo": 46051001, + "PaymentType": "Credit Card" + }, + { + "Id": 18470, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2018-03-24T08:36:40", + "TransactionId": 65171424, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 833, + "CustomerInfo": 10582366, + "PaymentType": "Debit Card" + }, + { + "Id": 18471, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-12-21T17:33:56", + "TransactionId": 56393147, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 908, + "CustomerInfo": 8351506, + "PaymentType": "Credit Card" + }, + { + "Id": 18472, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-1", + "TransactionDate": "2017-04-25T10:20:38", + "TransactionId": 79003386, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 940, + "CustomerInfo": 27003770, + "PaymentType": "Cash" + }, + { + "Id": 18473, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2017-08-28T14:37:06", + "TransactionId": 89360928, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 256, + "CustomerInfo": 83161299, + "PaymentType": "Credit Card" + }, + { + "Id": 18474, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2016-06-02T11:29:02", + "TransactionId": 37094465, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 89, + "CustomerInfo": 66157930, + "PaymentType": "Cash" + }, + { + "Id": 18475, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2017-01-12T08:38:59", + "TransactionId": 70436367, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 311, + "CustomerInfo": 28241370, + "PaymentType": "Credit Card" + }, + { + "Id": 18476, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-4", + "TransactionDate": "2017-07-17T16:24:14", + "TransactionId": 42007179, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 644, + "CustomerInfo": 75623019, + "PaymentType": "Debit Card" + }, + { + "Id": 18477, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2016-12-24T14:01:06", + "TransactionId": 50608159, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 66, + "CustomerInfo": 7767970, + "PaymentType": "Cash" + }, + { + "Id": 18478, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-2", + "TransactionDate": "2019-03-11T13:49:00", + "TransactionId": 44516001, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 467, + "CustomerInfo": 39063839, + "PaymentType": "Debit Card" + }, + { + "Id": 18479, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-03-13T13:16:45", + "TransactionId": 98545820, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 239, + "CustomerInfo": 22248612, + "PaymentType": "Debit Card" + }, + { + "Id": 18480, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2016-06-14T18:27:48", + "TransactionId": 48204453, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 316, + "CustomerInfo": 38664787, + "PaymentType": "Debit Card" + }, + { + "Id": 18481, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-10-21T12:39:36", + "TransactionId": 6304431, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 983, + "CustomerInfo": 82246263, + "PaymentType": "Debit Card" + }, + { + "Id": 18482, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2016-09-14T17:39:07", + "TransactionId": 1175908, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 33, + "CustomerInfo": 92564750, + "PaymentType": "Credit Card" + }, + { + "Id": 18483, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2017-07-20T18:42:12", + "TransactionId": 36351527, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 401, + "CustomerInfo": 99918715, + "PaymentType": "Credit Card" + }, + { + "Id": 18484, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2018-08-05T12:57:01", + "TransactionId": 7091707, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 550, + "CustomerInfo": 62553845, + "PaymentType": "Cash" + }, + { + "Id": 18485, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-06-17T15:39:45", + "TransactionId": 52474487, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 848, + "CustomerInfo": 2889851, + "PaymentType": "Cash" + }, + { + "Id": 18486, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2017-07-05T12:40:28", + "TransactionId": 19387565, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 943, + "CustomerInfo": 12888083, + "PaymentType": "Debit Card" + }, + { + "Id": 18487, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2016-09-20T13:54:12", + "TransactionId": 39598743, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 461, + "CustomerInfo": 90698948, + "PaymentType": "Debit Card" + }, + { + "Id": 18488, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-1", + "TransactionDate": "2017-04-10T12:05:02", + "TransactionId": 76604586, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 573, + "CustomerInfo": 81730635, + "PaymentType": "Debit Card" + }, + { + "Id": 18489, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-10-17T09:11:14", + "TransactionId": 70534712, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 734, + "CustomerInfo": 97001317, + "PaymentType": "Debit Card" + }, + { + "Id": 18490, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2017-08-05T13:02:38", + "TransactionId": 79655458, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 879, + "CustomerInfo": 1481863, + "PaymentType": "Credit Card" + }, + { + "Id": 18491, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2016-05-17T07:50:10", + "TransactionId": 8201380, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 752, + "CustomerInfo": 65629714, + "PaymentType": "Debit Card" + }, + { + "Id": 18492, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2016-10-01T12:45:22", + "TransactionId": 24939284, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 533, + "CustomerInfo": 37874475, + "PaymentType": "Cash" + }, + { + "Id": 18493, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-1", + "TransactionDate": "2018-08-18T15:04:11", + "TransactionId": 32079808, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 767, + "CustomerInfo": 57244441, + "PaymentType": "Debit Card" + }, + { + "Id": 18494, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-03-25T09:11:57", + "TransactionId": 50777552, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 142, + "CustomerInfo": 4956843, + "PaymentType": "Cash" + }, + { + "Id": 18495, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2016-08-27T18:30:06", + "TransactionId": 8372486, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 553, + "CustomerInfo": 63367085, + "PaymentType": "Credit Card" + }, + { + "Id": 18496, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2019-01-28T19:26:50", + "TransactionId": 37790114, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 940, + "CustomerInfo": 99613146, + "PaymentType": "Debit Card" + }, + { + "Id": 18497, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2016-02-16T11:17:48", + "TransactionId": 3780443, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 18, + "CustomerInfo": 1411531, + "PaymentType": "Credit Card" + }, + { + "Id": 18498, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2016-08-16T16:58:31", + "TransactionId": 56867717, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 225, + "CustomerInfo": 88873770, + "PaymentType": "Debit Card" + }, + { + "Id": 18499, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-4", + "TransactionDate": "2018-08-06T14:36:49", + "TransactionId": 1681770, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 105, + "CustomerInfo": 56172896, + "PaymentType": "Credit Card" + }, + { + "Id": 18500, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-06-11T16:44:50", + "TransactionId": 41081835, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 447, + "CustomerInfo": 80717833, + "PaymentType": "Cash" + }, + { + "Id": 18501, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2019-10-30T14:53:31", + "TransactionId": 87408492, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 136, + "CustomerInfo": 26630387, + "PaymentType": "Debit Card" + }, + { + "Id": 18502, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-08-01T18:05:11", + "TransactionId": 32030444, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 29, + "CustomerInfo": 26170126, + "PaymentType": "Credit Card" + }, + { + "Id": 18503, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-2", + "TransactionDate": "2017-03-18T16:01:29", + "TransactionId": 60576089, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 984, + "CustomerInfo": 48744786, + "PaymentType": "Debit Card" + }, + { + "Id": 18504, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-06-02T11:09:10", + "TransactionId": 6537814, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 618, + "CustomerInfo": 71411526, + "PaymentType": "Cash" + }, + { + "Id": 18505, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-5", + "TransactionDate": "2017-07-23T09:57:27", + "TransactionId": 58955681, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 607, + "CustomerInfo": 87736726, + "PaymentType": "Credit Card" + }, + { + "Id": 18506, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-3", + "TransactionDate": "2017-07-14T15:39:19", + "TransactionId": 26600127, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 315, + "CustomerInfo": 84551298, + "PaymentType": "Credit Card" + }, + { + "Id": 18507, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-1", + "TransactionDate": "2019-02-19T09:26:30", + "TransactionId": 80289681, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 18, + "CustomerInfo": 78376416, + "PaymentType": "Cash" + }, + { + "Id": 18508, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-01-10T09:53:51", + "TransactionId": 78919172, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 466, + "CustomerInfo": 98307367, + "PaymentType": "Credit Card" + }, + { + "Id": 18509, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2017-01-30T15:26:04", + "TransactionId": 12068767, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 774, + "CustomerInfo": 30148952, + "PaymentType": "Debit Card" + }, + { + "Id": 18510, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2016-11-14T13:27:24", + "TransactionId": 97426313, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 802, + "CustomerInfo": 70237189, + "PaymentType": "Credit Card" + }, + { + "Id": 18511, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2017-08-22T07:25:49", + "TransactionId": 91741567, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 940, + "CustomerInfo": 2880708, + "PaymentType": "Cash" + }, + { + "Id": 18512, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-4", + "TransactionDate": "2016-11-20T10:13:44", + "TransactionId": 41673692, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 883, + "CustomerInfo": 16978258, + "PaymentType": "Debit Card" + }, + { + "Id": 18513, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2017-03-12T12:31:58", + "TransactionId": 97899170, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 849, + "CustomerInfo": 93595607, + "PaymentType": "Debit Card" + }, + { + "Id": 18514, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2017-10-01T16:15:10", + "TransactionId": 17831232, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 178, + "CustomerInfo": 60391643, + "PaymentType": "Cash" + }, + { + "Id": 18515, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-2", + "TransactionDate": "2019-12-01T18:00:35", + "TransactionId": 25059929, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 694, + "CustomerInfo": 33916487, + "PaymentType": "Cash" + }, + { + "Id": 18516, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-5", + "TransactionDate": "2016-06-25T15:11:31", + "TransactionId": 18584909, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 135, + "CustomerInfo": 43705208, + "PaymentType": "Cash" + }, + { + "Id": 18517, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-12-20T16:59:48", + "TransactionId": 69628555, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 532, + "CustomerInfo": 31639384, + "PaymentType": "Credit Card" + }, + { + "Id": 18518, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2019-09-25T18:15:24", + "TransactionId": 46902488, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 683, + "CustomerInfo": 76244061, + "PaymentType": "Credit Card" + }, + { + "Id": 18519, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2019-07-17T09:14:59", + "TransactionId": 20789504, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 765, + "CustomerInfo": 75925864, + "PaymentType": "Cash" + }, + { + "Id": 18520, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-1", + "TransactionDate": "2017-04-08T19:33:27", + "TransactionId": 66226216, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 524, + "CustomerInfo": 88995091, + "PaymentType": "Credit Card" + }, + { + "Id": 18521, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2017-09-10T15:56:44", + "TransactionId": 90837025, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 567, + "CustomerInfo": 76072079, + "PaymentType": "Debit Card" + }, + { + "Id": 18522, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-3", + "TransactionDate": "2019-04-01T18:44:04", + "TransactionId": 36840453, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 224, + "CustomerInfo": 58588492, + "PaymentType": "Cash" + }, + { + "Id": 18523, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-4", + "TransactionDate": "2016-04-06T09:27:13", + "TransactionId": 65861504, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 257, + "CustomerInfo": 61397285, + "PaymentType": "Credit Card" + }, + { + "Id": 18524, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2018-05-03T12:00:17", + "TransactionId": 45291495, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 527, + "CustomerInfo": 45815551, + "PaymentType": "Cash" + }, + { + "Id": 18525, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2018-07-25T17:39:50", + "TransactionId": 28033985, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 292, + "CustomerInfo": 34255744, + "PaymentType": "Cash" + }, + { + "Id": 18526, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2018-08-05T10:04:48", + "TransactionId": 44195645, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 755, + "CustomerInfo": 58560836, + "PaymentType": "Cash" + }, + { + "Id": 18527, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-07-15T08:03:33", + "TransactionId": 52118087, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 982, + "CustomerInfo": 89291410, + "PaymentType": "Cash" + }, + { + "Id": 18528, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2017-05-11T18:57:27", + "TransactionId": 67915847, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 950, + "CustomerInfo": 44483946, + "PaymentType": "Debit Card" + }, + { + "Id": 18529, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2017-11-17T12:16:16", + "TransactionId": 74238674, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 612, + "CustomerInfo": 19419345, + "PaymentType": "Credit Card" + }, + { + "Id": 18530, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-1", + "TransactionDate": "2019-04-12T13:03:04", + "TransactionId": 59348641, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 195, + "CustomerInfo": 99925858, + "PaymentType": "Credit Card" + }, + { + "Id": 18531, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-3", + "TransactionDate": "2019-08-12T11:09:36", + "TransactionId": 68270319, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 344, + "CustomerInfo": 83913045, + "PaymentType": "Debit Card" + }, + { + "Id": 18532, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-02-23T11:40:34", + "TransactionId": 52460315, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 259, + "CustomerInfo": 80310650, + "PaymentType": "Cash" + }, + { + "Id": 18533, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2018-08-11T14:21:33", + "TransactionId": 21110735, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 262, + "CustomerInfo": 41748939, + "PaymentType": "Cash" + }, + { + "Id": 18534, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2019-04-22T13:10:51", + "TransactionId": 86653389, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 154, + "CustomerInfo": 14739734, + "PaymentType": "Debit Card" + }, + { + "Id": 18535, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2017-05-02T15:55:52", + "TransactionId": 68252385, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 276, + "CustomerInfo": 10076421, + "PaymentType": "Debit Card" + }, + { + "Id": 18536, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2016-11-04T07:51:53", + "TransactionId": 53018843, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 477, + "CustomerInfo": 38133523, + "PaymentType": "Credit Card" + }, + { + "Id": 18537, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-5", + "TransactionDate": "2016-01-29T13:33:10", + "TransactionId": 20517454, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 654, + "CustomerInfo": 10564914, + "PaymentType": "Credit Card" + }, + { + "Id": 18538, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-10-12T13:34:19", + "TransactionId": 91520305, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 104, + "CustomerInfo": 34281911, + "PaymentType": "Debit Card" + }, + { + "Id": 18539, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-06-27T09:30:06", + "TransactionId": 59021191, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 942, + "CustomerInfo": 16801115, + "PaymentType": "Debit Card" + }, + { + "Id": 18540, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2018-12-18T07:52:28", + "TransactionId": 607267, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 685, + "CustomerInfo": 56165357, + "PaymentType": "Credit Card" + }, + { + "Id": 18541, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2016-03-08T12:03:27", + "TransactionId": 4690606, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 677, + "CustomerInfo": 70267554, + "PaymentType": "Cash" + }, + { + "Id": 18542, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2019-07-08T18:31:32", + "TransactionId": 3964640, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 293, + "CustomerInfo": 736418, + "PaymentType": "Cash" + }, + { + "Id": 18543, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2018-05-27T18:14:07", + "TransactionId": 99561655, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 243, + "CustomerInfo": 32943789, + "PaymentType": "Debit Card" + }, + { + "Id": 18544, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-4", + "TransactionDate": "2017-04-24T07:25:24", + "TransactionId": 25322339, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 679, + "CustomerInfo": 57045069, + "PaymentType": "Cash" + }, + { + "Id": 18545, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2017-08-25T11:51:30", + "TransactionId": 35764038, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 556, + "CustomerInfo": 24923495, + "PaymentType": "Debit Card" + }, + { + "Id": 18546, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2017-12-31T07:52:36", + "TransactionId": 23001056, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 667, + "CustomerInfo": 12597780, + "PaymentType": "Debit Card" + }, + { + "Id": 18547, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2016-07-05T10:31:09", + "TransactionId": 75734059, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 310, + "CustomerInfo": 70247286, + "PaymentType": "Debit Card" + }, + { + "Id": 18548, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-1", + "TransactionDate": "2019-07-18T09:17:17", + "TransactionId": 5114908, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 568, + "CustomerInfo": 78894862, + "PaymentType": "Debit Card" + }, + { + "Id": 18549, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2017-01-20T15:27:13", + "TransactionId": 80348136, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 587, + "CustomerInfo": 9725853, + "PaymentType": "Cash" + }, + { + "Id": 18550, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-5", + "TransactionDate": "2019-05-19T09:53:25", + "TransactionId": 52967656, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 130, + "CustomerInfo": 2529851, + "PaymentType": "Credit Card" + }, + { + "Id": 18551, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2018-03-16T17:40:42", + "TransactionId": 67444695, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 508, + "CustomerInfo": 95331489, + "PaymentType": "Debit Card" + }, + { + "Id": 18552, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2019-10-26T07:07:06", + "TransactionId": 41360889, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 770, + "CustomerInfo": 82988375, + "PaymentType": "Credit Card" + }, + { + "Id": 18553, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2017-10-25T18:33:50", + "TransactionId": 73577500, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 589, + "CustomerInfo": 85782890, + "PaymentType": "Debit Card" + }, + { + "Id": 18554, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-12-01T16:54:29", + "TransactionId": 80096952, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 560, + "CustomerInfo": 84072197, + "PaymentType": "Credit Card" + }, + { + "Id": 18555, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2016-09-27T08:07:09", + "TransactionId": 81417736, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 209, + "CustomerInfo": 62960451, + "PaymentType": "Debit Card" + }, + { + "Id": 18556, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-11-10T11:18:49", + "TransactionId": 96157732, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 711, + "CustomerInfo": 25606492, + "PaymentType": "Cash" + }, + { + "Id": 18557, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-2", + "TransactionDate": "2019-09-14T19:36:55", + "TransactionId": 85282249, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 179, + "CustomerInfo": 25216862, + "PaymentType": "Cash" + }, + { + "Id": 18558, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2017-12-22T19:52:28", + "TransactionId": 76801571, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 354, + "CustomerInfo": 11477965, + "PaymentType": "Debit Card" + }, + { + "Id": 18559, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-5", + "TransactionDate": "2018-10-04T12:14:59", + "TransactionId": 85734261, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 996, + "CustomerInfo": 87801524, + "PaymentType": "Cash" + }, + { + "Id": 18560, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-03-09T13:27:16", + "TransactionId": 80133513, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 843, + "CustomerInfo": 29714319, + "PaymentType": "Cash" + }, + { + "Id": 18561, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-4", + "TransactionDate": "2017-07-21T15:35:08", + "TransactionId": 77123194, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 645, + "CustomerInfo": 87894350, + "PaymentType": "Credit Card" + }, + { + "Id": 18562, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2019-11-07T19:33:53", + "TransactionId": 38308703, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 706, + "CustomerInfo": 40209480, + "PaymentType": "Credit Card" + }, + { + "Id": 18563, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2016-02-23T13:45:16", + "TransactionId": 84589468, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 969, + "CustomerInfo": 92999548, + "PaymentType": "Cash" + }, + { + "Id": 18564, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-10-31T19:57:04", + "TransactionId": 99388103, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 878, + "CustomerInfo": 54363630, + "PaymentType": "Cash" + }, + { + "Id": 18565, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2016-03-07T11:57:33", + "TransactionId": 43772884, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 111, + "CustomerInfo": 75306201, + "PaymentType": "Debit Card" + }, + { + "Id": 18566, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2016-10-16T09:12:06", + "TransactionId": 23492308, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 221, + "CustomerInfo": 5554007, + "PaymentType": "Debit Card" + }, + { + "Id": 18567, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2016-01-03T13:33:19", + "TransactionId": 22852067, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 361, + "CustomerInfo": 69770256, + "PaymentType": "Cash" + }, + { + "Id": 18568, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-09-20T07:29:08", + "TransactionId": 65096648, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 318, + "CustomerInfo": 64366154, + "PaymentType": "Cash" + }, + { + "Id": 18569, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2016-04-10T19:27:07", + "TransactionId": 31406407, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 359, + "CustomerInfo": 93696126, + "PaymentType": "Credit Card" + }, + { + "Id": 18570, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2016-12-28T14:09:53", + "TransactionId": 3477959, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 953, + "CustomerInfo": 93682439, + "PaymentType": "Cash" + }, + { + "Id": 18571, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2017-07-29T17:04:34", + "TransactionId": 96126010, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 768, + "CustomerInfo": 17031610, + "PaymentType": "Credit Card" + }, + { + "Id": 18572, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2018-05-08T17:24:35", + "TransactionId": 6819832, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 774, + "CustomerInfo": 35153428, + "PaymentType": "Credit Card" + }, + { + "Id": 18573, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2018-04-14T13:42:58", + "TransactionId": 68174716, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 244, + "CustomerInfo": 10658282, + "PaymentType": "Debit Card" + }, + { + "Id": 18574, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2017-06-05T19:11:51", + "TransactionId": 32898201, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 925, + "CustomerInfo": 6996659, + "PaymentType": "Debit Card" + }, + { + "Id": 18575, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2016-10-21T11:30:20", + "TransactionId": 74718974, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 22281455, + "PaymentType": "Debit Card" + }, + { + "Id": 18576, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-5", + "TransactionDate": "2017-04-03T19:24:40", + "TransactionId": 72975366, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 451, + "CustomerInfo": 12476026, + "PaymentType": "Cash" + }, + { + "Id": 18577, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-11-13T10:24:49", + "TransactionId": 91606027, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 681, + "CustomerInfo": 48790202, + "PaymentType": "Cash" + }, + { + "Id": 18578, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2018-02-10T07:00:03", + "TransactionId": 92646573, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 255, + "CustomerInfo": 24353565, + "PaymentType": "Debit Card" + }, + { + "Id": 18579, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-11-23T12:09:56", + "TransactionId": 89369607, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 190, + "CustomerInfo": 2590683, + "PaymentType": "Cash" + }, + { + "Id": 18580, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2016-02-18T16:38:21", + "TransactionId": 85811848, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 226, + "CustomerInfo": 57604168, + "PaymentType": "Credit Card" + }, + { + "Id": 18581, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2017-11-13T10:25:58", + "TransactionId": 30747090, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 23297145, + "PaymentType": "Debit Card" + }, + { + "Id": 18582, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2016-11-16T18:31:41", + "TransactionId": 93385951, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 229, + "CustomerInfo": 48214858, + "PaymentType": "Cash" + }, + { + "Id": 18583, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2019-07-05T14:07:52", + "TransactionId": 45010821, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 869, + "CustomerInfo": 61154356, + "PaymentType": "Debit Card" + }, + { + "Id": 18584, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-5", + "TransactionDate": "2016-01-26T08:22:16", + "TransactionId": 68691015, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 96, + "CustomerInfo": 44126632, + "PaymentType": "Debit Card" + }, + { + "Id": 18585, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2018-07-02T18:47:48", + "TransactionId": 53389058, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 254, + "CustomerInfo": 31798454, + "PaymentType": "Cash" + }, + { + "Id": 18586, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-5", + "TransactionDate": "2019-01-26T07:17:28", + "TransactionId": 89972340, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 693, + "CustomerInfo": 94484879, + "PaymentType": "Credit Card" + }, + { + "Id": 18587, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2017-07-02T14:20:15", + "TransactionId": 45339730, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 844, + "CustomerInfo": 5557835, + "PaymentType": "Credit Card" + }, + { + "Id": 18588, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2017-09-10T07:24:32", + "TransactionId": 99690487, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 785, + "CustomerInfo": 40527988, + "PaymentType": "Debit Card" + }, + { + "Id": 18589, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2019-04-19T09:22:19", + "TransactionId": 43954344, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 39, + "CustomerInfo": 19131621, + "PaymentType": "Debit Card" + }, + { + "Id": 18590, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-1", + "TransactionDate": "2016-11-18T12:31:15", + "TransactionId": 11067493, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 299, + "CustomerInfo": 30955086, + "PaymentType": "Debit Card" + }, + { + "Id": 18591, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2019-09-23T14:27:19", + "TransactionId": 12273170, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 974, + "CustomerInfo": 20892410, + "PaymentType": "Cash" + }, + { + "Id": 18592, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2017-02-19T11:45:53", + "TransactionId": 61779487, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 742, + "CustomerInfo": 81639351, + "PaymentType": "Cash" + }, + { + "Id": 18593, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2016-03-07T12:16:34", + "TransactionId": 98385643, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 287, + "CustomerInfo": 14720306, + "PaymentType": "Cash" + }, + { + "Id": 18594, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2017-06-11T09:22:54", + "TransactionId": 91450405, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 978, + "CustomerInfo": 56014752, + "PaymentType": "Debit Card" + }, + { + "Id": 18595, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2018-09-03T10:58:22", + "TransactionId": 53250142, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 360, + "CustomerInfo": 26807516, + "PaymentType": "Credit Card" + }, + { + "Id": 18596, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-11-07T08:53:48", + "TransactionId": 39678002, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 706, + "CustomerInfo": 3155920, + "PaymentType": "Credit Card" + }, + { + "Id": 18597, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-5", + "TransactionDate": "2017-10-25T10:47:17", + "TransactionId": 88422021, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 977, + "CustomerInfo": 72126188, + "PaymentType": "Credit Card" + }, + { + "Id": 18598, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2017-08-22T19:21:48", + "TransactionId": 55590326, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 827, + "CustomerInfo": 11323713, + "PaymentType": "Credit Card" + }, + { + "Id": 18599, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2017-12-25T15:13:49", + "TransactionId": 42638674, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 405, + "CustomerInfo": 5963637, + "PaymentType": "Credit Card" + }, + { + "Id": 18600, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2018-03-26T12:57:19", + "TransactionId": 1714127, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 37, + "CustomerInfo": 7610927, + "PaymentType": "Cash" + }, + { + "Id": 18601, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2016-08-23T10:57:39", + "TransactionId": 56835341, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 587, + "CustomerInfo": 46005981, + "PaymentType": "Debit Card" + }, + { + "Id": 18602, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2018-01-07T09:01:35", + "TransactionId": 37640139, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 323, + "CustomerInfo": 12530119, + "PaymentType": "Credit Card" + }, + { + "Id": 18603, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-09-11T11:28:28", + "TransactionId": 93153444, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 14, + "CustomerInfo": 56577184, + "PaymentType": "Cash" + }, + { + "Id": 18604, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2017-12-10T12:12:49", + "TransactionId": 84725755, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 478, + "CustomerInfo": 52775304, + "PaymentType": "Cash" + }, + { + "Id": 18605, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2019-06-23T14:19:58", + "TransactionId": 54612105, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 635, + "CustomerInfo": 83725175, + "PaymentType": "Debit Card" + }, + { + "Id": 18606, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2019-02-10T12:04:02", + "TransactionId": 19435840, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 285, + "CustomerInfo": 21840979, + "PaymentType": "Cash" + }, + { + "Id": 18607, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2018-05-19T09:22:11", + "TransactionId": 36196136, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 604, + "CustomerInfo": 78612904, + "PaymentType": "Debit Card" + }, + { + "Id": 18608, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-2", + "TransactionDate": "2017-03-04T07:32:01", + "TransactionId": 676810, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 18, + "CustomerInfo": 20235779, + "PaymentType": "Cash" + }, + { + "Id": 18609, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-09-02T09:12:49", + "TransactionId": 25384910, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 814, + "CustomerInfo": 85081073, + "PaymentType": "Debit Card" + }, + { + "Id": 18610, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-1", + "TransactionDate": "2017-12-03T14:13:12", + "TransactionId": 1702069, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 912, + "CustomerInfo": 90795273, + "PaymentType": "Cash" + }, + { + "Id": 18611, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2019-07-02T07:24:32", + "TransactionId": 6241566, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 346, + "CustomerInfo": 27375856, + "PaymentType": "Debit Card" + }, + { + "Id": 18612, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2017-05-25T07:50:27", + "TransactionId": 71643116, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 854, + "CustomerInfo": 46611908, + "PaymentType": "Credit Card" + }, + { + "Id": 18613, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2017-01-25T14:09:53", + "TransactionId": 31932632, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 840, + "CustomerInfo": 55652174, + "PaymentType": "Cash" + }, + { + "Id": 18614, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2017-08-20T12:23:11", + "TransactionId": 52783738, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 726, + "CustomerInfo": 5519574, + "PaymentType": "Debit Card" + }, + { + "Id": 18615, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-08-04T10:28:08", + "TransactionId": 20615065, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 954, + "CustomerInfo": 26751602, + "PaymentType": "Credit Card" + }, + { + "Id": 18616, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-11-01T09:14:50", + "TransactionId": 63908121, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 238, + "CustomerInfo": 26778674, + "PaymentType": "Cash" + }, + { + "Id": 18617, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-3", + "TransactionDate": "2016-12-08T17:15:39", + "TransactionId": 40271829, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 361, + "CustomerInfo": 74764349, + "PaymentType": "Cash" + }, + { + "Id": 18618, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2018-04-16T09:49:41", + "TransactionId": 99537998, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 411, + "CustomerInfo": 18109676, + "PaymentType": "Cash" + }, + { + "Id": 18619, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2019-01-19T11:23:25", + "TransactionId": 49757824, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 34, + "CustomerInfo": 78124410, + "PaymentType": "Debit Card" + }, + { + "Id": 18620, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2016-10-10T17:57:42", + "TransactionId": 35676586, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 210, + "CustomerInfo": 48110032, + "PaymentType": "Credit Card" + }, + { + "Id": 18621, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2019-10-05T14:44:27", + "TransactionId": 97135574, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 1000, + "CustomerInfo": 66657311, + "PaymentType": "Debit Card" + }, + { + "Id": 18622, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2018-03-03T15:18:09", + "TransactionId": 51433660, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 179, + "CustomerInfo": 87157140, + "PaymentType": "Cash" + }, + { + "Id": 18623, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2017-04-21T09:23:54", + "TransactionId": 4264170, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 99, + "CustomerInfo": 88117862, + "PaymentType": "Credit Card" + }, + { + "Id": 18624, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2019-04-22T12:21:36", + "TransactionId": 48521798, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 102, + "CustomerInfo": 98624191, + "PaymentType": "Debit Card" + }, + { + "Id": 18625, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2017-11-20T12:48:23", + "TransactionId": 68508890, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 111, + "CustomerInfo": 72701269, + "PaymentType": "Debit Card" + }, + { + "Id": 18626, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-09-23T12:39:19", + "TransactionId": 7552890, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 318, + "CustomerInfo": 27305062, + "PaymentType": "Cash" + }, + { + "Id": 18627, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2018-08-23T18:09:48", + "TransactionId": 76281954, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 38, + "CustomerInfo": 12096334, + "PaymentType": "Debit Card" + }, + { + "Id": 18628, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2018-02-27T16:26:07", + "TransactionId": 546289, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 350, + "CustomerInfo": 2082741, + "PaymentType": "Credit Card" + }, + { + "Id": 18629, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-5", + "TransactionDate": "2019-09-25T17:34:57", + "TransactionId": 53120163, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 357, + "CustomerInfo": 83864638, + "PaymentType": "Debit Card" + }, + { + "Id": 18630, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2019-06-19T10:26:07", + "TransactionId": 24336482, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 880, + "CustomerInfo": 59426600, + "PaymentType": "Credit Card" + }, + { + "Id": 18631, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-2", + "TransactionDate": "2016-01-20T08:35:57", + "TransactionId": 35780971, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 788, + "CustomerInfo": 65692762, + "PaymentType": "Cash" + }, + { + "Id": 18632, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2019-04-13T16:24:32", + "TransactionId": 33304416, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 323, + "CustomerInfo": 7878341, + "PaymentType": "Credit Card" + }, + { + "Id": 18633, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2019-09-05T14:59:43", + "TransactionId": 18594758, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 474, + "CustomerInfo": 6143980, + "PaymentType": "Debit Card" + }, + { + "Id": 18634, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-01-12T12:14:07", + "TransactionId": 79240613, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 605, + "CustomerInfo": 14454885, + "PaymentType": "Cash" + }, + { + "Id": 18635, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2019-01-06T09:49:41", + "TransactionId": 96768922, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 849, + "CustomerInfo": 88461242, + "PaymentType": "Credit Card" + }, + { + "Id": 18636, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-02-19T07:39:48", + "TransactionId": 45161242, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 920, + "CustomerInfo": 32372032, + "PaymentType": "Debit Card" + }, + { + "Id": 18637, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2019-05-10T10:32:27", + "TransactionId": 5674619, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 465, + "CustomerInfo": 54574368, + "PaymentType": "Cash" + }, + { + "Id": 18638, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2019-05-24T16:49:52", + "TransactionId": 5442142, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 360, + "CustomerInfo": 6871089, + "PaymentType": "Credit Card" + }, + { + "Id": 18639, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2017-07-04T15:08:56", + "TransactionId": 75104542, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 738, + "CustomerInfo": 10085777, + "PaymentType": "Credit Card" + }, + { + "Id": 18640, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-08-14T17:14:21", + "TransactionId": 58542924, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 428, + "CustomerInfo": 91809238, + "PaymentType": "Credit Card" + }, + { + "Id": 18641, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2017-02-07T13:11:17", + "TransactionId": 315473, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 222, + "CustomerInfo": 97120614, + "PaymentType": "Credit Card" + }, + { + "Id": 18642, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2017-11-11T07:47:51", + "TransactionId": 84093212, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 659, + "CustomerInfo": 19559691, + "PaymentType": "Debit Card" + }, + { + "Id": 18643, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-1", + "TransactionDate": "2016-12-18T14:38:41", + "TransactionId": 58078923, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 531, + "CustomerInfo": 19258989, + "PaymentType": "Credit Card" + }, + { + "Id": 18644, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2018-06-01T12:58:11", + "TransactionId": 98152344, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 754, + "CustomerInfo": 73630542, + "PaymentType": "Cash" + }, + { + "Id": 18645, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2018-08-18T18:24:12", + "TransactionId": 35411690, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 171, + "CustomerInfo": 72414215, + "PaymentType": "Debit Card" + }, + { + "Id": 18646, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2019-02-13T13:55:03", + "TransactionId": 55683693, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 859, + "CustomerInfo": 83921490, + "PaymentType": "Cash" + }, + { + "Id": 18647, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2018-10-22T07:30:52", + "TransactionId": 14970387, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 429, + "CustomerInfo": 74793718, + "PaymentType": "Credit Card" + }, + { + "Id": 18648, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2019-01-01T08:09:10", + "TransactionId": 93858476, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 194, + "CustomerInfo": 22521831, + "PaymentType": "Debit Card" + }, + { + "Id": 18649, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2019-01-03T12:51:24", + "TransactionId": 20399327, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 423, + "CustomerInfo": 83401921, + "PaymentType": "Cash" + }, + { + "Id": 18650, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2016-09-15T19:18:37", + "TransactionId": 30388149, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 133, + "CustomerInfo": 50267487, + "PaymentType": "Cash" + }, + { + "Id": 18651, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2016-08-02T11:03:59", + "TransactionId": 85111335, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 319, + "CustomerInfo": 19499468, + "PaymentType": "Debit Card" + }, + { + "Id": 18652, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2019-09-14T15:52:16", + "TransactionId": 8745355, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 240, + "CustomerInfo": 13065431, + "PaymentType": "Cash" + }, + { + "Id": 18653, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-1", + "TransactionDate": "2017-11-14T17:37:41", + "TransactionId": 40195426, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 43, + "CustomerInfo": 1476608, + "PaymentType": "Credit Card" + }, + { + "Id": 18654, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2018-07-19T11:32:56", + "TransactionId": 49696748, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 749, + "CustomerInfo": 89911964, + "PaymentType": "Cash" + }, + { + "Id": 18655, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2017-07-22T12:07:47", + "TransactionId": 46459106, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 444, + "CustomerInfo": 41270714, + "PaymentType": "Credit Card" + }, + { + "Id": 18656, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2018-09-18T19:13:00", + "TransactionId": 52519367, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 123, + "CustomerInfo": 77826119, + "PaymentType": "Debit Card" + }, + { + "Id": 18657, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2016-01-02T10:27:50", + "TransactionId": 37243272, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 847, + "CustomerInfo": 28962473, + "PaymentType": "Credit Card" + }, + { + "Id": 18658, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-04-25T08:15:22", + "TransactionId": 5218106, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 497, + "CustomerInfo": 29025230, + "PaymentType": "Cash" + }, + { + "Id": 18659, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-3", + "TransactionDate": "2019-08-17T13:09:50", + "TransactionId": 39880164, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 843, + "CustomerInfo": 43554280, + "PaymentType": "Cash" + }, + { + "Id": 18660, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2018-03-14T15:48:23", + "TransactionId": 47020089, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 335, + "CustomerInfo": 3439448, + "PaymentType": "Cash" + }, + { + "Id": 18661, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-3", + "TransactionDate": "2019-03-07T13:24:14", + "TransactionId": 69146997, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 252, + "CustomerInfo": 78339573, + "PaymentType": "Debit Card" + }, + { + "Id": 18662, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2017-01-19T07:12:52", + "TransactionId": 79103598, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 434, + "CustomerInfo": 18590880, + "PaymentType": "Credit Card" + }, + { + "Id": 18663, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2018-08-21T08:42:52", + "TransactionId": 78889093, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 702, + "CustomerInfo": 68142327, + "PaymentType": "Cash" + }, + { + "Id": 18664, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2017-02-18T16:07:24", + "TransactionId": 28704941, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 766, + "CustomerInfo": 64994055, + "PaymentType": "Credit Card" + }, + { + "Id": 18665, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2018-08-19T19:04:31", + "TransactionId": 57367406, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 863, + "CustomerInfo": 15473702, + "PaymentType": "Credit Card" + }, + { + "Id": 18666, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2019-12-21T08:17:14", + "TransactionId": 14256527, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 737, + "CustomerInfo": 79428663, + "PaymentType": "Cash" + }, + { + "Id": 18667, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2017-09-26T10:40:05", + "TransactionId": 6982779, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 145, + "CustomerInfo": 94190255, + "PaymentType": "Cash" + }, + { + "Id": 18668, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2016-02-18T07:18:20", + "TransactionId": 80555905, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 60306902, + "PaymentType": "Cash" + }, + { + "Id": 18669, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2019-01-11T18:04:02", + "TransactionId": 53580092, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 440, + "CustomerInfo": 9991559, + "PaymentType": "Debit Card" + }, + { + "Id": 18670, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-4", + "TransactionDate": "2019-10-08T11:12:46", + "TransactionId": 52507922, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 335, + "CustomerInfo": 93795433, + "PaymentType": "Cash" + }, + { + "Id": 18671, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-11-24T11:34:39", + "TransactionId": 63477753, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 612, + "CustomerInfo": 73613401, + "PaymentType": "Debit Card" + }, + { + "Id": 18672, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2018-02-12T07:13:26", + "TransactionId": 75421575, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 625, + "CustomerInfo": 1359371, + "PaymentType": "Cash" + }, + { + "Id": 18673, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-10-18T11:44:01", + "TransactionId": 74143346, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 821, + "CustomerInfo": 17719402, + "PaymentType": "Cash" + }, + { + "Id": 18674, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2017-05-09T10:23:05", + "TransactionId": 80139438, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 377, + "CustomerInfo": 82281232, + "PaymentType": "Credit Card" + }, + { + "Id": 18675, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2018-06-30T13:45:24", + "TransactionId": 94944792, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 531, + "CustomerInfo": 67106466, + "PaymentType": "Cash" + }, + { + "Id": 18676, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-04-16T08:35:57", + "TransactionId": 71450381, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 96925623, + "PaymentType": "Credit Card" + }, + { + "Id": 18677, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-10-06T14:00:58", + "TransactionId": 28127314, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 803, + "CustomerInfo": 83921056, + "PaymentType": "Credit Card" + }, + { + "Id": 18678, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2017-09-08T16:30:52", + "TransactionId": 77255231, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 277, + "CustomerInfo": 36506494, + "PaymentType": "Debit Card" + }, + { + "Id": 18679, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2019-12-07T14:29:11", + "TransactionId": 65405640, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 533, + "CustomerInfo": 60657672, + "PaymentType": "Credit Card" + }, + { + "Id": 18680, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2017-11-01T09:17:25", + "TransactionId": 69143394, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 751, + "CustomerInfo": 87239082, + "PaymentType": "Debit Card" + }, + { + "Id": 18681, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-11-07T18:02:53", + "TransactionId": 1816077, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 913, + "CustomerInfo": 92749463, + "PaymentType": "Credit Card" + }, + { + "Id": 18682, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-11-08T13:19:47", + "TransactionId": 53953105, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 611, + "CustomerInfo": 72936822, + "PaymentType": "Credit Card" + }, + { + "Id": 18683, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2017-02-10T14:32:04", + "TransactionId": 55499622, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 760, + "CustomerInfo": 27160975, + "PaymentType": "Debit Card" + }, + { + "Id": 18684, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2017-09-13T19:41:23", + "TransactionId": 35417872, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 23, + "CustomerInfo": 14364111, + "PaymentType": "Credit Card" + }, + { + "Id": 18685, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-5", + "TransactionDate": "2016-01-23T16:54:55", + "TransactionId": 12537168, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 918, + "CustomerInfo": 43598110, + "PaymentType": "Debit Card" + }, + { + "Id": 18686, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2018-09-27T12:29:40", + "TransactionId": 91103762, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 463, + "CustomerInfo": 8229134, + "PaymentType": "Debit Card" + }, + { + "Id": 18687, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2016-03-25T13:08:59", + "TransactionId": 20999839, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 79, + "CustomerInfo": 29416812, + "PaymentType": "Cash" + }, + { + "Id": 18688, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2017-03-13T11:11:11", + "TransactionId": 70453046, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 744, + "CustomerInfo": 18260029, + "PaymentType": "Credit Card" + }, + { + "Id": 18689, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2018-07-02T16:23:05", + "TransactionId": 65536057, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 769, + "CustomerInfo": 27672539, + "PaymentType": "Cash" + }, + { + "Id": 18690, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2019-03-10T07:53:20", + "TransactionId": 30638992, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 456, + "CustomerInfo": 93572223, + "PaymentType": "Debit Card" + }, + { + "Id": 18691, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-01-14T13:53:54", + "TransactionId": 25972376, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 408, + "CustomerInfo": 37833311, + "PaymentType": "Debit Card" + }, + { + "Id": 18692, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-1", + "TransactionDate": "2018-11-16T18:57:19", + "TransactionId": 63574114, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 565, + "CustomerInfo": 79671443, + "PaymentType": "Credit Card" + }, + { + "Id": 18693, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2016-10-27T07:27:07", + "TransactionId": 37434237, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 604, + "CustomerInfo": 37029506, + "PaymentType": "Credit Card" + }, + { + "Id": 18694, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-07-10T14:53:05", + "TransactionId": 52553883, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 870, + "CustomerInfo": 86953970, + "PaymentType": "Cash" + }, + { + "Id": 18695, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2017-09-27T19:47:25", + "TransactionId": 20488203, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 434, + "CustomerInfo": 14888014, + "PaymentType": "Debit Card" + }, + { + "Id": 18696, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-5", + "TransactionDate": "2018-08-18T11:43:26", + "TransactionId": 94393404, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 831, + "CustomerInfo": 85024091, + "PaymentType": "Credit Card" + }, + { + "Id": 18697, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2016-08-31T09:27:04", + "TransactionId": 27400954, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 306, + "CustomerInfo": 40654027, + "PaymentType": "Credit Card" + }, + { + "Id": 18698, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2016-10-26T18:41:11", + "TransactionId": 74093129, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 263, + "CustomerInfo": 60276276, + "PaymentType": "Credit Card" + }, + { + "Id": 18699, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-5", + "TransactionDate": "2016-04-25T17:36:49", + "TransactionId": 92526557, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 58, + "CustomerInfo": 95058383, + "PaymentType": "Debit Card" + }, + { + "Id": 18700, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2018-11-25T13:14:36", + "TransactionId": 35141710, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 126, + "CustomerInfo": 10134252, + "PaymentType": "Debit Card" + }, + { + "Id": 18701, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-1", + "TransactionDate": "2019-11-05T09:14:15", + "TransactionId": 25820772, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 246, + "CustomerInfo": 48486761, + "PaymentType": "Cash" + }, + { + "Id": 18702, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2018-12-04T12:53:17", + "TransactionId": 38821156, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 590, + "CustomerInfo": 68433373, + "PaymentType": "Debit Card" + }, + { + "Id": 18703, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2016-04-24T14:34:48", + "TransactionId": 49603498, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 427, + "CustomerInfo": 38917052, + "PaymentType": "Debit Card" + }, + { + "Id": 18704, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2018-06-14T19:02:47", + "TransactionId": 16934879, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 360, + "CustomerInfo": 55714898, + "PaymentType": "Credit Card" + }, + { + "Id": 18705, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2019-03-20T11:51:56", + "TransactionId": 24611278, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 344, + "CustomerInfo": 46816786, + "PaymentType": "Debit Card" + }, + { + "Id": 18706, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-08-08T07:18:55", + "TransactionId": 67320325, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 734, + "CustomerInfo": 92598671, + "PaymentType": "Credit Card" + }, + { + "Id": 18707, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2018-01-17T12:34:08", + "TransactionId": 12426974, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 42, + "CustomerInfo": 31687331, + "PaymentType": "Credit Card" + }, + { + "Id": 18708, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2016-12-07T16:17:11", + "TransactionId": 12864183, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 551, + "CustomerInfo": 41763177, + "PaymentType": "Credit Card" + }, + { + "Id": 18709, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2016-02-17T11:42:17", + "TransactionId": 64338800, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 5, + "CustomerInfo": 42930156, + "PaymentType": "Cash" + }, + { + "Id": 18710, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2016-10-08T17:16:13", + "TransactionId": 42227157, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 281, + "CustomerInfo": 80239192, + "PaymentType": "Cash" + }, + { + "Id": 18711, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-5", + "TransactionDate": "2019-07-19T16:03:56", + "TransactionId": 56979489, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 633, + "CustomerInfo": 92388096, + "PaymentType": "Debit Card" + }, + { + "Id": 18712, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2018-07-07T15:56:27", + "TransactionId": 51857136, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 360, + "CustomerInfo": 95320562, + "PaymentType": "Credit Card" + }, + { + "Id": 18713, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-4", + "TransactionDate": "2019-07-26T08:24:35", + "TransactionId": 28920550, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 226, + "CustomerInfo": 99474544, + "PaymentType": "Credit Card" + }, + { + "Id": 18714, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2019-08-07T10:15:01", + "TransactionId": 71167458, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 333, + "CustomerInfo": 73748477, + "PaymentType": "Cash" + }, + { + "Id": 18715, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2019-03-20T18:49:06", + "TransactionId": 86090909, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 749, + "CustomerInfo": 55617603, + "PaymentType": "Credit Card" + }, + { + "Id": 18716, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2019-10-20T09:38:18", + "TransactionId": 20773802, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 546, + "CustomerInfo": 20005678, + "PaymentType": "Credit Card" + }, + { + "Id": 18717, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-3", + "TransactionDate": "2017-05-04T13:07:32", + "TransactionId": 73896657, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 321, + "CustomerInfo": 74853240, + "PaymentType": "Cash" + }, + { + "Id": 18718, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2016-01-09T18:24:20", + "TransactionId": 65776817, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 12, + "CustomerInfo": 62806386, + "PaymentType": "Cash" + }, + { + "Id": 18719, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-05-30T11:33:13", + "TransactionId": 20293999, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 553, + "CustomerInfo": 7484854, + "PaymentType": "Debit Card" + }, + { + "Id": 18720, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2018-10-21T09:35:08", + "TransactionId": 65921314, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 788, + "CustomerInfo": 2383879, + "PaymentType": "Debit Card" + }, + { + "Id": 18721, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-2", + "TransactionDate": "2016-08-16T15:33:50", + "TransactionId": 44295741, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 933, + "CustomerInfo": 8626062, + "PaymentType": "Cash" + }, + { + "Id": 18722, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2018-11-30T14:41:43", + "TransactionId": 50162564, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 890, + "CustomerInfo": 26383430, + "PaymentType": "Cash" + }, + { + "Id": 18723, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2019-09-10T10:55:47", + "TransactionId": 88239488, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 71, + "CustomerInfo": 94288215, + "PaymentType": "Debit Card" + }, + { + "Id": 18724, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2019-08-31T17:28:54", + "TransactionId": 60470646, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 531, + "CustomerInfo": 39921840, + "PaymentType": "Credit Card" + }, + { + "Id": 18725, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-4", + "TransactionDate": "2016-06-09T11:18:14", + "TransactionId": 91118786, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 237, + "CustomerInfo": 53627365, + "PaymentType": "Debit Card" + }, + { + "Id": 18726, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-06-28T11:11:28", + "TransactionId": 23484561, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 741, + "CustomerInfo": 58275140, + "PaymentType": "Cash" + }, + { + "Id": 18727, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2018-02-20T17:01:06", + "TransactionId": 68938986, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 897, + "CustomerInfo": 76870777, + "PaymentType": "Cash" + }, + { + "Id": 18728, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-3", + "TransactionDate": "2019-07-19T09:44:56", + "TransactionId": 35625654, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 784, + "CustomerInfo": 97996452, + "PaymentType": "Credit Card" + }, + { + "Id": 18729, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2017-03-26T19:21:04", + "TransactionId": 31510832, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 138, + "CustomerInfo": 68282341, + "PaymentType": "Credit Card" + }, + { + "Id": 18730, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2019-12-03T19:59:48", + "TransactionId": 63050127, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 44715548, + "PaymentType": "Credit Card" + }, + { + "Id": 18731, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-4", + "TransactionDate": "2019-01-28T19:20:21", + "TransactionId": 52179070, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 284, + "CustomerInfo": 2264901, + "PaymentType": "Cash" + }, + { + "Id": 18732, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2017-09-19T11:17:48", + "TransactionId": 8382775, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 459, + "CustomerInfo": 44165865, + "PaymentType": "Debit Card" + }, + { + "Id": 18733, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-5", + "TransactionDate": "2017-10-26T13:06:49", + "TransactionId": 80856938, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 366, + "CustomerInfo": 7681583, + "PaymentType": "Credit Card" + }, + { + "Id": 18734, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-3", + "TransactionDate": "2019-07-23T09:45:48", + "TransactionId": 91374208, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 105, + "CustomerInfo": 94210855, + "PaymentType": "Credit Card" + }, + { + "Id": 18735, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-10-28T08:26:44", + "TransactionId": 6302048, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 991, + "CustomerInfo": 65112246, + "PaymentType": "Debit Card" + }, + { + "Id": 18736, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2019-12-01T18:02:27", + "TransactionId": 77061823, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 801, + "CustomerInfo": 50832434, + "PaymentType": "Cash" + }, + { + "Id": 18737, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2018-12-25T13:45:50", + "TransactionId": 53771620, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 216, + "CustomerInfo": 10240498, + "PaymentType": "Credit Card" + }, + { + "Id": 18738, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2017-06-24T17:28:54", + "TransactionId": 71632387, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 133, + "CustomerInfo": 81357105, + "PaymentType": "Credit Card" + }, + { + "Id": 18739, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-12-20T15:59:11", + "TransactionId": 65633577, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 388, + "CustomerInfo": 52770751, + "PaymentType": "Credit Card" + }, + { + "Id": 18740, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-3", + "TransactionDate": "2017-01-11T10:10:08", + "TransactionId": 55261622, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 937, + "CustomerInfo": 98122499, + "PaymentType": "Cash" + }, + { + "Id": 18741, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-1", + "TransactionDate": "2018-05-31T08:03:16", + "TransactionId": 1766746, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 910, + "CustomerInfo": 70783766, + "PaymentType": "Credit Card" + }, + { + "Id": 18742, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-02-16T19:40:57", + "TransactionId": 12666863, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 643, + "CustomerInfo": 90459822, + "PaymentType": "Cash" + }, + { + "Id": 18743, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2018-03-03T14:40:25", + "TransactionId": 83564267, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 895, + "CustomerInfo": 97929702, + "PaymentType": "Cash" + }, + { + "Id": 18744, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-4", + "TransactionDate": "2017-10-02T09:31:58", + "TransactionId": 79402510, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 568, + "CustomerInfo": 54339052, + "PaymentType": "Debit Card" + }, + { + "Id": 18745, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-08-13T16:56:04", + "TransactionId": 23894162, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 74, + "CustomerInfo": 56376198, + "PaymentType": "Debit Card" + }, + { + "Id": 18746, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2018-05-26T19:38:38", + "TransactionId": 50114114, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 921, + "CustomerInfo": 47207667, + "PaymentType": "Debit Card" + }, + { + "Id": 18747, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-09-09T13:59:23", + "TransactionId": 1312092, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 466, + "CustomerInfo": 29284053, + "PaymentType": "Debit Card" + }, + { + "Id": 18748, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2016-07-25T12:53:25", + "TransactionId": 56043269, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 72, + "CustomerInfo": 93272439, + "PaymentType": "Credit Card" + }, + { + "Id": 18749, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-5", + "TransactionDate": "2018-10-24T17:54:23", + "TransactionId": 10340375, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 602, + "CustomerInfo": 36767849, + "PaymentType": "Credit Card" + }, + { + "Id": 18750, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2018-09-11T08:54:32", + "TransactionId": 74492451, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 235, + "CustomerInfo": 14007980, + "PaymentType": "Credit Card" + }, + { + "Id": 18751, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2017-07-04T19:39:13", + "TransactionId": 31173979, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 14, + "CustomerInfo": 97294661, + "PaymentType": "Cash" + }, + { + "Id": 18752, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2019-07-03T12:13:41", + "TransactionId": 45673268, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 585, + "CustomerInfo": 7642199, + "PaymentType": "Debit Card" + }, + { + "Id": 18753, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2019-06-23T16:12:52", + "TransactionId": 41401510, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 285, + "CustomerInfo": 95684034, + "PaymentType": "Credit Card" + }, + { + "Id": 18754, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2017-07-30T12:40:11", + "TransactionId": 80287713, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 549, + "CustomerInfo": 54649996, + "PaymentType": "Debit Card" + }, + { + "Id": 18755, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2019-12-24T09:38:18", + "TransactionId": 62922364, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 401, + "CustomerInfo": 3815882, + "PaymentType": "Credit Card" + }, + { + "Id": 18756, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2016-01-27T11:52:05", + "TransactionId": 82845370, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 884, + "CustomerInfo": 31275676, + "PaymentType": "Credit Card" + }, + { + "Id": 18757, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-01-11T19:32:44", + "TransactionId": 98521771, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 742, + "CustomerInfo": 10726847, + "PaymentType": "Debit Card" + }, + { + "Id": 18758, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-4", + "TransactionDate": "2019-12-24T09:24:37", + "TransactionId": 66432381, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 148, + "CustomerInfo": 59845734, + "PaymentType": "Debit Card" + }, + { + "Id": 18759, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-1", + "TransactionDate": "2019-10-01T13:03:22", + "TransactionId": 60296475, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 226, + "CustomerInfo": 69261408, + "PaymentType": "Debit Card" + }, + { + "Id": 18760, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-10-09T14:52:13", + "TransactionId": 61256858, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 699, + "CustomerInfo": 44242230, + "PaymentType": "Credit Card" + }, + { + "Id": 18761, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2018-06-25T15:04:11", + "TransactionId": 43564086, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 678, + "CustomerInfo": 63432227, + "PaymentType": "Cash" + }, + { + "Id": 18762, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2016-01-03T10:33:53", + "TransactionId": 56678550, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 548, + "CustomerInfo": 53020480, + "PaymentType": "Credit Card" + }, + { + "Id": 18763, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-4", + "TransactionDate": "2018-04-01T07:48:09", + "TransactionId": 16700650, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 391, + "CustomerInfo": 37064890, + "PaymentType": "Debit Card" + }, + { + "Id": 18764, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2016-07-20T15:28:05", + "TransactionId": 59502864, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 615, + "CustomerInfo": 35065901, + "PaymentType": "Credit Card" + }, + { + "Id": 18765, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2016-02-27T17:54:23", + "TransactionId": 89009477, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 151, + "CustomerInfo": 42701092, + "PaymentType": "Credit Card" + }, + { + "Id": 18766, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2018-06-06T14:02:50", + "TransactionId": 92157696, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 252, + "CustomerInfo": 58955809, + "PaymentType": "Credit Card" + }, + { + "Id": 18767, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-11-20T13:06:06", + "TransactionId": 12433848, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 697, + "CustomerInfo": 43329004, + "PaymentType": "Cash" + }, + { + "Id": 18768, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-10-06T13:18:03", + "TransactionId": 13832775, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 689, + "CustomerInfo": 55878421, + "PaymentType": "Debit Card" + }, + { + "Id": 18769, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-12-09T11:16:31", + "TransactionId": 53424393, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 216, + "CustomerInfo": 74615887, + "PaymentType": "Credit Card" + }, + { + "Id": 18770, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-01-27T14:27:27", + "TransactionId": 66805976, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 62, + "CustomerInfo": 70827721, + "PaymentType": "Cash" + }, + { + "Id": 18771, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2019-03-26T16:08:24", + "TransactionId": 97576307, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 188, + "CustomerInfo": 32543937, + "PaymentType": "Debit Card" + }, + { + "Id": 18772, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2016-04-08T19:44:15", + "TransactionId": 34645278, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 690, + "CustomerInfo": 99912328, + "PaymentType": "Credit Card" + }, + { + "Id": 18773, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2019-09-29T16:30:35", + "TransactionId": 47316975, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 967, + "CustomerInfo": 93348078, + "PaymentType": "Debit Card" + }, + { + "Id": 18774, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-08-26T07:22:13", + "TransactionId": 86576248, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 457, + "CustomerInfo": 57763446, + "PaymentType": "Debit Card" + }, + { + "Id": 18775, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-3", + "TransactionDate": "2018-01-22T07:36:12", + "TransactionId": 28854345, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 121, + "CustomerInfo": 36408661, + "PaymentType": "Debit Card" + }, + { + "Id": 18776, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2018-04-26T07:48:52", + "TransactionId": 64543160, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 805, + "CustomerInfo": 12206421, + "PaymentType": "Cash" + }, + { + "Id": 18777, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2017-03-01T16:30:35", + "TransactionId": 25742002, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 461, + "CustomerInfo": 1039889, + "PaymentType": "Cash" + }, + { + "Id": 18778, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2019-04-10T07:45:24", + "TransactionId": 13764571, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 530, + "CustomerInfo": 1117476, + "PaymentType": "Cash" + }, + { + "Id": 18779, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2019-01-09T08:52:39", + "TransactionId": 74120241, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 250, + "CustomerInfo": 6652185, + "PaymentType": "Debit Card" + }, + { + "Id": 18780, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-4", + "TransactionDate": "2018-02-08T09:37:35", + "TransactionId": 99460977, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 980, + "CustomerInfo": 36496245, + "PaymentType": "Credit Card" + }, + { + "Id": 18781, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-5", + "TransactionDate": "2016-07-24T10:57:22", + "TransactionId": 54851594, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 951, + "CustomerInfo": 38560818, + "PaymentType": "Debit Card" + }, + { + "Id": 18782, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-10-09T16:03:22", + "TransactionId": 23108068, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 359, + "CustomerInfo": 45391833, + "PaymentType": "Debit Card" + }, + { + "Id": 18783, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-5", + "TransactionDate": "2019-05-05T12:44:04", + "TransactionId": 32342000, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 669, + "CustomerInfo": 34194232, + "PaymentType": "Debit Card" + }, + { + "Id": 18784, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-1", + "TransactionDate": "2019-09-04T16:42:14", + "TransactionId": 19085226, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 263, + "CustomerInfo": 83461707, + "PaymentType": "Credit Card" + }, + { + "Id": 18785, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-5", + "TransactionDate": "2017-10-15T09:47:48", + "TransactionId": 94996589, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 672, + "CustomerInfo": 43425273, + "PaymentType": "Credit Card" + }, + { + "Id": 18786, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-1", + "TransactionDate": "2018-07-04T09:01:18", + "TransactionId": 8966550, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 530, + "CustomerInfo": 57430101, + "PaymentType": "Credit Card" + }, + { + "Id": 18787, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2017-04-03T13:12:35", + "TransactionId": 12557684, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 419, + "CustomerInfo": 90239773, + "PaymentType": "Debit Card" + }, + { + "Id": 18788, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2017-02-07T12:36:17", + "TransactionId": 23084756, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 723, + "CustomerInfo": 65228905, + "PaymentType": "Debit Card" + }, + { + "Id": 18789, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2016-08-13T15:23:28", + "TransactionId": 28352662, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 440, + "CustomerInfo": 70525261, + "PaymentType": "Cash" + }, + { + "Id": 18790, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2016-09-06T17:03:16", + "TransactionId": 28773895, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 65, + "CustomerInfo": 83550326, + "PaymentType": "Cash" + }, + { + "Id": 18791, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2017-01-17T08:50:30", + "TransactionId": 84442496, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 774, + "CustomerInfo": 80551668, + "PaymentType": "Credit Card" + }, + { + "Id": 18792, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-02-28T08:21:42", + "TransactionId": 39882906, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 468, + "CustomerInfo": 98106416, + "PaymentType": "Cash" + }, + { + "Id": 18793, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2018-04-16T09:25:47", + "TransactionId": 20773110, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 873, + "CustomerInfo": 99959452, + "PaymentType": "Debit Card" + }, + { + "Id": 18794, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2019-10-26T14:34:57", + "TransactionId": 5731329, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 101, + "CustomerInfo": 47234259, + "PaymentType": "Cash" + }, + { + "Id": 18795, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2016-07-01T18:52:08", + "TransactionId": 70343544, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 928, + "CustomerInfo": 49385807, + "PaymentType": "Cash" + }, + { + "Id": 18796, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2019-02-03T07:13:26", + "TransactionId": 57968761, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 671, + "CustomerInfo": 1966236, + "PaymentType": "Cash" + }, + { + "Id": 18797, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2016-01-11T09:22:02", + "TransactionId": 81437575, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 436, + "CustomerInfo": 41132217, + "PaymentType": "Credit Card" + }, + { + "Id": 18798, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-1", + "TransactionDate": "2019-03-14T07:48:26", + "TransactionId": 13193277, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 118, + "CustomerInfo": 28715165, + "PaymentType": "Credit Card" + }, + { + "Id": 18799, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2018-05-07T17:16:48", + "TransactionId": 32854066, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 806, + "CustomerInfo": 77045032, + "PaymentType": "Cash" + }, + { + "Id": 18800, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-5", + "TransactionDate": "2018-07-11T12:02:01", + "TransactionId": 28864487, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 861, + "CustomerInfo": 90436508, + "PaymentType": "Cash" + }, + { + "Id": 18801, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-2", + "TransactionDate": "2016-06-02T14:58:16", + "TransactionId": 81323027, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 15, + "CustomerInfo": 25436380, + "PaymentType": "Debit Card" + }, + { + "Id": 18802, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2016-01-15T07:51:19", + "TransactionId": 93729305, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 97, + "CustomerInfo": 7744241, + "PaymentType": "Debit Card" + }, + { + "Id": 18803, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2017-02-13T13:07:15", + "TransactionId": 39569015, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 531, + "CustomerInfo": 13393180, + "PaymentType": "Credit Card" + }, + { + "Id": 18804, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-12-02T18:41:37", + "TransactionId": 19095144, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 707, + "CustomerInfo": 86147009, + "PaymentType": "Credit Card" + }, + { + "Id": 18805, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-5", + "TransactionDate": "2019-01-24T10:52:28", + "TransactionId": 58878318, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 258, + "CustomerInfo": 39635297, + "PaymentType": "Debit Card" + }, + { + "Id": 18806, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2016-02-27T18:06:46", + "TransactionId": 73677579, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 660, + "CustomerInfo": 19613146, + "PaymentType": "Debit Card" + }, + { + "Id": 18807, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2016-05-27T07:08:24", + "TransactionId": 11340862, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 709, + "CustomerInfo": 51156876, + "PaymentType": "Debit Card" + }, + { + "Id": 18808, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2019-03-15T11:19:24", + "TransactionId": 58586928, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 151, + "CustomerInfo": 58781355, + "PaymentType": "Debit Card" + }, + { + "Id": 18809, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2019-11-07T19:14:53", + "TransactionId": 80647892, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 571, + "CustomerInfo": 34518380, + "PaymentType": "Credit Card" + }, + { + "Id": 18810, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2017-09-26T18:54:26", + "TransactionId": 55222126, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 606, + "CustomerInfo": 14486845, + "PaymentType": "Cash" + }, + { + "Id": 18811, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2016-08-07T18:49:15", + "TransactionId": 78365035, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 585, + "CustomerInfo": 86895838, + "PaymentType": "Credit Card" + }, + { + "Id": 18812, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-1", + "TransactionDate": "2016-03-11T14:22:25", + "TransactionId": 36591905, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 146, + "CustomerInfo": 40101263, + "PaymentType": "Debit Card" + }, + { + "Id": 18813, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2017-03-04T12:00:52", + "TransactionId": 10986000, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 168, + "CustomerInfo": 75162740, + "PaymentType": "Cash" + }, + { + "Id": 18814, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-06-16T14:29:20", + "TransactionId": 41558517, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 723, + "CustomerInfo": 32309961, + "PaymentType": "Credit Card" + }, + { + "Id": 18815, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-10-20T11:20:33", + "TransactionId": 52326885, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 304, + "CustomerInfo": 47082359, + "PaymentType": "Credit Card" + }, + { + "Id": 18816, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2016-04-30T12:50:15", + "TransactionId": 16545246, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 514, + "CustomerInfo": 62117356, + "PaymentType": "Cash" + }, + { + "Id": 18817, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-2", + "TransactionDate": "2017-07-07T19:24:23", + "TransactionId": 71076677, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 918, + "CustomerInfo": 3442521, + "PaymentType": "Credit Card" + }, + { + "Id": 18818, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2018-04-08T17:13:21", + "TransactionId": 19783868, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 800, + "CustomerInfo": 38861112, + "PaymentType": "Cash" + }, + { + "Id": 18819, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-10-21T07:45:24", + "TransactionId": 90618147, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 476, + "CustomerInfo": 69494548, + "PaymentType": "Debit Card" + }, + { + "Id": 18820, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2019-01-21T09:00:43", + "TransactionId": 92819649, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 670, + "CustomerInfo": 62323104, + "PaymentType": "Debit Card" + }, + { + "Id": 18821, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-08-05T10:53:54", + "TransactionId": 48031431, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 628, + "CustomerInfo": 77068597, + "PaymentType": "Debit Card" + }, + { + "Id": 18822, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2016-02-26T16:24:49", + "TransactionId": 48862008, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 715, + "CustomerInfo": 93885918, + "PaymentType": "Debit Card" + }, + { + "Id": 18823, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2017-01-04T14:58:51", + "TransactionId": 1125078, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 120, + "CustomerInfo": 42110522, + "PaymentType": "Debit Card" + }, + { + "Id": 18824, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-2", + "TransactionDate": "2018-12-24T19:25:58", + "TransactionId": 40524319, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 990, + "CustomerInfo": 93315974, + "PaymentType": "Cash" + }, + { + "Id": 18825, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2018-07-12T17:29:11", + "TransactionId": 97054604, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 501, + "CustomerInfo": 22248494, + "PaymentType": "Cash" + }, + { + "Id": 18826, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-3", + "TransactionDate": "2016-04-08T14:28:19", + "TransactionId": 95620353, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 953, + "CustomerInfo": 65245357, + "PaymentType": "Debit Card" + }, + { + "Id": 18827, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-02-23T15:04:11", + "TransactionId": 53920485, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 271, + "CustomerInfo": 47595595, + "PaymentType": "Cash" + }, + { + "Id": 18828, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-3", + "TransactionDate": "2019-02-23T07:35:54", + "TransactionId": 40386750, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 601, + "CustomerInfo": 91825155, + "PaymentType": "Cash" + }, + { + "Id": 18829, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-4", + "TransactionDate": "2017-12-19T14:08:53", + "TransactionId": 90079452, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 305, + "CustomerInfo": 7681305, + "PaymentType": "Debit Card" + }, + { + "Id": 18830, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2017-09-02T08:33:56", + "TransactionId": 22741668, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 235, + "CustomerInfo": 80666727, + "PaymentType": "Debit Card" + }, + { + "Id": 18831, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2017-11-05T13:27:07", + "TransactionId": 82083696, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 662, + "CustomerInfo": 76526673, + "PaymentType": "Credit Card" + }, + { + "Id": 18832, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2018-09-14T13:07:58", + "TransactionId": 15707018, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 693, + "CustomerInfo": 34441151, + "PaymentType": "Credit Card" + }, + { + "Id": 18833, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-05-29T19:17:02", + "TransactionId": 18178156, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 742, + "CustomerInfo": 32716724, + "PaymentType": "Credit Card" + }, + { + "Id": 18834, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2016-07-25T17:54:32", + "TransactionId": 63524532, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 715, + "CustomerInfo": 37652507, + "PaymentType": "Cash" + }, + { + "Id": 18835, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2019-11-26T15:22:02", + "TransactionId": 77420295, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 264, + "CustomerInfo": 81698001, + "PaymentType": "Debit Card" + }, + { + "Id": 18836, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-3", + "TransactionDate": "2016-09-12T09:48:40", + "TransactionId": 4164491, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 320, + "CustomerInfo": 10593855, + "PaymentType": "Debit Card" + }, + { + "Id": 18837, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-4", + "TransactionDate": "2018-05-18T14:51:39", + "TransactionId": 33210767, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 68, + "CustomerInfo": 69278204, + "PaymentType": "Debit Card" + }, + { + "Id": 18838, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-3", + "TransactionDate": "2018-03-16T10:55:47", + "TransactionId": 28665503, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 97, + "CustomerInfo": 74826399, + "PaymentType": "Debit Card" + }, + { + "Id": 18839, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2017-09-15T10:14:01", + "TransactionId": 3129622, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 537, + "CustomerInfo": 21701010, + "PaymentType": "Credit Card" + }, + { + "Id": 18840, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2017-11-11T17:58:08", + "TransactionId": 82477736, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 434, + "CustomerInfo": 13681830, + "PaymentType": "Credit Card" + }, + { + "Id": 18841, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2017-05-06T07:55:55", + "TransactionId": 37462272, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 200, + "CustomerInfo": 44207661, + "PaymentType": "Credit Card" + }, + { + "Id": 18842, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-4", + "TransactionDate": "2018-05-05T08:33:22", + "TransactionId": 47333154, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 829, + "CustomerInfo": 20915907, + "PaymentType": "Cash" + }, + { + "Id": 18843, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2018-08-30T13:32:01", + "TransactionId": 54880278, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 935, + "CustomerInfo": 78745147, + "PaymentType": "Debit Card" + }, + { + "Id": 18844, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2018-12-18T09:20:01", + "TransactionId": 94360904, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 408, + "CustomerInfo": 94135948, + "PaymentType": "Credit Card" + }, + { + "Id": 18845, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2019-02-09T18:49:41", + "TransactionId": 90101593, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 319, + "CustomerInfo": 72330408, + "PaymentType": "Debit Card" + }, + { + "Id": 18846, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2018-01-31T13:56:04", + "TransactionId": 89981438, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 624, + "CustomerInfo": 50695566, + "PaymentType": "Cash" + }, + { + "Id": 18847, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2016-08-15T19:48:00", + "TransactionId": 52191613, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 733, + "CustomerInfo": 59476563, + "PaymentType": "Cash" + }, + { + "Id": 18848, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-2", + "TransactionDate": "2018-06-25T13:53:37", + "TransactionId": 32601652, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 190, + "CustomerInfo": 96553887, + "PaymentType": "Debit Card" + }, + { + "Id": 18849, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2016-12-04T14:25:52", + "TransactionId": 75139860, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 806, + "CustomerInfo": 55549690, + "PaymentType": "Cash" + }, + { + "Id": 18850, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2017-12-20T18:18:35", + "TransactionId": 74540857, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 457, + "CustomerInfo": 13737676, + "PaymentType": "Debit Card" + }, + { + "Id": 18851, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2016-07-17T09:50:07", + "TransactionId": 36534576, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 263, + "CustomerInfo": 13575422, + "PaymentType": "Cash" + }, + { + "Id": 18852, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-5", + "TransactionDate": "2019-05-06T08:15:30", + "TransactionId": 50088951, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 470, + "CustomerInfo": 29670756, + "PaymentType": "Debit Card" + }, + { + "Id": 18853, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2018-08-10T14:41:25", + "TransactionId": 51804003, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 533, + "CustomerInfo": 35455381, + "PaymentType": "Cash" + }, + { + "Id": 18854, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2016-05-18T19:45:42", + "TransactionId": 9659060, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 19079967, + "PaymentType": "Credit Card" + }, + { + "Id": 18855, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-08-06T19:49:44", + "TransactionId": 60753280, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 363, + "CustomerInfo": 9201910, + "PaymentType": "Cash" + }, + { + "Id": 18856, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-2", + "TransactionDate": "2016-11-12T07:27:24", + "TransactionId": 2996045, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 990, + "CustomerInfo": 30333160, + "PaymentType": "Debit Card" + }, + { + "Id": 18857, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2018-03-02T10:46:42", + "TransactionId": 22850549, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 936, + "CustomerInfo": 81732011, + "PaymentType": "Debit Card" + }, + { + "Id": 18858, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2016-08-26T09:10:39", + "TransactionId": 56797405, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 100, + "CustomerInfo": 3149476, + "PaymentType": "Cash" + }, + { + "Id": 18859, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-2", + "TransactionDate": "2018-07-28T08:01:06", + "TransactionId": 8578613, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 931, + "CustomerInfo": 36092246, + "PaymentType": "Debit Card" + }, + { + "Id": 18860, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2016-11-26T15:09:04", + "TransactionId": 94159574, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 518, + "CustomerInfo": 2727842, + "PaymentType": "Debit Card" + }, + { + "Id": 18861, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-03-20T19:59:31", + "TransactionId": 18033572, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 213, + "CustomerInfo": 71673945, + "PaymentType": "Cash" + }, + { + "Id": 18862, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-5", + "TransactionDate": "2019-11-15T14:55:41", + "TransactionId": 93491776, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 146, + "CustomerInfo": 50710239, + "PaymentType": "Debit Card" + }, + { + "Id": 18863, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-11-13T12:26:56", + "TransactionId": 46546242, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 873, + "CustomerInfo": 49358744, + "PaymentType": "Credit Card" + }, + { + "Id": 18864, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-1", + "TransactionDate": "2016-03-06T10:23:23", + "TransactionId": 97202143, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 12, + "CustomerInfo": 73741952, + "PaymentType": "Debit Card" + }, + { + "Id": 18865, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-2", + "TransactionDate": "2019-08-08T08:04:42", + "TransactionId": 21642413, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 984, + "CustomerInfo": 29725646, + "PaymentType": "Cash" + }, + { + "Id": 18866, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2017-01-07T09:35:17", + "TransactionId": 44458674, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 410, + "CustomerInfo": 30218705, + "PaymentType": "Debit Card" + }, + { + "Id": 18867, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-5", + "TransactionDate": "2016-04-25T13:59:23", + "TransactionId": 56971160, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 748, + "CustomerInfo": 40121258, + "PaymentType": "Credit Card" + }, + { + "Id": 18868, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-04-18T16:57:30", + "TransactionId": 17938495, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 786, + "CustomerInfo": 43372221, + "PaymentType": "Credit Card" + }, + { + "Id": 18869, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2018-03-04T13:20:47", + "TransactionId": 42128122, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 522, + "CustomerInfo": 86349947, + "PaymentType": "Credit Card" + }, + { + "Id": 18870, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2016-09-01T14:05:34", + "TransactionId": 2046801, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 940, + "CustomerInfo": 48671444, + "PaymentType": "Cash" + }, + { + "Id": 18871, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2016-01-19T14:19:58", + "TransactionId": 73798886, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 898, + "CustomerInfo": 95305218, + "PaymentType": "Cash" + }, + { + "Id": 18872, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2016-04-20T09:49:58", + "TransactionId": 74406606, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 144, + "CustomerInfo": 45505274, + "PaymentType": "Cash" + }, + { + "Id": 18873, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-05-04T18:45:39", + "TransactionId": 38347306, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 495, + "CustomerInfo": 2619484, + "PaymentType": "Debit Card" + }, + { + "Id": 18874, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2019-05-19T17:24:52", + "TransactionId": 83138765, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 265, + "CustomerInfo": 21231520, + "PaymentType": "Debit Card" + }, + { + "Id": 18875, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2016-05-01T10:33:36", + "TransactionId": 73598449, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 419, + "CustomerInfo": 79330373, + "PaymentType": "Debit Card" + }, + { + "Id": 18876, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-11-14T08:02:59", + "TransactionId": 92542384, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 39, + "CustomerInfo": 70030249, + "PaymentType": "Debit Card" + }, + { + "Id": 18877, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-3", + "TransactionDate": "2017-05-14T08:45:10", + "TransactionId": 63525781, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 72, + "CustomerInfo": 27453288, + "PaymentType": "Debit Card" + }, + { + "Id": 18878, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-4", + "TransactionDate": "2017-04-16T08:23:51", + "TransactionId": 30510318, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 829, + "CustomerInfo": 89362851, + "PaymentType": "Credit Card" + }, + { + "Id": 18879, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-10-01T08:49:12", + "TransactionId": 42611382, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 190, + "CustomerInfo": 75292742, + "PaymentType": "Debit Card" + }, + { + "Id": 18880, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2018-03-19T13:06:40", + "TransactionId": 16902987, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 165, + "CustomerInfo": 99010330, + "PaymentType": "Credit Card" + }, + { + "Id": 18881, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-1", + "TransactionDate": "2019-10-11T12:39:01", + "TransactionId": 36688498, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 620, + "CustomerInfo": 72871833, + "PaymentType": "Cash" + }, + { + "Id": 18882, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2019-03-13T10:36:55", + "TransactionId": 70176076, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 246, + "CustomerInfo": 42098606, + "PaymentType": "Cash" + }, + { + "Id": 18883, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2016-10-16T18:29:14", + "TransactionId": 30553194, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 119, + "CustomerInfo": 63045998, + "PaymentType": "Credit Card" + }, + { + "Id": 18884, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-5", + "TransactionDate": "2016-04-06T10:58:57", + "TransactionId": 93186167, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 798, + "CustomerInfo": 15092439, + "PaymentType": "Debit Card" + }, + { + "Id": 18885, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-01-20T16:44:15", + "TransactionId": 41788564, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 130, + "CustomerInfo": 70608552, + "PaymentType": "Debit Card" + }, + { + "Id": 18886, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-2", + "TransactionDate": "2019-06-27T11:11:46", + "TransactionId": 98158062, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 184, + "CustomerInfo": 36360103, + "PaymentType": "Cash" + }, + { + "Id": 18887, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2017-08-08T14:16:31", + "TransactionId": 25880627, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 813, + "CustomerInfo": 43601949, + "PaymentType": "Cash" + }, + { + "Id": 18888, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2018-09-07T11:01:49", + "TransactionId": 58026118, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 959, + "CustomerInfo": 40156063, + "PaymentType": "Cash" + }, + { + "Id": 18889, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2017-09-02T07:42:14", + "TransactionId": 77922219, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 812, + "CustomerInfo": 21868696, + "PaymentType": "Debit Card" + }, + { + "Id": 18890, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-12-22T10:16:45", + "TransactionId": 471934, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 83, + "CustomerInfo": 80376212, + "PaymentType": "Cash" + }, + { + "Id": 18891, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-2", + "TransactionDate": "2019-10-21T07:22:57", + "TransactionId": 9493404, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 467, + "CustomerInfo": 48113264, + "PaymentType": "Cash" + }, + { + "Id": 18892, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2019-04-27T15:14:50", + "TransactionId": 58489367, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 848, + "CustomerInfo": 60093343, + "PaymentType": "Cash" + }, + { + "Id": 18893, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-1", + "TransactionDate": "2017-06-05T14:23:25", + "TransactionId": 16303733, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 616, + "CustomerInfo": 40717149, + "PaymentType": "Cash" + }, + { + "Id": 18894, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2016-07-25T19:51:19", + "TransactionId": 9229798, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 775, + "CustomerInfo": 29363796, + "PaymentType": "Cash" + }, + { + "Id": 18895, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2019-09-16T07:35:28", + "TransactionId": 64406323, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 793, + "CustomerInfo": 52784702, + "PaymentType": "Credit Card" + }, + { + "Id": 18896, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2018-01-14T09:37:52", + "TransactionId": 60630773, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 189, + "CustomerInfo": 22944552, + "PaymentType": "Debit Card" + }, + { + "Id": 18897, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2016-09-25T16:06:23", + "TransactionId": 35834908, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 704, + "CustomerInfo": 33808085, + "PaymentType": "Cash" + }, + { + "Id": 18898, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2016-03-04T10:22:48", + "TransactionId": 26084502, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 456, + "CustomerInfo": 30846326, + "PaymentType": "Debit Card" + }, + { + "Id": 18899, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2018-11-04T14:15:04", + "TransactionId": 37280378, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 971, + "CustomerInfo": 71870347, + "PaymentType": "Credit Card" + }, + { + "Id": 18900, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2018-07-07T10:58:13", + "TransactionId": 25670214, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 636, + "CustomerInfo": 51416612, + "PaymentType": "Credit Card" + }, + { + "Id": 18901, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-2", + "TransactionDate": "2017-01-24T14:43:26", + "TransactionId": 29101282, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 568, + "CustomerInfo": 14555071, + "PaymentType": "Cash" + }, + { + "Id": 18902, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2016-12-13T09:00:35", + "TransactionId": 6466755, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 731, + "CustomerInfo": 84767694, + "PaymentType": "Debit Card" + }, + { + "Id": 18903, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2018-03-14T12:39:45", + "TransactionId": 3580100, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 718, + "CustomerInfo": 98762151, + "PaymentType": "Credit Card" + }, + { + "Id": 18904, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-01-29T08:00:58", + "TransactionId": 10418002, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 801, + "CustomerInfo": 52275233, + "PaymentType": "Credit Card" + }, + { + "Id": 18905, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-5", + "TransactionDate": "2016-12-22T19:27:50", + "TransactionId": 88744659, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 597, + "CustomerInfo": 43626515, + "PaymentType": "Credit Card" + }, + { + "Id": 18906, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-11-29T13:24:23", + "TransactionId": 72453633, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 590, + "CustomerInfo": 83281595, + "PaymentType": "Credit Card" + }, + { + "Id": 18907, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2019-10-28T08:46:36", + "TransactionId": 27025192, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 853, + "CustomerInfo": 19921211, + "PaymentType": "Debit Card" + }, + { + "Id": 18908, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2018-01-25T18:22:54", + "TransactionId": 28125354, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 170, + "CustomerInfo": 31056223, + "PaymentType": "Debit Card" + }, + { + "Id": 18909, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-08-20T18:14:33", + "TransactionId": 711320, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 74, + "CustomerInfo": 63669829, + "PaymentType": "Credit Card" + }, + { + "Id": 18910, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2019-07-17T14:28:45", + "TransactionId": 49349715, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 142, + "CustomerInfo": 34807829, + "PaymentType": "Debit Card" + }, + { + "Id": 18911, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-5", + "TransactionDate": "2018-09-18T09:03:36", + "TransactionId": 11955799, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 687, + "CustomerInfo": 19809114, + "PaymentType": "Credit Card" + }, + { + "Id": 18912, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-2", + "TransactionDate": "2016-09-13T16:31:26", + "TransactionId": 38386045, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 39, + "CustomerInfo": 2036719, + "PaymentType": "Credit Card" + }, + { + "Id": 18913, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2019-07-31T11:27:45", + "TransactionId": 79475473, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 27, + "CustomerInfo": 59313807, + "PaymentType": "Credit Card" + }, + { + "Id": 18914, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-4", + "TransactionDate": "2016-01-19T17:40:51", + "TransactionId": 91803587, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 54833096, + "PaymentType": "Debit Card" + }, + { + "Id": 18915, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-5", + "TransactionDate": "2018-10-01T12:47:05", + "TransactionId": 56315931, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 83, + "CustomerInfo": 28775154, + "PaymentType": "Credit Card" + }, + { + "Id": 18916, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2017-01-15T12:30:49", + "TransactionId": 92819930, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 19, + "CustomerInfo": 51998288, + "PaymentType": "Debit Card" + }, + { + "Id": 18917, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2019-06-11T18:22:28", + "TransactionId": 95404554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 586, + "CustomerInfo": 38959185, + "PaymentType": "Credit Card" + }, + { + "Id": 18918, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-03-31T16:10:08", + "TransactionId": 14907055, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 469, + "CustomerInfo": 90454159, + "PaymentType": "Cash" + }, + { + "Id": 18919, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2016-03-25T19:04:31", + "TransactionId": 9518921, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 2871892, + "PaymentType": "Debit Card" + }, + { + "Id": 18920, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2017-04-20T15:37:44", + "TransactionId": 88179687, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 614, + "CustomerInfo": 77434080, + "PaymentType": "Cash" + }, + { + "Id": 18921, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2019-02-22T09:04:11", + "TransactionId": 64023623, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 967, + "CustomerInfo": 87056455, + "PaymentType": "Cash" + }, + { + "Id": 18922, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2018-12-09T16:39:04", + "TransactionId": 84655224, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 81, + "CustomerInfo": 25878755, + "PaymentType": "Cash" + }, + { + "Id": 18923, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2017-09-18T12:47:57", + "TransactionId": 84072766, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 142, + "CustomerInfo": 78386909, + "PaymentType": "Debit Card" + }, + { + "Id": 18924, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2017-08-16T14:10:45", + "TransactionId": 7780656, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 45, + "CustomerInfo": 76706691, + "PaymentType": "Credit Card" + }, + { + "Id": 18925, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-2", + "TransactionDate": "2018-09-29T16:13:18", + "TransactionId": 75140988, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 671, + "CustomerInfo": 15040494, + "PaymentType": "Cash" + }, + { + "Id": 18926, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-03-04T14:00:14", + "TransactionId": 38667146, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 338, + "CustomerInfo": 71891259, + "PaymentType": "Debit Card" + }, + { + "Id": 18927, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2016-02-11T15:43:21", + "TransactionId": 5612005, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 929, + "CustomerInfo": 49661270, + "PaymentType": "Cash" + }, + { + "Id": 18928, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-5", + "TransactionDate": "2016-02-15T07:15:45", + "TransactionId": 38408548, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 629, + "CustomerInfo": 65610077, + "PaymentType": "Credit Card" + }, + { + "Id": 18929, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2019-06-17T08:27:10", + "TransactionId": 39339279, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 566, + "CustomerInfo": 16282386, + "PaymentType": "Credit Card" + }, + { + "Id": 18930, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2019-10-12T09:11:23", + "TransactionId": 34872332, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 379, + "CustomerInfo": 24165938, + "PaymentType": "Credit Card" + }, + { + "Id": 18931, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-2", + "TransactionDate": "2018-08-13T12:36:26", + "TransactionId": 60083894, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 861, + "CustomerInfo": 84280053, + "PaymentType": "Debit Card" + }, + { + "Id": 18932, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-04-02T11:29:37", + "TransactionId": 74315619, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 790, + "CustomerInfo": 28455623, + "PaymentType": "Credit Card" + }, + { + "Id": 18933, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-06-07T17:50:38", + "TransactionId": 23572730, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 810, + "CustomerInfo": 57543064, + "PaymentType": "Credit Card" + }, + { + "Id": 18934, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2019-07-22T09:48:23", + "TransactionId": 82713393, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 231, + "CustomerInfo": 82651556, + "PaymentType": "Credit Card" + }, + { + "Id": 18935, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2019-12-09T13:30:26", + "TransactionId": 83810631, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 744, + "CustomerInfo": 57695348, + "PaymentType": "Cash" + }, + { + "Id": 18936, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2018-08-06T07:17:11", + "TransactionId": 92654660, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 544, + "CustomerInfo": 64466481, + "PaymentType": "Credit Card" + }, + { + "Id": 18937, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2017-12-19T19:15:45", + "TransactionId": 93732357, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 952, + "CustomerInfo": 23101343, + "PaymentType": "Cash" + }, + { + "Id": 18938, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-2", + "TransactionDate": "2019-12-22T08:08:53", + "TransactionId": 68095620, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 754, + "CustomerInfo": 62382798, + "PaymentType": "Debit Card" + }, + { + "Id": 18939, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2019-11-02T17:23:00", + "TransactionId": 34692128, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 573, + "CustomerInfo": 69939279, + "PaymentType": "Cash" + }, + { + "Id": 18940, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2019-05-06T15:48:58", + "TransactionId": 24519551, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 966, + "CustomerInfo": 4304325, + "PaymentType": "Debit Card" + }, + { + "Id": 18941, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-03-11T18:27:56", + "TransactionId": 25363382, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 941, + "CustomerInfo": 2411250, + "PaymentType": "Debit Card" + }, + { + "Id": 18942, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2018-08-07T19:39:22", + "TransactionId": 87981884, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 848, + "CustomerInfo": 26260966, + "PaymentType": "Debit Card" + }, + { + "Id": 18943, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2019-02-28T19:21:22", + "TransactionId": 19193738, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 702, + "CustomerInfo": 53870347, + "PaymentType": "Credit Card" + }, + { + "Id": 18944, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2016-08-01T09:54:26", + "TransactionId": 16340260, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 127, + "CustomerInfo": 53759790, + "PaymentType": "Cash" + }, + { + "Id": 18945, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2017-09-08T15:29:40", + "TransactionId": 63513426, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 305, + "CustomerInfo": 33031765, + "PaymentType": "Credit Card" + }, + { + "Id": 18946, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-3", + "TransactionDate": "2018-07-06T09:14:33", + "TransactionId": 52800288, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 401, + "CustomerInfo": 65794672, + "PaymentType": "Cash" + }, + { + "Id": 18947, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-4", + "TransactionDate": "2018-11-17T12:58:28", + "TransactionId": 45067878, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 726, + "CustomerInfo": 51125650, + "PaymentType": "Credit Card" + }, + { + "Id": 18948, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2017-05-01T14:12:20", + "TransactionId": 83227344, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 5259120, + "PaymentType": "Credit Card" + }, + { + "Id": 18949, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2019-12-21T11:28:54", + "TransactionId": 73061453, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 78, + "CustomerInfo": 68439069, + "PaymentType": "Credit Card" + }, + { + "Id": 18950, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-3", + "TransactionDate": "2018-03-01T15:21:45", + "TransactionId": 44590056, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 889, + "CustomerInfo": 22504969, + "PaymentType": "Cash" + }, + { + "Id": 18951, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2016-03-25T14:23:08", + "TransactionId": 32762197, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 383, + "CustomerInfo": 12575146, + "PaymentType": "Credit Card" + }, + { + "Id": 18952, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-5", + "TransactionDate": "2016-07-07T19:23:31", + "TransactionId": 18358864, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 464, + "CustomerInfo": 33384374, + "PaymentType": "Credit Card" + }, + { + "Id": 18953, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-3", + "TransactionDate": "2016-01-13T13:35:11", + "TransactionId": 81554529, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 228, + "CustomerInfo": 83024428, + "PaymentType": "Debit Card" + }, + { + "Id": 18954, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-5", + "TransactionDate": "2018-10-14T07:28:34", + "TransactionId": 110618, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 982, + "CustomerInfo": 83539493, + "PaymentType": "Credit Card" + }, + { + "Id": 18955, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-12-10T13:04:31", + "TransactionId": 81035748, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 771, + "CustomerInfo": 74185399, + "PaymentType": "Credit Card" + }, + { + "Id": 18956, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2018-11-07T15:32:24", + "TransactionId": 88745912, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 465, + "CustomerInfo": 32647499, + "PaymentType": "Credit Card" + }, + { + "Id": 18957, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2018-06-04T14:06:17", + "TransactionId": 46118232, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 829, + "CustomerInfo": 71563401, + "PaymentType": "Credit Card" + }, + { + "Id": 18958, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2019-07-19T14:00:49", + "TransactionId": 26167491, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 651, + "CustomerInfo": 15820837, + "PaymentType": "Debit Card" + }, + { + "Id": 18959, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2019-06-15T07:21:04", + "TransactionId": 26544842, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 128, + "CustomerInfo": 21632412, + "PaymentType": "Credit Card" + }, + { + "Id": 18960, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-1", + "TransactionDate": "2016-11-08T10:41:23", + "TransactionId": 22929578, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 81, + "CustomerInfo": 56191577, + "PaymentType": "Cash" + }, + { + "Id": 18961, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-5", + "TransactionDate": "2019-01-16T19:15:45", + "TransactionId": 48051638, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 111, + "CustomerInfo": 71881347, + "PaymentType": "Debit Card" + }, + { + "Id": 18962, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-4", + "TransactionDate": "2016-06-14T10:50:18", + "TransactionId": 9324478, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 447, + "CustomerInfo": 66472546, + "PaymentType": "Debit Card" + }, + { + "Id": 18963, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-4", + "TransactionDate": "2018-10-14T07:35:02", + "TransactionId": 70823942, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 116, + "CustomerInfo": 6037575, + "PaymentType": "Credit Card" + }, + { + "Id": 18964, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-09-07T17:20:50", + "TransactionId": 3487333, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 446, + "CustomerInfo": 10579966, + "PaymentType": "Debit Card" + }, + { + "Id": 18965, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2019-08-27T11:48:37", + "TransactionId": 41871696, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 552, + "CustomerInfo": 4800830, + "PaymentType": "Credit Card" + }, + { + "Id": 18966, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2017-08-02T09:13:32", + "TransactionId": 60578887, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 867, + "CustomerInfo": 31634990, + "PaymentType": "Credit Card" + }, + { + "Id": 18967, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2016-07-01T13:21:30", + "TransactionId": 52407683, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 326, + "CustomerInfo": 41111115, + "PaymentType": "Debit Card" + }, + { + "Id": 18968, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-06-20T08:42:09", + "TransactionId": 1733244, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 655, + "CustomerInfo": 53489299, + "PaymentType": "Debit Card" + }, + { + "Id": 18969, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2019-06-17T09:49:06", + "TransactionId": 29580503, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 167, + "CustomerInfo": 80917493, + "PaymentType": "Credit Card" + }, + { + "Id": 18970, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2017-11-17T07:17:28", + "TransactionId": 75374918, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 572, + "CustomerInfo": 57145526, + "PaymentType": "Cash" + }, + { + "Id": 18971, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-4", + "TransactionDate": "2019-05-03T18:18:17", + "TransactionId": 14442147, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 494, + "CustomerInfo": 29209832, + "PaymentType": "Credit Card" + }, + { + "Id": 18972, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2016-12-21T13:48:09", + "TransactionId": 65728815, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 975, + "CustomerInfo": 12499040, + "PaymentType": "Cash" + }, + { + "Id": 18973, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2016-06-23T11:19:49", + "TransactionId": 21658620, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 94316312, + "PaymentType": "Cash" + }, + { + "Id": 18974, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-12-06T09:27:56", + "TransactionId": 8306520, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 534, + "CustomerInfo": 52575846, + "PaymentType": "Credit Card" + }, + { + "Id": 18975, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-5", + "TransactionDate": "2019-02-13T15:47:23", + "TransactionId": 66566969, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 122, + "CustomerInfo": 39731553, + "PaymentType": "Cash" + }, + { + "Id": 18976, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2016-07-08T19:33:10", + "TransactionId": 5611622, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 75, + "CustomerInfo": 90069397, + "PaymentType": "Credit Card" + }, + { + "Id": 18977, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2016-04-19T13:16:11", + "TransactionId": 3352653, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 213, + "CustomerInfo": 35634893, + "PaymentType": "Credit Card" + }, + { + "Id": 18978, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2018-03-03T18:09:39", + "TransactionId": 15425754, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 165, + "CustomerInfo": 88143086, + "PaymentType": "Cash" + }, + { + "Id": 18979, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2019-07-10T19:58:22", + "TransactionId": 11918712, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 694, + "CustomerInfo": 55958857, + "PaymentType": "Debit Card" + }, + { + "Id": 18980, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-11-07T07:12:43", + "TransactionId": 46258942, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 655, + "CustomerInfo": 49374025, + "PaymentType": "Credit Card" + }, + { + "Id": 18981, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2017-04-01T08:02:15", + "TransactionId": 68574060, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 249, + "CustomerInfo": 84931598, + "PaymentType": "Debit Card" + }, + { + "Id": 18982, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-4", + "TransactionDate": "2017-05-02T18:50:59", + "TransactionId": 73597246, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 159, + "CustomerInfo": 90889699, + "PaymentType": "Credit Card" + }, + { + "Id": 18983, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-3", + "TransactionDate": "2019-01-19T18:46:05", + "TransactionId": 50680121, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 290, + "CustomerInfo": 51810177, + "PaymentType": "Credit Card" + }, + { + "Id": 18984, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2017-08-27T19:03:13", + "TransactionId": 30499790, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 427, + "CustomerInfo": 96045151, + "PaymentType": "Cash" + }, + { + "Id": 18985, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2018-01-28T15:44:12", + "TransactionId": 47498269, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 949, + "CustomerInfo": 29078030, + "PaymentType": "Cash" + }, + { + "Id": 18986, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2018-06-05T14:42:43", + "TransactionId": 16766754, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 9, + "CustomerInfo": 43004417, + "PaymentType": "Debit Card" + }, + { + "Id": 18987, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2019-09-27T09:34:51", + "TransactionId": 81560971, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 259, + "CustomerInfo": 27783145, + "PaymentType": "Cash" + }, + { + "Id": 18988, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-3", + "TransactionDate": "2016-07-09T10:27:59", + "TransactionId": 73479646, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 308, + "CustomerInfo": 40368865, + "PaymentType": "Cash" + }, + { + "Id": 18989, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-3", + "TransactionDate": "2017-07-28T12:17:08", + "TransactionId": 32425343, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 533, + "CustomerInfo": 26839644, + "PaymentType": "Credit Card" + }, + { + "Id": 18990, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-3", + "TransactionDate": "2017-01-23T08:56:15", + "TransactionId": 56958987, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 197, + "CustomerInfo": 78847466, + "PaymentType": "Credit Card" + }, + { + "Id": 18991, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2019-05-28T15:41:37", + "TransactionId": 96080412, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 945, + "CustomerInfo": 8465884, + "PaymentType": "Credit Card" + }, + { + "Id": 18992, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-4", + "TransactionDate": "2017-06-16T09:56:44", + "TransactionId": 2422817, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 446, + "CustomerInfo": 38610504, + "PaymentType": "Credit Card" + }, + { + "Id": 18993, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2018-10-18T10:41:40", + "TransactionId": 29426164, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 131, + "CustomerInfo": 19863350, + "PaymentType": "Cash" + }, + { + "Id": 18994, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-01-27T18:40:45", + "TransactionId": 23770906, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 583, + "CustomerInfo": 78490331, + "PaymentType": "Cash" + }, + { + "Id": 18995, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-5", + "TransactionDate": "2017-09-03T12:12:49", + "TransactionId": 87599263, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 165, + "CustomerInfo": 12383958, + "PaymentType": "Credit Card" + }, + { + "Id": 18996, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2017-05-04T09:53:17", + "TransactionId": 55984104, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 64, + "CustomerInfo": 99108238, + "PaymentType": "Debit Card" + }, + { + "Id": 18997, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2019-01-21T16:26:07", + "TransactionId": 89492427, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 377, + "CustomerInfo": 97958020, + "PaymentType": "Cash" + }, + { + "Id": 18998, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2017-11-05T08:02:24", + "TransactionId": 11210518, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 276, + "CustomerInfo": 63897594, + "PaymentType": "Debit Card" + }, + { + "Id": 18999, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-1", + "TransactionDate": "2016-02-26T13:13:44", + "TransactionId": 7604774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 585, + "CustomerInfo": 20049667, + "PaymentType": "Credit Card" + }, + { + "Id": 19000, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-07-10T15:00:52", + "TransactionId": 48619200, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 177, + "CustomerInfo": 72589585, + "PaymentType": "Debit Card" + }, + { + "Id": 19001, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-4", + "TransactionDate": "2016-06-23T10:59:05", + "TransactionId": 32508403, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 38, + "CustomerInfo": 929179, + "PaymentType": "Credit Card" + }, + { + "Id": 19002, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-3", + "TransactionDate": "2019-06-25T10:26:33", + "TransactionId": 13639177, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 170, + "CustomerInfo": 77444949, + "PaymentType": "Cash" + }, + { + "Id": 19003, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2018-01-08T13:47:00", + "TransactionId": 13371594, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 997, + "CustomerInfo": 80634472, + "PaymentType": "Cash" + }, + { + "Id": 19004, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2018-03-26T15:25:29", + "TransactionId": 53611834, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 802, + "CustomerInfo": 23425548, + "PaymentType": "Cash" + }, + { + "Id": 19005, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-5", + "TransactionDate": "2017-06-15T09:07:29", + "TransactionId": 79400332, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 381, + "CustomerInfo": 31198177, + "PaymentType": "Debit Card" + }, + { + "Id": 19006, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2016-01-02T11:38:41", + "TransactionId": 33152248, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 306, + "CustomerInfo": 25553419, + "PaymentType": "Cash" + }, + { + "Id": 19007, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-05-25T16:36:37", + "TransactionId": 60137117, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 484, + "CustomerInfo": 32423279, + "PaymentType": "Cash" + }, + { + "Id": 19008, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-1", + "TransactionDate": "2017-03-09T09:31:24", + "TransactionId": 61571092, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 305, + "CustomerInfo": 83583337, + "PaymentType": "Debit Card" + }, + { + "Id": 19009, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-1", + "TransactionDate": "2018-09-03T18:51:33", + "TransactionId": 82289934, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 264, + "CustomerInfo": 55327160, + "PaymentType": "Debit Card" + }, + { + "Id": 19010, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2017-04-04T10:30:52", + "TransactionId": 2052630, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 754, + "CustomerInfo": 35604053, + "PaymentType": "Cash" + }, + { + "Id": 19011, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2017-01-22T12:23:11", + "TransactionId": 78134769, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 421, + "CustomerInfo": 63665551, + "PaymentType": "Debit Card" + }, + { + "Id": 19012, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2017-02-08T17:01:15", + "TransactionId": 49092233, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 549, + "CustomerInfo": 67289075, + "PaymentType": "Cash" + }, + { + "Id": 19013, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2019-03-06T19:06:14", + "TransactionId": 27074506, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 680, + "CustomerInfo": 53638350, + "PaymentType": "Cash" + }, + { + "Id": 19014, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2019-05-01T19:55:21", + "TransactionId": 95933805, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 991, + "CustomerInfo": 9675041, + "PaymentType": "Debit Card" + }, + { + "Id": 19015, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-3", + "TransactionDate": "2017-07-29T16:59:23", + "TransactionId": 69659816, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 912, + "CustomerInfo": 62370774, + "PaymentType": "Debit Card" + }, + { + "Id": 19016, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2018-02-27T15:59:11", + "TransactionId": 66153372, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 56, + "CustomerInfo": 63662073, + "PaymentType": "Credit Card" + }, + { + "Id": 19017, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-2", + "TransactionDate": "2016-11-28T17:06:17", + "TransactionId": 15665579, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 677, + "CustomerInfo": 59852674, + "PaymentType": "Credit Card" + }, + { + "Id": 19018, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2016-03-18T08:07:09", + "TransactionId": 98609117, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 8, + "CustomerInfo": 86685106, + "PaymentType": "Debit Card" + }, + { + "Id": 19019, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2017-04-13T18:35:00", + "TransactionId": 9019961, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 913, + "CustomerInfo": 47106767, + "PaymentType": "Debit Card" + }, + { + "Id": 19020, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-3", + "TransactionDate": "2017-12-21T18:00:35", + "TransactionId": 88156969, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 812, + "CustomerInfo": 42706069, + "PaymentType": "Cash" + }, + { + "Id": 19021, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2016-02-12T07:18:55", + "TransactionId": 50973104, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 537, + "CustomerInfo": 52152104, + "PaymentType": "Debit Card" + }, + { + "Id": 19022, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-2", + "TransactionDate": "2018-08-01T13:24:32", + "TransactionId": 43811885, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 573, + "CustomerInfo": 68675455, + "PaymentType": "Debit Card" + }, + { + "Id": 19023, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-12-09T18:40:54", + "TransactionId": 59357298, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 981, + "CustomerInfo": 75551680, + "PaymentType": "Credit Card" + }, + { + "Id": 19024, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2019-11-24T08:54:40", + "TransactionId": 18759668, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 825, + "CustomerInfo": 58929070, + "PaymentType": "Credit Card" + }, + { + "Id": 19025, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2016-03-29T14:25:52", + "TransactionId": 93452409, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 2, + "CustomerInfo": 10058817, + "PaymentType": "Cash" + }, + { + "Id": 19026, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2017-03-28T16:37:47", + "TransactionId": 65683466, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 72, + "CustomerInfo": 57080579, + "PaymentType": "Cash" + }, + { + "Id": 19027, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2016-03-09T07:42:06", + "TransactionId": 55777589, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 252, + "CustomerInfo": 39195679, + "PaymentType": "Credit Card" + }, + { + "Id": 19028, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2017-03-02T15:22:19", + "TransactionId": 70599521, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 149, + "CustomerInfo": 3590939, + "PaymentType": "Cash" + }, + { + "Id": 19029, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-1", + "TransactionDate": "2016-03-01T16:33:27", + "TransactionId": 81978598, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 323, + "CustomerInfo": 60327332, + "PaymentType": "Cash" + }, + { + "Id": 19030, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2019-06-16T07:51:45", + "TransactionId": 41343408, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 160, + "CustomerInfo": 80921922, + "PaymentType": "Debit Card" + }, + { + "Id": 19031, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2019-08-23T18:00:26", + "TransactionId": 32936974, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 330, + "CustomerInfo": 46695747, + "PaymentType": "Debit Card" + }, + { + "Id": 19032, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2019-03-12T09:52:42", + "TransactionId": 72253506, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 495, + "CustomerInfo": 60541518, + "PaymentType": "Credit Card" + }, + { + "Id": 19033, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2016-11-13T15:07:29", + "TransactionId": 16921724, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 69, + "CustomerInfo": 70015923, + "PaymentType": "Credit Card" + }, + { + "Id": 19034, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-2", + "TransactionDate": "2018-08-11T13:51:10", + "TransactionId": 85278573, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 885, + "CustomerInfo": 48010055, + "PaymentType": "Debit Card" + }, + { + "Id": 19035, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2017-02-09T19:58:31", + "TransactionId": 31659715, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 666, + "CustomerInfo": 85307155, + "PaymentType": "Debit Card" + }, + { + "Id": 19036, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2018-08-01T14:12:20", + "TransactionId": 39012483, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 974, + "CustomerInfo": 4664950, + "PaymentType": "Credit Card" + }, + { + "Id": 19037, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-5", + "TransactionDate": "2017-03-04T16:23:14", + "TransactionId": 29034650, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 969, + "CustomerInfo": 15860376, + "PaymentType": "Cash" + }, + { + "Id": 19038, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2018-07-13T07:44:15", + "TransactionId": 71265611, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 492, + "CustomerInfo": 35154893, + "PaymentType": "Credit Card" + }, + { + "Id": 19039, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-2", + "TransactionDate": "2016-11-02T07:07:49", + "TransactionId": 91926040, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 22, + "CustomerInfo": 81544524, + "PaymentType": "Cash" + }, + { + "Id": 19040, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2017-05-22T17:10:19", + "TransactionId": 50633700, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 50, + "CustomerInfo": 90714450, + "PaymentType": "Cash" + }, + { + "Id": 19041, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2018-10-09T07:25:15", + "TransactionId": 67821423, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 734, + "CustomerInfo": 51352462, + "PaymentType": "Debit Card" + }, + { + "Id": 19042, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2017-06-22T13:10:51", + "TransactionId": 85363907, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 943, + "CustomerInfo": 32025304, + "PaymentType": "Cash" + }, + { + "Id": 19043, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2019-05-03T12:17:00", + "TransactionId": 96525150, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 75, + "CustomerInfo": 93172434, + "PaymentType": "Cash" + }, + { + "Id": 19044, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-4", + "TransactionDate": "2017-01-29T07:39:48", + "TransactionId": 55451655, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 690, + "CustomerInfo": 38564861, + "PaymentType": "Cash" + }, + { + "Id": 19045, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-2", + "TransactionDate": "2018-02-20T18:13:32", + "TransactionId": 7666321, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 456, + "CustomerInfo": 63292180, + "PaymentType": "Debit Card" + }, + { + "Id": 19046, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2017-08-27T13:16:28", + "TransactionId": 22286230, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 786, + "CustomerInfo": 23072786, + "PaymentType": "Cash" + }, + { + "Id": 19047, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-07-13T07:08:59", + "TransactionId": 25185390, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 616, + "CustomerInfo": 75779453, + "PaymentType": "Cash" + }, + { + "Id": 19048, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2016-12-07T07:14:36", + "TransactionId": 66740827, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 755, + "CustomerInfo": 92805354, + "PaymentType": "Cash" + }, + { + "Id": 19049, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-2", + "TransactionDate": "2018-05-03T11:28:19", + "TransactionId": 36081109, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 964, + "CustomerInfo": 70389831, + "PaymentType": "Credit Card" + }, + { + "Id": 19050, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-03-22T15:36:09", + "TransactionId": 86850122, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 885, + "CustomerInfo": 33353100, + "PaymentType": "Cash" + }, + { + "Id": 19051, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-01-25T14:22:51", + "TransactionId": 47824891, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 414, + "CustomerInfo": 55679727, + "PaymentType": "Credit Card" + }, + { + "Id": 19052, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-11-13T15:24:03", + "TransactionId": 44927550, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 990, + "CustomerInfo": 63062849, + "PaymentType": "Cash" + }, + { + "Id": 19053, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2016-07-25T13:49:52", + "TransactionId": 54415191, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 827, + "CustomerInfo": 7722194, + "PaymentType": "Debit Card" + }, + { + "Id": 19054, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2016-12-31T11:13:03", + "TransactionId": 73791769, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 445, + "CustomerInfo": 63599679, + "PaymentType": "Debit Card" + }, + { + "Id": 19055, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-05-01T13:23:14", + "TransactionId": 14979825, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 573, + "CustomerInfo": 31438509, + "PaymentType": "Cash" + }, + { + "Id": 19056, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-2", + "TransactionDate": "2018-05-15T10:46:08", + "TransactionId": 69311701, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 143, + "CustomerInfo": 56024420, + "PaymentType": "Credit Card" + }, + { + "Id": 19057, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-3", + "TransactionDate": "2016-09-26T08:35:48", + "TransactionId": 7283763, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 943, + "CustomerInfo": 27367565, + "PaymentType": "Cash" + }, + { + "Id": 19058, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2016-01-27T17:44:01", + "TransactionId": 14818856, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 956, + "CustomerInfo": 23901740, + "PaymentType": "Cash" + }, + { + "Id": 19059, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2016-08-03T13:36:55", + "TransactionId": 28432309, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 853, + "CustomerInfo": 73922605, + "PaymentType": "Cash" + }, + { + "Id": 19060, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2018-01-16T11:29:20", + "TransactionId": 31660809, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 313, + "CustomerInfo": 57784191, + "PaymentType": "Cash" + }, + { + "Id": 19061, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-2", + "TransactionDate": "2016-03-25T12:53:25", + "TransactionId": 38212722, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 701, + "CustomerInfo": 42134573, + "PaymentType": "Cash" + }, + { + "Id": 19062, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2017-03-23T11:23:43", + "TransactionId": 17260957, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 416, + "CustomerInfo": 61747517, + "PaymentType": "Credit Card" + }, + { + "Id": 19063, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2019-10-02T11:45:19", + "TransactionId": 51926670, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 990, + "CustomerInfo": 90488093, + "PaymentType": "Debit Card" + }, + { + "Id": 19064, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-03-26T10:03:13", + "TransactionId": 23775604, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 552, + "CustomerInfo": 38866932, + "PaymentType": "Credit Card" + }, + { + "Id": 19065, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2017-09-11T16:10:16", + "TransactionId": 34105634, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 635, + "CustomerInfo": 95533449, + "PaymentType": "Credit Card" + }, + { + "Id": 19066, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2017-07-29T11:55:58", + "TransactionId": 27631486, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 244, + "CustomerInfo": 78856484, + "PaymentType": "Debit Card" + }, + { + "Id": 19067, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-12-06T13:39:22", + "TransactionId": 43426633, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 769, + "CustomerInfo": 97009550, + "PaymentType": "Cash" + }, + { + "Id": 19068, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-01-11T09:21:19", + "TransactionId": 42392835, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 770, + "CustomerInfo": 45214570, + "PaymentType": "Debit Card" + }, + { + "Id": 19069, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-5", + "TransactionDate": "2016-12-18T18:34:42", + "TransactionId": 68319105, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 236, + "CustomerInfo": 19238649, + "PaymentType": "Cash" + }, + { + "Id": 19070, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-05-02T10:43:15", + "TransactionId": 96998558, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 339, + "CustomerInfo": 67980845, + "PaymentType": "Cash" + }, + { + "Id": 19071, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-03-09T12:26:38", + "TransactionId": 41589757, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 544, + "CustomerInfo": 30792460, + "PaymentType": "Credit Card" + }, + { + "Id": 19072, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2016-04-05T07:10:25", + "TransactionId": 53903776, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 359, + "CustomerInfo": 48759767, + "PaymentType": "Credit Card" + }, + { + "Id": 19073, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-1", + "TransactionDate": "2018-10-25T10:57:56", + "TransactionId": 36286025, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 967, + "CustomerInfo": 76199464, + "PaymentType": "Debit Card" + }, + { + "Id": 19074, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2016-05-30T07:36:03", + "TransactionId": 36845362, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 251, + "CustomerInfo": 45960300, + "PaymentType": "Credit Card" + }, + { + "Id": 19075, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2016-07-16T19:27:07", + "TransactionId": 73564004, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 207, + "CustomerInfo": 96807304, + "PaymentType": "Cash" + }, + { + "Id": 19076, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2017-04-25T12:03:10", + "TransactionId": 76115811, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 454, + "CustomerInfo": 93500579, + "PaymentType": "Debit Card" + }, + { + "Id": 19077, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-1", + "TransactionDate": "2016-07-31T10:01:12", + "TransactionId": 83753979, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 47769708, + "PaymentType": "Cash" + }, + { + "Id": 19078, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2019-12-01T07:55:55", + "TransactionId": 73649219, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 993, + "CustomerInfo": 16410289, + "PaymentType": "Debit Card" + }, + { + "Id": 19079, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-4", + "TransactionDate": "2018-10-17T10:03:13", + "TransactionId": 98871870, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 968, + "CustomerInfo": 97524975, + "PaymentType": "Cash" + }, + { + "Id": 19080, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-02-09T17:29:37", + "TransactionId": 94293181, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 494, + "CustomerInfo": 17169511, + "PaymentType": "Debit Card" + }, + { + "Id": 19081, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-07-08T08:39:59", + "TransactionId": 11357459, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 723, + "CustomerInfo": 11080973, + "PaymentType": "Debit Card" + }, + { + "Id": 19082, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2019-07-03T16:15:27", + "TransactionId": 69646178, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 749, + "CustomerInfo": 87076946, + "PaymentType": "Credit Card" + }, + { + "Id": 19083, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-07-25T15:57:36", + "TransactionId": 1002355, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 703, + "CustomerInfo": 62153958, + "PaymentType": "Debit Card" + }, + { + "Id": 19084, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2019-09-20T18:12:32", + "TransactionId": 22803337, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 153, + "CustomerInfo": 50756515, + "PaymentType": "Cash" + }, + { + "Id": 19085, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-4", + "TransactionDate": "2016-08-25T14:06:17", + "TransactionId": 47604373, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 996, + "CustomerInfo": 8928081, + "PaymentType": "Cash" + }, + { + "Id": 19086, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-09-18T19:47:00", + "TransactionId": 62638615, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 614, + "CustomerInfo": 97234458, + "PaymentType": "Debit Card" + }, + { + "Id": 19087, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2018-10-08T07:57:13", + "TransactionId": 12145877, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 158, + "CustomerInfo": 27058458, + "PaymentType": "Cash" + }, + { + "Id": 19088, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-08-03T16:03:30", + "TransactionId": 44325098, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 798, + "CustomerInfo": 79552068, + "PaymentType": "Credit Card" + }, + { + "Id": 19089, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-3", + "TransactionDate": "2017-06-30T16:18:37", + "TransactionId": 59694394, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 810, + "CustomerInfo": 7503118, + "PaymentType": "Credit Card" + }, + { + "Id": 19090, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-5", + "TransactionDate": "2017-06-18T14:34:22", + "TransactionId": 29994936, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 686, + "CustomerInfo": 81280637, + "PaymentType": "Debit Card" + }, + { + "Id": 19091, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2019-02-15T16:03:48", + "TransactionId": 35245669, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 815, + "CustomerInfo": 96141211, + "PaymentType": "Cash" + }, + { + "Id": 19092, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-4", + "TransactionDate": "2017-10-14T08:59:00", + "TransactionId": 4471618, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 544, + "CustomerInfo": 57155768, + "PaymentType": "Credit Card" + }, + { + "Id": 19093, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2016-04-12T17:03:59", + "TransactionId": 60954363, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 319, + "CustomerInfo": 68989876, + "PaymentType": "Debit Card" + }, + { + "Id": 19094, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2017-06-25T09:24:55", + "TransactionId": 51724839, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 955, + "CustomerInfo": 70028914, + "PaymentType": "Credit Card" + }, + { + "Id": 19095, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2017-11-17T11:40:25", + "TransactionId": 79521176, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 646, + "CustomerInfo": 79471954, + "PaymentType": "Cash" + }, + { + "Id": 19096, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2018-09-14T11:06:35", + "TransactionId": 88773541, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 577, + "CustomerInfo": 63398782, + "PaymentType": "Credit Card" + }, + { + "Id": 19097, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2019-11-28T12:51:50", + "TransactionId": 69636521, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 564, + "CustomerInfo": 68245017, + "PaymentType": "Cash" + }, + { + "Id": 19098, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-2", + "TransactionDate": "2019-10-29T13:55:29", + "TransactionId": 82232026, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 711, + "CustomerInfo": 8640763, + "PaymentType": "Debit Card" + }, + { + "Id": 19099, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2017-03-08T13:35:28", + "TransactionId": 1986523, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 11, + "CustomerInfo": 20352465, + "PaymentType": "Cash" + }, + { + "Id": 19100, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2018-06-13T18:19:00", + "TransactionId": 50245455, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 272, + "CustomerInfo": 93731990, + "PaymentType": "Credit Card" + }, + { + "Id": 19101, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-3", + "TransactionDate": "2018-01-03T10:06:23", + "TransactionId": 72840107, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 651, + "CustomerInfo": 80334350, + "PaymentType": "Credit Card" + }, + { + "Id": 19102, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2019-12-06T08:33:13", + "TransactionId": 94458399, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 800, + "CustomerInfo": 40823404, + "PaymentType": "Debit Card" + }, + { + "Id": 19103, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-08-26T07:12:35", + "TransactionId": 28080701, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 197, + "CustomerInfo": 4514576, + "PaymentType": "Cash" + }, + { + "Id": 19104, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-2", + "TransactionDate": "2017-10-13T08:24:35", + "TransactionId": 71622806, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 525, + "CustomerInfo": 13963133, + "PaymentType": "Credit Card" + }, + { + "Id": 19105, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2017-05-22T09:48:06", + "TransactionId": 40321201, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 226, + "CustomerInfo": 82225149, + "PaymentType": "Cash" + }, + { + "Id": 19106, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-1", + "TransactionDate": "2016-05-14T09:04:45", + "TransactionId": 44982149, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 577, + "CustomerInfo": 66892109, + "PaymentType": "Credit Card" + }, + { + "Id": 19107, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2017-03-09T17:47:28", + "TransactionId": 93057269, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 458, + "CustomerInfo": 44909689, + "PaymentType": "Debit Card" + }, + { + "Id": 19108, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2018-10-18T10:11:34", + "TransactionId": 46808615, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 726, + "CustomerInfo": 23302905, + "PaymentType": "Credit Card" + }, + { + "Id": 19109, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2016-08-21T18:58:19", + "TransactionId": 24535664, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 547, + "CustomerInfo": 20300515, + "PaymentType": "Debit Card" + }, + { + "Id": 19110, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2016-05-25T10:28:34", + "TransactionId": 93189419, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 93, + "CustomerInfo": 78701715, + "PaymentType": "Credit Card" + }, + { + "Id": 19111, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2016-03-01T16:31:44", + "TransactionId": 67587815, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 997, + "CustomerInfo": 98487888, + "PaymentType": "Cash" + }, + { + "Id": 19112, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-3", + "TransactionDate": "2019-03-03T10:20:30", + "TransactionId": 10940418, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 555, + "CustomerInfo": 61205751, + "PaymentType": "Debit Card" + }, + { + "Id": 19113, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-10-13T12:49:06", + "TransactionId": 90375025, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 398, + "CustomerInfo": 48498652, + "PaymentType": "Cash" + }, + { + "Id": 19114, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2019-09-01T19:05:14", + "TransactionId": 67220353, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 615, + "CustomerInfo": 42151282, + "PaymentType": "Debit Card" + }, + { + "Id": 19115, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-3", + "TransactionDate": "2018-12-09T13:42:58", + "TransactionId": 57871492, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 64, + "CustomerInfo": 74180727, + "PaymentType": "Credit Card" + }, + { + "Id": 19116, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-03-12T14:13:29", + "TransactionId": 66087514, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 163, + "CustomerInfo": 51260543, + "PaymentType": "Credit Card" + }, + { + "Id": 19117, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-5", + "TransactionDate": "2018-09-24T18:02:01", + "TransactionId": 40020426, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 570, + "CustomerInfo": 41287037, + "PaymentType": "Cash" + }, + { + "Id": 19118, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2017-12-08T13:34:45", + "TransactionId": 23812460, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 135, + "CustomerInfo": 72291541, + "PaymentType": "Credit Card" + }, + { + "Id": 19119, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-2", + "TransactionDate": "2018-06-13T12:17:00", + "TransactionId": 4174541, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 873, + "CustomerInfo": 11801791, + "PaymentType": "Cash" + }, + { + "Id": 19120, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-1", + "TransactionDate": "2016-04-09T14:37:15", + "TransactionId": 48803202, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 44, + "CustomerInfo": 27628036, + "PaymentType": "Cash" + }, + { + "Id": 19121, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2019-03-06T11:07:35", + "TransactionId": 35878520, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 155, + "CustomerInfo": 74990966, + "PaymentType": "Cash" + }, + { + "Id": 19122, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2019-04-30T16:58:13", + "TransactionId": 73931484, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 284, + "CustomerInfo": 92002890, + "PaymentType": "Credit Card" + }, + { + "Id": 19123, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2018-09-05T18:49:24", + "TransactionId": 38449239, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 939, + "CustomerInfo": 86740008, + "PaymentType": "Cash" + }, + { + "Id": 19124, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-3", + "TransactionDate": "2019-09-26T18:55:26", + "TransactionId": 1091827, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 555, + "CustomerInfo": 6335397, + "PaymentType": "Cash" + }, + { + "Id": 19125, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-4", + "TransactionDate": "2016-06-12T17:00:32", + "TransactionId": 65997504, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 528, + "CustomerInfo": 77262483, + "PaymentType": "Cash" + }, + { + "Id": 19126, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-1", + "TransactionDate": "2017-04-11T07:52:11", + "TransactionId": 62620733, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 489, + "CustomerInfo": 9158230, + "PaymentType": "Debit Card" + }, + { + "Id": 19127, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2017-12-28T16:37:29", + "TransactionId": 65582793, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 39, + "CustomerInfo": 96885983, + "PaymentType": "Credit Card" + }, + { + "Id": 19128, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-3", + "TransactionDate": "2019-04-26T11:55:32", + "TransactionId": 43792689, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 34257287, + "PaymentType": "Credit Card" + }, + { + "Id": 19129, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2016-08-11T15:53:34", + "TransactionId": 23761207, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 718, + "CustomerInfo": 42669450, + "PaymentType": "Credit Card" + }, + { + "Id": 19130, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-3", + "TransactionDate": "2017-06-18T15:20:27", + "TransactionId": 92619208, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 844, + "CustomerInfo": 196819, + "PaymentType": "Credit Card" + }, + { + "Id": 19131, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-4", + "TransactionDate": "2018-09-08T14:54:14", + "TransactionId": 8055555, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 813, + "CustomerInfo": 80973348, + "PaymentType": "Credit Card" + }, + { + "Id": 19132, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2016-11-08T11:43:00", + "TransactionId": 22761589, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 780, + "CustomerInfo": 29967246, + "PaymentType": "Credit Card" + }, + { + "Id": 19133, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-05-06T19:26:50", + "TransactionId": 35126321, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 940, + "CustomerInfo": 10066993, + "PaymentType": "Debit Card" + }, + { + "Id": 19134, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2017-12-05T08:43:18", + "TransactionId": 53153222, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 963, + "CustomerInfo": 58074904, + "PaymentType": "Cash" + }, + { + "Id": 19135, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-4", + "TransactionDate": "2018-09-07T09:06:20", + "TransactionId": 80505229, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 994, + "CustomerInfo": 11890069, + "PaymentType": "Credit Card" + }, + { + "Id": 19136, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-06-13T16:55:03", + "TransactionId": 7846169, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 19, + "CustomerInfo": 35434673, + "PaymentType": "Cash" + }, + { + "Id": 19137, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-4", + "TransactionDate": "2017-10-02T17:17:48", + "TransactionId": 53128109, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 367, + "CustomerInfo": 18098058, + "PaymentType": "Debit Card" + }, + { + "Id": 19138, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-4", + "TransactionDate": "2018-02-20T09:03:27", + "TransactionId": 26960549, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 418, + "CustomerInfo": 98116310, + "PaymentType": "Credit Card" + }, + { + "Id": 19139, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2016-05-10T16:04:39", + "TransactionId": 73514371, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 581, + "CustomerInfo": 45071094, + "PaymentType": "Cash" + }, + { + "Id": 19140, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-3", + "TransactionDate": "2016-11-23T08:06:26", + "TransactionId": 43177571, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 338, + "CustomerInfo": 39126506, + "PaymentType": "Debit Card" + }, + { + "Id": 19141, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-2", + "TransactionDate": "2016-12-07T18:21:45", + "TransactionId": 72731277, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 985, + "CustomerInfo": 86430785, + "PaymentType": "Credit Card" + }, + { + "Id": 19142, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2019-02-03T11:24:00", + "TransactionId": 95678370, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 240, + "CustomerInfo": 28761179, + "PaymentType": "Cash" + }, + { + "Id": 19143, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2016-03-02T17:36:23", + "TransactionId": 9440351, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 503, + "CustomerInfo": 21015775, + "PaymentType": "Debit Card" + }, + { + "Id": 19144, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-3", + "TransactionDate": "2017-02-03T17:49:55", + "TransactionId": 15579060, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 657, + "CustomerInfo": 4527380, + "PaymentType": "Credit Card" + }, + { + "Id": 19145, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-1", + "TransactionDate": "2018-11-27T07:55:47", + "TransactionId": 63466741, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 35, + "CustomerInfo": 8624519, + "PaymentType": "Debit Card" + }, + { + "Id": 19146, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2016-06-15T08:46:36", + "TransactionId": 32008113, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 290, + "CustomerInfo": 67524057, + "PaymentType": "Credit Card" + }, + { + "Id": 19147, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-1", + "TransactionDate": "2018-01-23T15:19:26", + "TransactionId": 51488292, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 207, + "CustomerInfo": 63018485, + "PaymentType": "Credit Card" + }, + { + "Id": 19148, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-4", + "TransactionDate": "2016-05-27T19:00:03", + "TransactionId": 82896462, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 397, + "CustomerInfo": 76174151, + "PaymentType": "Credit Card" + }, + { + "Id": 19149, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2017-10-12T18:28:22", + "TransactionId": 67591803, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 96, + "CustomerInfo": 27859366, + "PaymentType": "Cash" + }, + { + "Id": 19150, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2016-12-20T15:37:52", + "TransactionId": 80531930, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 626, + "CustomerInfo": 17634823, + "PaymentType": "Cash" + }, + { + "Id": 19151, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2019-10-18T13:49:18", + "TransactionId": 73073835, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 257, + "CustomerInfo": 77548232, + "PaymentType": "Debit Card" + }, + { + "Id": 19152, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2016-01-18T17:50:56", + "TransactionId": 92693258, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 342, + "CustomerInfo": 68291304, + "PaymentType": "Credit Card" + }, + { + "Id": 19153, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-5", + "TransactionDate": "2019-01-21T13:19:38", + "TransactionId": 44781891, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 806, + "CustomerInfo": 82639626, + "PaymentType": "Credit Card" + }, + { + "Id": 19154, + "Region": "APAC", + "Country": "Tuvalu", + "Code": "TV", + "StoreId": "TV-1", + "TransactionDate": "2016-05-28T19:03:13", + "TransactionId": 46233923, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 613, + "CustomerInfo": 24076956, + "PaymentType": "Cash" + }, + { + "Id": 19155, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-3", + "TransactionDate": "2017-06-19T07:01:38", + "TransactionId": 48598434, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 481, + "CustomerInfo": 55303858, + "PaymentType": "Cash" + }, + { + "Id": 19156, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2017-05-08T09:24:55", + "TransactionId": 15919848, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 348, + "CustomerInfo": 64802770, + "PaymentType": "Debit Card" + }, + { + "Id": 19157, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2018-12-15T14:06:43", + "TransactionId": 22804100, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 898, + "CustomerInfo": 79754252, + "PaymentType": "Credit Card" + }, + { + "Id": 19158, + "Region": "APAC", + "Country": "Solomon Islands", + "Code": "SB", + "StoreId": "SB-4", + "TransactionDate": "2017-04-19T08:13:47", + "TransactionId": 38131948, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 775, + "CustomerInfo": 31353570, + "PaymentType": "Debit Card" + }, + { + "Id": 19159, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-02-14T11:14:21", + "TransactionId": 12738771, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 308, + "CustomerInfo": 22864133, + "PaymentType": "Cash" + }, + { + "Id": 19160, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2016-12-17T17:14:21", + "TransactionId": 51318936, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 550, + "CustomerInfo": 69824653, + "PaymentType": "Cash" + }, + { + "Id": 19161, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-10-16T12:02:18", + "TransactionId": 56200070, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 539, + "CustomerInfo": 90709687, + "PaymentType": "Debit Card" + }, + { + "Id": 19162, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2017-08-03T17:19:58", + "TransactionId": 59211297, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 880, + "CustomerInfo": 63502600, + "PaymentType": "Cash" + }, + { + "Id": 19163, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2016-05-29T08:44:01", + "TransactionId": 18245128, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 746, + "CustomerInfo": 47557637, + "PaymentType": "Debit Card" + }, + { + "Id": 19164, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-1", + "TransactionDate": "2019-08-15T09:00:17", + "TransactionId": 85174392, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 797, + "CustomerInfo": 15823444, + "PaymentType": "Credit Card" + }, + { + "Id": 19165, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-1", + "TransactionDate": "2016-12-04T12:32:33", + "TransactionId": 33669234, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 134, + "CustomerInfo": 56797350, + "PaymentType": "Cash" + }, + { + "Id": 19166, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-4", + "TransactionDate": "2018-02-17T09:52:08", + "TransactionId": 20380300, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 662, + "CustomerInfo": 85368167, + "PaymentType": "Debit Card" + }, + { + "Id": 19167, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-4", + "TransactionDate": "2018-05-05T13:07:06", + "TransactionId": 17276656, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 10, + "CustomerInfo": 52635434, + "PaymentType": "Debit Card" + }, + { + "Id": 19168, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-1", + "TransactionDate": "2017-05-02T07:21:04", + "TransactionId": 26321046, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 344, + "CustomerInfo": 23244247, + "PaymentType": "Debit Card" + }, + { + "Id": 19169, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-4", + "TransactionDate": "2017-04-06T08:46:28", + "TransactionId": 90783588, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 63218565, + "PaymentType": "Cash" + }, + { + "Id": 19170, + "Region": "APAC", + "Country": "Saudi Arabia", + "Code": "SA", + "StoreId": "SA-5", + "TransactionDate": "2019-12-05T08:00:32", + "TransactionId": 85030425, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 385, + "CustomerInfo": 67821762, + "PaymentType": "Debit Card" + }, + { + "Id": 19171, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2019-11-20T14:35:05", + "TransactionId": 79913055, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 965, + "CustomerInfo": 37742019, + "PaymentType": "Credit Card" + }, + { + "Id": 19172, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2017-06-26T12:19:35", + "TransactionId": 68890395, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 777, + "CustomerInfo": 40966311, + "PaymentType": "Debit Card" + }, + { + "Id": 19173, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2018-10-23T13:05:57", + "TransactionId": 7544597, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 441, + "CustomerInfo": 82467233, + "PaymentType": "Credit Card" + }, + { + "Id": 19174, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2016-11-25T15:01:44", + "TransactionId": 85144454, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 580, + "CustomerInfo": 86558215, + "PaymentType": "Cash" + }, + { + "Id": 19175, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-1", + "TransactionDate": "2016-03-21T14:43:44", + "TransactionId": 52729053, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 266, + "CustomerInfo": 889287, + "PaymentType": "Credit Card" + }, + { + "Id": 19176, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2019-05-17T13:11:08", + "TransactionId": 71017139, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 270, + "CustomerInfo": 35186538, + "PaymentType": "Credit Card" + }, + { + "Id": 19177, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-10-23T07:51:10", + "TransactionId": 88127894, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 525, + "CustomerInfo": 82077972, + "PaymentType": "Credit Card" + }, + { + "Id": 19178, + "Region": "NA", + "Country": "Costa Rica", + "Code": "CR", + "StoreId": "CR-1", + "TransactionDate": "2019-12-24T09:19:44", + "TransactionId": 49046735, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 986, + "CustomerInfo": 16040436, + "PaymentType": "Credit Card" + }, + { + "Id": 19179, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2018-01-01T11:37:41", + "TransactionId": 74423764, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 67, + "CustomerInfo": 81507646, + "PaymentType": "Cash" + }, + { + "Id": 19180, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-4", + "TransactionDate": "2017-08-05T15:32:15", + "TransactionId": 19557782, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 31, + "CustomerInfo": 14154699, + "PaymentType": "Debit Card" + }, + { + "Id": 19181, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2016-05-06T16:47:08", + "TransactionId": 38101771, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 425, + "CustomerInfo": 40382303, + "PaymentType": "Debit Card" + }, + { + "Id": 19182, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2016-06-20T15:47:48", + "TransactionId": 40592162, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 244, + "CustomerInfo": 56133957, + "PaymentType": "Debit Card" + }, + { + "Id": 19183, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-2", + "TransactionDate": "2017-10-10T11:12:46", + "TransactionId": 65546205, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 327, + "CustomerInfo": 46551329, + "PaymentType": "Credit Card" + }, + { + "Id": 19184, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2016-08-08T16:54:46", + "TransactionId": 11213666, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 408, + "CustomerInfo": 61780923, + "PaymentType": "Debit Card" + }, + { + "Id": 19185, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-3", + "TransactionDate": "2017-07-03T11:57:33", + "TransactionId": 71584129, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 306, + "CustomerInfo": 77195101, + "PaymentType": "Debit Card" + }, + { + "Id": 19186, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-08-03T19:19:29", + "TransactionId": 70723112, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 596, + "CustomerInfo": 8991569, + "PaymentType": "Cash" + }, + { + "Id": 19187, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2018-05-02T12:01:52", + "TransactionId": 58112408, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 121, + "CustomerInfo": 59026009, + "PaymentType": "Cash" + }, + { + "Id": 19188, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2016-08-03T12:58:19", + "TransactionId": 42388003, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 34, + "CustomerInfo": 75179619, + "PaymentType": "Debit Card" + }, + { + "Id": 19189, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2016-02-24T08:28:19", + "TransactionId": 70395690, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 44, + "CustomerInfo": 43295268, + "PaymentType": "Cash" + }, + { + "Id": 19190, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-03-06T18:33:16", + "TransactionId": 41857780, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 590, + "CustomerInfo": 79396038, + "PaymentType": "Credit Card" + }, + { + "Id": 19191, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-2", + "TransactionDate": "2019-09-26T17:27:19", + "TransactionId": 15782529, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 739, + "CustomerInfo": 26116041, + "PaymentType": "Credit Card" + }, + { + "Id": 19192, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-5", + "TransactionDate": "2016-09-21T12:36:43", + "TransactionId": 84052038, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 104, + "CustomerInfo": 42973447, + "PaymentType": "Debit Card" + }, + { + "Id": 19193, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-3", + "TransactionDate": "2018-05-13T15:50:50", + "TransactionId": 41509397, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 857, + "CustomerInfo": 69796640, + "PaymentType": "Cash" + }, + { + "Id": 19194, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-5", + "TransactionDate": "2018-04-25T08:31:55", + "TransactionId": 5731412, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 536, + "CustomerInfo": 60754475, + "PaymentType": "Credit Card" + }, + { + "Id": 19195, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2017-03-28T14:10:36", + "TransactionId": 99301416, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 585, + "CustomerInfo": 9437974, + "PaymentType": "Debit Card" + }, + { + "Id": 19196, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2017-10-22T16:52:36", + "TransactionId": 30019153, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 962, + "CustomerInfo": 46671684, + "PaymentType": "Debit Card" + }, + { + "Id": 19197, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-5", + "TransactionDate": "2017-01-02T19:14:01", + "TransactionId": 13257302, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 829, + "CustomerInfo": 68661592, + "PaymentType": "Credit Card" + }, + { + "Id": 19198, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2018-09-10T16:28:34", + "TransactionId": 86322941, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 638, + "CustomerInfo": 6806604, + "PaymentType": "Credit Card" + }, + { + "Id": 19199, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2019-05-29T13:19:21", + "TransactionId": 10440939, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 878, + "CustomerInfo": 3500424, + "PaymentType": "Cash" + }, + { + "Id": 19200, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-2", + "TransactionDate": "2017-01-13T14:01:49", + "TransactionId": 62363452, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 198, + "CustomerInfo": 4012638, + "PaymentType": "Credit Card" + }, + { + "Id": 19201, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2017-03-12T17:10:19", + "TransactionId": 94024309, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 255, + "CustomerInfo": 35550979, + "PaymentType": "Credit Card" + }, + { + "Id": 19202, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2019-01-14T08:31:29", + "TransactionId": 39885316, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 547, + "CustomerInfo": 58717587, + "PaymentType": "Cash" + }, + { + "Id": 19203, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-2", + "TransactionDate": "2017-05-27T13:47:00", + "TransactionId": 78058040, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 282, + "CustomerInfo": 55523383, + "PaymentType": "Cash" + }, + { + "Id": 19204, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2016-07-03T12:44:47", + "TransactionId": 1159842, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 355, + "CustomerInfo": 42566094, + "PaymentType": "Debit Card" + }, + { + "Id": 19205, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-5", + "TransactionDate": "2018-06-03T12:57:19", + "TransactionId": 83223657, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 46, + "CustomerInfo": 94041127, + "PaymentType": "Debit Card" + }, + { + "Id": 19206, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-2", + "TransactionDate": "2016-03-31T10:20:21", + "TransactionId": 73353278, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 301, + "CustomerInfo": 23857462, + "PaymentType": "Credit Card" + }, + { + "Id": 19207, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-02-20T07:12:00", + "TransactionId": 75700482, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 313, + "CustomerInfo": 19426281, + "PaymentType": "Credit Card" + }, + { + "Id": 19208, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2019-05-15T18:52:51", + "TransactionId": 45028318, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 395, + "CustomerInfo": 77407263, + "PaymentType": "Credit Card" + }, + { + "Id": 19209, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2016-11-21T15:48:23", + "TransactionId": 66498911, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 764, + "CustomerInfo": 17454942, + "PaymentType": "Credit Card" + }, + { + "Id": 19210, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2016-01-09T13:42:40", + "TransactionId": 66460915, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 815, + "CustomerInfo": 4961984, + "PaymentType": "Debit Card" + }, + { + "Id": 19211, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2019-11-16T16:58:22", + "TransactionId": 42271891, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 628, + "CustomerInfo": 64879877, + "PaymentType": "Credit Card" + }, + { + "Id": 19212, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-4", + "TransactionDate": "2016-10-16T07:27:16", + "TransactionId": 99981051, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 964, + "CustomerInfo": 11069056, + "PaymentType": "Cash" + }, + { + "Id": 19213, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-07-28T12:06:20", + "TransactionId": 5611277, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 76, + "CustomerInfo": 19433029, + "PaymentType": "Cash" + }, + { + "Id": 19214, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2018-08-21T12:05:28", + "TransactionId": 48696422, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 992, + "CustomerInfo": 40479750, + "PaymentType": "Debit Card" + }, + { + "Id": 19215, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-5", + "TransactionDate": "2017-03-17T09:25:03", + "TransactionId": 25776969, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 316, + "CustomerInfo": 38912350, + "PaymentType": "Debit Card" + }, + { + "Id": 19216, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-2", + "TransactionDate": "2018-09-19T07:07:32", + "TransactionId": 37116713, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 74, + "CustomerInfo": 83142056, + "PaymentType": "Debit Card" + }, + { + "Id": 19217, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2019-02-22T15:42:37", + "TransactionId": 56558156, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 661, + "CustomerInfo": 38676767, + "PaymentType": "Debit Card" + }, + { + "Id": 19218, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2016-06-28T17:14:12", + "TransactionId": 26544200, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 149, + "CustomerInfo": 7009060, + "PaymentType": "Debit Card" + }, + { + "Id": 19219, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-3", + "TransactionDate": "2017-11-08T12:19:44", + "TransactionId": 79529020, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 353, + "CustomerInfo": 81711268, + "PaymentType": "Credit Card" + }, + { + "Id": 19220, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-4", + "TransactionDate": "2019-09-29T13:57:04", + "TransactionId": 139992, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 367, + "CustomerInfo": 64841956, + "PaymentType": "Credit Card" + }, + { + "Id": 19221, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-2", + "TransactionDate": "2016-06-24T17:47:37", + "TransactionId": 7977306, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 895, + "CustomerInfo": 66914349, + "PaymentType": "Credit Card" + }, + { + "Id": 19222, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-1", + "TransactionDate": "2017-09-03T13:01:47", + "TransactionId": 79539716, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 149, + "CustomerInfo": 49082365, + "PaymentType": "Cash" + }, + { + "Id": 19223, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2016-06-23T10:35:02", + "TransactionId": 52877790, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 978, + "CustomerInfo": 54197947, + "PaymentType": "Credit Card" + }, + { + "Id": 19224, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-1", + "TransactionDate": "2016-04-16T12:01:00", + "TransactionId": 17479723, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 574, + "CustomerInfo": 14878305, + "PaymentType": "Cash" + }, + { + "Id": 19225, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-11-26T17:06:09", + "TransactionId": 9893155, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 724, + "CustomerInfo": 79627682, + "PaymentType": "Credit Card" + }, + { + "Id": 19226, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2019-06-01T09:23:28", + "TransactionId": 70231471, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 858, + "CustomerInfo": 81761661, + "PaymentType": "Credit Card" + }, + { + "Id": 19227, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-2", + "TransactionDate": "2018-01-28T13:26:59", + "TransactionId": 6047450, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 501, + "CustomerInfo": 31171876, + "PaymentType": "Cash" + }, + { + "Id": 19228, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2019-10-18T18:35:51", + "TransactionId": 16180697, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 225, + "CustomerInfo": 40339877, + "PaymentType": "Debit Card" + }, + { + "Id": 19229, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2019-07-29T18:11:40", + "TransactionId": 36240723, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 971, + "CustomerInfo": 317930, + "PaymentType": "Credit Card" + }, + { + "Id": 19230, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-1", + "TransactionDate": "2016-04-02T11:32:30", + "TransactionId": 45334563, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 485, + "CustomerInfo": 70752772, + "PaymentType": "Cash" + }, + { + "Id": 19231, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-4", + "TransactionDate": "2019-08-21T16:18:46", + "TransactionId": 6911374, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 371, + "CustomerInfo": 4158164, + "PaymentType": "Cash" + }, + { + "Id": 19232, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-3", + "TransactionDate": "2017-01-25T18:31:15", + "TransactionId": 35725412, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 615, + "CustomerInfo": 65659807, + "PaymentType": "Credit Card" + }, + { + "Id": 19233, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2016-08-21T16:31:00", + "TransactionId": 27552997, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 746, + "CustomerInfo": 82687905, + "PaymentType": "Debit Card" + }, + { + "Id": 19234, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2017-08-02T11:18:58", + "TransactionId": 2457698, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 660, + "CustomerInfo": 88172618, + "PaymentType": "Debit Card" + }, + { + "Id": 19235, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-1", + "TransactionDate": "2019-04-24T13:10:51", + "TransactionId": 86796663, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 602, + "CustomerInfo": 11381250, + "PaymentType": "Cash" + }, + { + "Id": 19236, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-5", + "TransactionDate": "2016-02-07T17:00:40", + "TransactionId": 21691959, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 182, + "CustomerInfo": 19203204, + "PaymentType": "Cash" + }, + { + "Id": 19237, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-2", + "TransactionDate": "2017-05-20T18:59:20", + "TransactionId": 68459731, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 498, + "CustomerInfo": 53119368, + "PaymentType": "Cash" + }, + { + "Id": 19238, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2019-04-10T18:01:18", + "TransactionId": 6104899, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 150, + "CustomerInfo": 8729597, + "PaymentType": "Cash" + }, + { + "Id": 19239, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-3", + "TransactionDate": "2018-06-05T08:33:30", + "TransactionId": 69316630, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 648, + "CustomerInfo": 6570079, + "PaymentType": "Debit Card" + }, + { + "Id": 19240, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2018-12-14T17:06:17", + "TransactionId": 88011538, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 322, + "CustomerInfo": 9031010, + "PaymentType": "Debit Card" + }, + { + "Id": 19241, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2016-11-20T11:48:20", + "TransactionId": 36435114, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 488, + "CustomerInfo": 96718705, + "PaymentType": "Credit Card" + }, + { + "Id": 19242, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2016-08-06T12:36:52", + "TransactionId": 18364707, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 119, + "CustomerInfo": 93963451, + "PaymentType": "Debit Card" + }, + { + "Id": 19243, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-4", + "TransactionDate": "2018-12-01T08:48:20", + "TransactionId": 20366379, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 42546475, + "PaymentType": "Cash" + }, + { + "Id": 19244, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-1", + "TransactionDate": "2017-04-17T15:34:34", + "TransactionId": 63847178, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 877, + "CustomerInfo": 89162634, + "PaymentType": "Debit Card" + }, + { + "Id": 19245, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2018-03-31T16:19:29", + "TransactionId": 68629960, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 860, + "CustomerInfo": 4533514, + "PaymentType": "Debit Card" + }, + { + "Id": 19246, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-2", + "TransactionDate": "2018-04-11T14:45:45", + "TransactionId": 35934546, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 850, + "CustomerInfo": 829345, + "PaymentType": "Credit Card" + }, + { + "Id": 19247, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-10-12T07:26:24", + "TransactionId": 74339291, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 777, + "CustomerInfo": 7964681, + "PaymentType": "Debit Card" + }, + { + "Id": 19248, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-2", + "TransactionDate": "2017-05-28T10:57:39", + "TransactionId": 51261400, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 294, + "CustomerInfo": 21604452, + "PaymentType": "Debit Card" + }, + { + "Id": 19249, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-1", + "TransactionDate": "2016-04-25T13:36:37", + "TransactionId": 19313849, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 244, + "CustomerInfo": 38806985, + "PaymentType": "Debit Card" + }, + { + "Id": 19250, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-1", + "TransactionDate": "2019-01-21T13:18:29", + "TransactionId": 96550759, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 988, + "CustomerInfo": 33080139, + "PaymentType": "Credit Card" + }, + { + "Id": 19251, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2019-02-05T17:10:45", + "TransactionId": 18215601, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 381, + "CustomerInfo": 74954669, + "PaymentType": "Credit Card" + }, + { + "Id": 19252, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-5", + "TransactionDate": "2019-03-02T17:30:29", + "TransactionId": 3219540, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 77, + "CustomerInfo": 36796234, + "PaymentType": "Credit Card" + }, + { + "Id": 19253, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-3", + "TransactionDate": "2018-05-13T12:44:12", + "TransactionId": 25544142, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 949, + "CustomerInfo": 68041283, + "PaymentType": "Debit Card" + }, + { + "Id": 19254, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-4", + "TransactionDate": "2019-12-31T12:44:38", + "TransactionId": 36486919, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 821, + "CustomerInfo": 88671537, + "PaymentType": "Debit Card" + }, + { + "Id": 19255, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-1", + "TransactionDate": "2017-02-05T18:05:46", + "TransactionId": 53401194, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 353, + "CustomerInfo": 91732006, + "PaymentType": "Cash" + }, + { + "Id": 19256, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-5", + "TransactionDate": "2017-03-15T11:07:18", + "TransactionId": 40180477, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 415, + "CustomerInfo": 62130276, + "PaymentType": "Debit Card" + }, + { + "Id": 19257, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-01-20T10:27:59", + "TransactionId": 15752836, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 959, + "CustomerInfo": 68528795, + "PaymentType": "Cash" + }, + { + "Id": 19258, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-4", + "TransactionDate": "2017-07-15T16:32:10", + "TransactionId": 96132270, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 822, + "CustomerInfo": 15357674, + "PaymentType": "Credit Card" + }, + { + "Id": 19259, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-09-20T14:18:40", + "TransactionId": 89365578, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 259, + "CustomerInfo": 5446255, + "PaymentType": "Debit Card" + }, + { + "Id": 19260, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2018-04-12T10:40:39", + "TransactionId": 26110570, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 480, + "CustomerInfo": 72022499, + "PaymentType": "Cash" + }, + { + "Id": 19261, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-2", + "TransactionDate": "2018-07-01T12:17:25", + "TransactionId": 1788431, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 549, + "CustomerInfo": 14114723, + "PaymentType": "Credit Card" + }, + { + "Id": 19262, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2019-06-25T16:51:19", + "TransactionId": 59568050, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 733, + "CustomerInfo": 90286515, + "PaymentType": "Credit Card" + }, + { + "Id": 19263, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-06-02T12:49:58", + "TransactionId": 45980148, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 91, + "CustomerInfo": 14937678, + "PaymentType": "Credit Card" + }, + { + "Id": 19264, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2017-04-02T07:12:26", + "TransactionId": 78381595, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 822, + "CustomerInfo": 30090561, + "PaymentType": "Cash" + }, + { + "Id": 19265, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2017-07-25T19:12:00", + "TransactionId": 28657945, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 189, + "CustomerInfo": 84334514, + "PaymentType": "Credit Card" + }, + { + "Id": 19266, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2019-11-30T10:21:48", + "TransactionId": 94246007, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 345, + "CustomerInfo": 26397819, + "PaymentType": "Cash" + }, + { + "Id": 19267, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2018-10-24T14:10:28", + "TransactionId": 2896604, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 423, + "CustomerInfo": 90315849, + "PaymentType": "Debit Card" + }, + { + "Id": 19268, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-3", + "TransactionDate": "2018-05-29T18:36:17", + "TransactionId": 32058099, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 240, + "CustomerInfo": 28270569, + "PaymentType": "Credit Card" + }, + { + "Id": 19269, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-2", + "TransactionDate": "2019-10-07T15:00:43", + "TransactionId": 33618621, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 826, + "CustomerInfo": 88446506, + "PaymentType": "Cash" + }, + { + "Id": 19270, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-4", + "TransactionDate": "2017-04-18T11:23:25", + "TransactionId": 17716833, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 99, + "CustomerInfo": 11785174, + "PaymentType": "Credit Card" + }, + { + "Id": 19271, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-03-03T08:37:49", + "TransactionId": 43295123, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 882, + "CustomerInfo": 72125301, + "PaymentType": "Debit Card" + }, + { + "Id": 19272, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2016-05-21T10:50:27", + "TransactionId": 46268441, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 40, + "CustomerInfo": 27786565, + "PaymentType": "Debit Card" + }, + { + "Id": 19273, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2019-01-28T13:48:26", + "TransactionId": 81816193, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 500, + "CustomerInfo": 30624090, + "PaymentType": "Debit Card" + }, + { + "Id": 19274, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2017-09-23T17:33:04", + "TransactionId": 94171494, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 870, + "CustomerInfo": 22427517, + "PaymentType": "Debit Card" + }, + { + "Id": 19275, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-2", + "TransactionDate": "2017-04-16T14:10:45", + "TransactionId": 83049982, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 922, + "CustomerInfo": 7854217, + "PaymentType": "Cash" + }, + { + "Id": 19276, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2016-07-13T19:48:26", + "TransactionId": 62190096, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 328, + "CustomerInfo": 66634420, + "PaymentType": "Credit Card" + }, + { + "Id": 19277, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-1", + "TransactionDate": "2019-11-11T13:19:29", + "TransactionId": 61578865, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 980, + "CustomerInfo": 29804817, + "PaymentType": "Cash" + }, + { + "Id": 19278, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2019-01-31T07:51:27", + "TransactionId": 74206744, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 993, + "CustomerInfo": 85891905, + "PaymentType": "Credit Card" + }, + { + "Id": 19279, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-1", + "TransactionDate": "2017-10-30T18:53:51", + "TransactionId": 40037870, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 777, + "CustomerInfo": 49443981, + "PaymentType": "Credit Card" + }, + { + "Id": 19280, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-4", + "TransactionDate": "2017-04-14T18:38:36", + "TransactionId": 83319158, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 751, + "CustomerInfo": 5702447, + "PaymentType": "Debit Card" + }, + { + "Id": 19281, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-5", + "TransactionDate": "2018-11-24T08:01:24", + "TransactionId": 79535961, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 971, + "CustomerInfo": 838865, + "PaymentType": "Credit Card" + }, + { + "Id": 19282, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2018-01-22T07:56:12", + "TransactionId": 63616147, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 559, + "CustomerInfo": 2994273, + "PaymentType": "Cash" + }, + { + "Id": 19283, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2016-06-30T19:54:20", + "TransactionId": 3957746, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 420, + "CustomerInfo": 52133727, + "PaymentType": "Debit Card" + }, + { + "Id": 19284, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-10-19T13:58:57", + "TransactionId": 18482750, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 737, + "CustomerInfo": 63297619, + "PaymentType": "Debit Card" + }, + { + "Id": 19285, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-3", + "TransactionDate": "2017-11-27T10:10:51", + "TransactionId": 23432102, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 135, + "CustomerInfo": 86769276, + "PaymentType": "Credit Card" + }, + { + "Id": 19286, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2019-12-08T16:15:36", + "TransactionId": 17646429, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 368, + "CustomerInfo": 41061660, + "PaymentType": "Credit Card" + }, + { + "Id": 19287, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2017-05-02T17:00:23", + "TransactionId": 63531025, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 296, + "CustomerInfo": 91550309, + "PaymentType": "Cash" + }, + { + "Id": 19288, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2017-01-04T09:00:43", + "TransactionId": 67477629, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 732, + "CustomerInfo": 64002733, + "PaymentType": "Cash" + }, + { + "Id": 19289, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-2", + "TransactionDate": "2017-10-18T11:27:10", + "TransactionId": 64489634, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 2605793, + "PaymentType": "Cash" + }, + { + "Id": 19290, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2016-05-28T19:35:28", + "TransactionId": 40042143, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 618, + "CustomerInfo": 26413938, + "PaymentType": "Cash" + }, + { + "Id": 19291, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-4", + "TransactionDate": "2018-06-30T17:39:42", + "TransactionId": 95372787, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 423, + "CustomerInfo": 17928452, + "PaymentType": "Credit Card" + }, + { + "Id": 19292, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-2", + "TransactionDate": "2018-11-13T08:14:12", + "TransactionId": 82872669, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 906, + "CustomerInfo": 20077977, + "PaymentType": "Debit Card" + }, + { + "Id": 19293, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2016-07-20T12:07:21", + "TransactionId": 82944277, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 158, + "CustomerInfo": 15177542, + "PaymentType": "Cash" + }, + { + "Id": 19294, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-4", + "TransactionDate": "2016-12-09T09:44:04", + "TransactionId": 60223950, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 191, + "CustomerInfo": 32772134, + "PaymentType": "Debit Card" + }, + { + "Id": 19295, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-1", + "TransactionDate": "2018-12-22T18:18:35", + "TransactionId": 36717829, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 572, + "CustomerInfo": 76093942, + "PaymentType": "Debit Card" + }, + { + "Id": 19296, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-12-25T10:59:14", + "TransactionId": 47536850, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 657, + "CustomerInfo": 12085532, + "PaymentType": "Credit Card" + }, + { + "Id": 19297, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-4", + "TransactionDate": "2016-10-15T18:31:24", + "TransactionId": 15788088, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 213, + "CustomerInfo": 24467453, + "PaymentType": "Debit Card" + }, + { + "Id": 19298, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-1", + "TransactionDate": "2018-06-02T19:00:12", + "TransactionId": 7630405, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 37, + "CustomerInfo": 86517289, + "PaymentType": "Credit Card" + }, + { + "Id": 19299, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2019-12-24T11:50:04", + "TransactionId": 26628120, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 609, + "CustomerInfo": 64501425, + "PaymentType": "Debit Card" + }, + { + "Id": 19300, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2018-01-06T09:30:58", + "TransactionId": 13725055, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 850, + "CustomerInfo": 8965357, + "PaymentType": "Credit Card" + }, + { + "Id": 19301, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-2", + "TransactionDate": "2017-04-06T17:48:55", + "TransactionId": 89493228, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 53, + "CustomerInfo": 39013413, + "PaymentType": "Debit Card" + }, + { + "Id": 19302, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-3", + "TransactionDate": "2019-08-25T13:39:04", + "TransactionId": 29961559, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 64, + "CustomerInfo": 56186923, + "PaymentType": "Debit Card" + }, + { + "Id": 19303, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2018-03-21T07:25:32", + "TransactionId": 36079735, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 788, + "CustomerInfo": 54267866, + "PaymentType": "Cash" + }, + { + "Id": 19304, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2019-08-31T18:48:06", + "TransactionId": 52244455, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 305, + "CustomerInfo": 87265457, + "PaymentType": "Credit Card" + }, + { + "Id": 19305, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-5", + "TransactionDate": "2017-08-18T11:22:42", + "TransactionId": 32495520, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 823, + "CustomerInfo": 97758522, + "PaymentType": "Debit Card" + }, + { + "Id": 19306, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2018-10-13T07:18:20", + "TransactionId": 66585688, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 514, + "CustomerInfo": 58767812, + "PaymentType": "Cash" + }, + { + "Id": 19307, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-5", + "TransactionDate": "2017-09-06T13:31:00", + "TransactionId": 70060633, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 550, + "CustomerInfo": 811355, + "PaymentType": "Debit Card" + }, + { + "Id": 19308, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2016-03-13T13:59:40", + "TransactionId": 49843917, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 132, + "CustomerInfo": 56236511, + "PaymentType": "Credit Card" + }, + { + "Id": 19309, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-2", + "TransactionDate": "2018-05-18T16:23:23", + "TransactionId": 52103238, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 553, + "CustomerInfo": 20517720, + "PaymentType": "Debit Card" + }, + { + "Id": 19310, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2019-06-06T15:42:55", + "TransactionId": 33787840, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 321, + "CustomerInfo": 91751834, + "PaymentType": "Credit Card" + }, + { + "Id": 19311, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-1", + "TransactionDate": "2019-05-28T15:36:09", + "TransactionId": 6259403, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 104, + "CustomerInfo": 54135223, + "PaymentType": "Credit Card" + }, + { + "Id": 19312, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2016-09-01T11:40:42", + "TransactionId": 2945359, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 794, + "CustomerInfo": 16216686, + "PaymentType": "Credit Card" + }, + { + "Id": 19313, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-3", + "TransactionDate": "2018-06-17T15:00:00", + "TransactionId": 64589087, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 13, + "CustomerInfo": 25814545, + "PaymentType": "Debit Card" + }, + { + "Id": 19314, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2016-10-20T19:23:23", + "TransactionId": 95757918, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 970, + "CustomerInfo": 59235810, + "PaymentType": "Credit Card" + }, + { + "Id": 19315, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-06-23T14:34:31", + "TransactionId": 61353500, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 960, + "CustomerInfo": 97358904, + "PaymentType": "Credit Card" + }, + { + "Id": 19316, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2016-07-23T17:49:55", + "TransactionId": 20580632, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 50, + "CustomerInfo": 3709004, + "PaymentType": "Credit Card" + }, + { + "Id": 19317, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-2", + "TransactionDate": "2019-07-18T07:50:27", + "TransactionId": 85550911, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 212, + "CustomerInfo": 43614299, + "PaymentType": "Debit Card" + }, + { + "Id": 19318, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2019-11-26T12:34:51", + "TransactionId": 66207010, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 950, + "CustomerInfo": 62349361, + "PaymentType": "Debit Card" + }, + { + "Id": 19319, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-2", + "TransactionDate": "2019-08-07T08:23:08", + "TransactionId": 74555519, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 31, + "CustomerInfo": 16384669, + "PaymentType": "Credit Card" + }, + { + "Id": 19320, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-12-31T15:29:48", + "TransactionId": 37533828, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 203, + "CustomerInfo": 92605328, + "PaymentType": "Debit Card" + }, + { + "Id": 19321, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-2", + "TransactionDate": "2017-12-06T15:45:56", + "TransactionId": 90775488, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 971, + "CustomerInfo": 83400644, + "PaymentType": "Cash" + }, + { + "Id": 19322, + "Region": "EMEA", + "Country": "Finland", + "Code": "FI", + "StoreId": "FI-5", + "TransactionDate": "2018-01-21T11:36:14", + "TransactionId": 55518714, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 855, + "CustomerInfo": 36201968, + "PaymentType": "Debit Card" + }, + { + "Id": 19323, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-04-23T19:09:07", + "TransactionId": 79666369, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 877, + "CustomerInfo": 9045557, + "PaymentType": "Cash" + }, + { + "Id": 19324, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2018-11-23T19:52:19", + "TransactionId": 69483953, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 80593465, + "PaymentType": "Cash" + }, + { + "Id": 19325, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2016-12-23T10:45:33", + "TransactionId": 80549914, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 669, + "CustomerInfo": 7957899, + "PaymentType": "Debit Card" + }, + { + "Id": 19326, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-1", + "TransactionDate": "2016-05-09T18:54:43", + "TransactionId": 21835727, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 354, + "CustomerInfo": 85951946, + "PaymentType": "Credit Card" + }, + { + "Id": 19327, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-2", + "TransactionDate": "2018-05-09T16:43:58", + "TransactionId": 29385395, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 471, + "CustomerInfo": 18874508, + "PaymentType": "Debit Card" + }, + { + "Id": 19328, + "Region": "NA", + "Country": "United States of America (the)", + "Code": "US", + "StoreId": "US-4", + "TransactionDate": "2016-06-15T13:06:14", + "TransactionId": 97964648, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 547, + "CustomerInfo": 12249086, + "PaymentType": "Cash" + }, + { + "Id": 19329, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-5", + "TransactionDate": "2017-08-03T08:03:33", + "TransactionId": 25103415, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 404, + "CustomerInfo": 1539986, + "PaymentType": "Cash" + }, + { + "Id": 19330, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2019-10-10T19:11:08", + "TransactionId": 73298689, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 436, + "CustomerInfo": 49031322, + "PaymentType": "Credit Card" + }, + { + "Id": 19331, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-5", + "TransactionDate": "2019-10-14T13:19:12", + "TransactionId": 95559613, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 320, + "CustomerInfo": 77937812, + "PaymentType": "Credit Card" + }, + { + "Id": 19332, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-5", + "TransactionDate": "2018-10-21T10:33:19", + "TransactionId": 95988301, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 544, + "CustomerInfo": 34905694, + "PaymentType": "Debit Card" + }, + { + "Id": 19333, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-5", + "TransactionDate": "2016-11-19T15:30:49", + "TransactionId": 58805491, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 185, + "CustomerInfo": 63838804, + "PaymentType": "Cash" + }, + { + "Id": 19334, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-1", + "TransactionDate": "2019-10-22T19:19:29", + "TransactionId": 17628077, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 889, + "CustomerInfo": 99196630, + "PaymentType": "Cash" + }, + { + "Id": 19335, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-3", + "TransactionDate": "2017-04-25T14:08:53", + "TransactionId": 24510148, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 431, + "CustomerInfo": 18993252, + "PaymentType": "Debit Card" + }, + { + "Id": 19336, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-08-06T08:35:05", + "TransactionId": 71392609, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 550, + "CustomerInfo": 55379622, + "PaymentType": "Credit Card" + }, + { + "Id": 19337, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2017-07-15T18:51:07", + "TransactionId": 1979307, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 160, + "CustomerInfo": 98899552, + "PaymentType": "Debit Card" + }, + { + "Id": 19338, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-2", + "TransactionDate": "2017-03-12T12:46:31", + "TransactionId": 56023195, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 992, + "CustomerInfo": 27163922, + "PaymentType": "Credit Card" + }, + { + "Id": 19339, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-2", + "TransactionDate": "2018-04-10T19:40:57", + "TransactionId": 74047732, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 873, + "CustomerInfo": 7208995, + "PaymentType": "Debit Card" + }, + { + "Id": 19340, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2018-12-10T07:29:17", + "TransactionId": 25152201, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 552, + "CustomerInfo": 51440110, + "PaymentType": "Debit Card" + }, + { + "Id": 19341, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2018-01-23T08:20:59", + "TransactionId": 36605218, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 189, + "CustomerInfo": 10651846, + "PaymentType": "Cash" + }, + { + "Id": 19342, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-4", + "TransactionDate": "2019-02-16T08:30:03", + "TransactionId": 34186061, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 790, + "CustomerInfo": 43811470, + "PaymentType": "Cash" + }, + { + "Id": 19343, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-1", + "TransactionDate": "2017-07-08T14:06:09", + "TransactionId": 21382175, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 995, + "CustomerInfo": 64740543, + "PaymentType": "Credit Card" + }, + { + "Id": 19344, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-5", + "TransactionDate": "2018-04-06T12:50:24", + "TransactionId": 21316034, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 339, + "CustomerInfo": 65647830, + "PaymentType": "Debit Card" + }, + { + "Id": 19345, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2018-03-19T19:29:25", + "TransactionId": 11204226, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 582, + "CustomerInfo": 41958857, + "PaymentType": "Cash" + }, + { + "Id": 19346, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-1", + "TransactionDate": "2018-05-06T12:06:46", + "TransactionId": 41375276, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 585, + "CustomerInfo": 84145406, + "PaymentType": "Debit Card" + }, + { + "Id": 19347, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2016-09-09T16:47:25", + "TransactionId": 86420336, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 234, + "CustomerInfo": 31899797, + "PaymentType": "Cash" + }, + { + "Id": 19348, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-2", + "TransactionDate": "2019-05-20T11:39:24", + "TransactionId": 34955730, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 890, + "CustomerInfo": 97600879, + "PaymentType": "Credit Card" + }, + { + "Id": 19349, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2016-10-03T13:22:57", + "TransactionId": 90950943, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 556, + "CustomerInfo": 3240129, + "PaymentType": "Cash" + }, + { + "Id": 19350, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-1", + "TransactionDate": "2016-04-28T18:31:32", + "TransactionId": 77899784, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 300, + "CustomerInfo": 6307280, + "PaymentType": "Debit Card" + }, + { + "Id": 19351, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2018-03-28T15:33:07", + "TransactionId": 59790838, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 962, + "CustomerInfo": 90630354, + "PaymentType": "Credit Card" + }, + { + "Id": 19352, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-3", + "TransactionDate": "2019-04-23T17:07:52", + "TransactionId": 39939782, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 324, + "CustomerInfo": 8660287, + "PaymentType": "Cash" + }, + { + "Id": 19353, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2019-11-14T10:55:21", + "TransactionId": 96469358, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 718, + "CustomerInfo": 10816076, + "PaymentType": "Debit Card" + }, + { + "Id": 19354, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-4", + "TransactionDate": "2018-09-19T09:35:08", + "TransactionId": 35187696, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 848, + "CustomerInfo": 43903483, + "PaymentType": "Debit Card" + }, + { + "Id": 19355, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2019-03-11T12:43:29", + "TransactionId": 68873939, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 616, + "CustomerInfo": 40297878, + "PaymentType": "Credit Card" + }, + { + "Id": 19356, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-1", + "TransactionDate": "2018-04-25T17:18:14", + "TransactionId": 57013090, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 180, + "CustomerInfo": 67474733, + "PaymentType": "Cash" + }, + { + "Id": 19357, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-1", + "TransactionDate": "2018-03-13T08:54:40", + "TransactionId": 39184518, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 53, + "CustomerInfo": 82809602, + "PaymentType": "Debit Card" + }, + { + "Id": 19358, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-03-03T14:24:09", + "TransactionId": 61850939, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 727, + "CustomerInfo": 63893091, + "PaymentType": "Debit Card" + }, + { + "Id": 19359, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-5", + "TransactionDate": "2017-11-16T07:06:49", + "TransactionId": 25438234, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 223, + "CustomerInfo": 22405172, + "PaymentType": "Credit Card" + }, + { + "Id": 19360, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2018-03-19T13:50:10", + "TransactionId": 97045584, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 763, + "CustomerInfo": 40540409, + "PaymentType": "Debit Card" + }, + { + "Id": 19361, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2016-03-02T13:01:21", + "TransactionId": 64983166, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 754, + "CustomerInfo": 19140218, + "PaymentType": "Debit Card" + }, + { + "Id": 19362, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2019-11-12T16:41:31", + "TransactionId": 98256120, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 751, + "CustomerInfo": 21816576, + "PaymentType": "Cash" + }, + { + "Id": 19363, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-4", + "TransactionDate": "2019-08-06T14:35:48", + "TransactionId": 65370059, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 4, + "CustomerInfo": 23428270, + "PaymentType": "Credit Card" + }, + { + "Id": 19364, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2017-11-16T11:16:48", + "TransactionId": 18653017, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 287, + "CustomerInfo": 72265506, + "PaymentType": "Credit Card" + }, + { + "Id": 19365, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-10-05T16:01:38", + "TransactionId": 55171025, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 786, + "CustomerInfo": 22941013, + "PaymentType": "Debit Card" + }, + { + "Id": 19366, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-5", + "TransactionDate": "2016-05-31T19:53:02", + "TransactionId": 19791473, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 504, + "CustomerInfo": 70880076, + "PaymentType": "Cash" + }, + { + "Id": 19367, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-4", + "TransactionDate": "2018-01-04T18:05:20", + "TransactionId": 22356789, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 788, + "CustomerInfo": 20025594, + "PaymentType": "Debit Card" + }, + { + "Id": 19368, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-1", + "TransactionDate": "2019-08-11T17:02:50", + "TransactionId": 2008203, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 459, + "CustomerInfo": 41219598, + "PaymentType": "Debit Card" + }, + { + "Id": 19369, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-1", + "TransactionDate": "2019-07-04T08:54:58", + "TransactionId": 66501869, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 957, + "CustomerInfo": 50379212, + "PaymentType": "Credit Card" + }, + { + "Id": 19370, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2018-01-11T19:46:08", + "TransactionId": 51123698, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 493, + "CustomerInfo": 14617729, + "PaymentType": "Credit Card" + }, + { + "Id": 19371, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-09-26T17:43:18", + "TransactionId": 70683644, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 524, + "CustomerInfo": 78819421, + "PaymentType": "Cash" + }, + { + "Id": 19372, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-1", + "TransactionDate": "2016-02-26T15:44:12", + "TransactionId": 88758797, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 556, + "CustomerInfo": 46292862, + "PaymentType": "Cash" + }, + { + "Id": 19373, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-1", + "TransactionDate": "2016-01-23T09:00:00", + "TransactionId": 81415461, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 1, + "CustomerInfo": 40446155, + "PaymentType": "Credit Card" + }, + { + "Id": 19374, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-1", + "TransactionDate": "2017-01-28T14:24:17", + "TransactionId": 15590467, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 932, + "CustomerInfo": 61907628, + "PaymentType": "Cash" + }, + { + "Id": 19375, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-08-26T12:34:16", + "TransactionId": 83655398, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 382, + "CustomerInfo": 78717067, + "PaymentType": "Debit Card" + }, + { + "Id": 19376, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2019-01-16T11:19:15", + "TransactionId": 476952, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 350, + "CustomerInfo": 74396308, + "PaymentType": "Cash" + }, + { + "Id": 19377, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2017-11-22T09:00:35", + "TransactionId": 62419654, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 756, + "CustomerInfo": 44697679, + "PaymentType": "Debit Card" + }, + { + "Id": 19378, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-5", + "TransactionDate": "2018-07-15T11:54:14", + "TransactionId": 40075670, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 274, + "CustomerInfo": 15665270, + "PaymentType": "Cash" + }, + { + "Id": 19379, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-3", + "TransactionDate": "2019-11-16T09:02:53", + "TransactionId": 23928623, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 37, + "CustomerInfo": 251078, + "PaymentType": "Cash" + }, + { + "Id": 19380, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-1", + "TransactionDate": "2018-11-07T18:13:15", + "TransactionId": 41688353, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 459, + "CustomerInfo": 66154569, + "PaymentType": "Credit Card" + }, + { + "Id": 19381, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-1", + "TransactionDate": "2016-08-04T14:20:41", + "TransactionId": 52214105, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 535, + "CustomerInfo": 88830602, + "PaymentType": "Debit Card" + }, + { + "Id": 19382, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-5", + "TransactionDate": "2018-08-04T07:09:42", + "TransactionId": 67879662, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 282, + "CustomerInfo": 91777993, + "PaymentType": "Credit Card" + }, + { + "Id": 19383, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2019-10-13T10:28:08", + "TransactionId": 80598307, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 885, + "CustomerInfo": 40288607, + "PaymentType": "Cash" + }, + { + "Id": 19384, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-2", + "TransactionDate": "2018-07-07T10:14:10", + "TransactionId": 72477265, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 866, + "CustomerInfo": 64483284, + "PaymentType": "Debit Card" + }, + { + "Id": 19385, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2016-04-14T12:37:35", + "TransactionId": 34122079, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 480, + "CustomerInfo": 35474533, + "PaymentType": "Debit Card" + }, + { + "Id": 19386, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-2", + "TransactionDate": "2019-11-09T16:32:36", + "TransactionId": 45811341, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 110, + "CustomerInfo": 14839174, + "PaymentType": "Credit Card" + }, + { + "Id": 19387, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2018-04-21T19:24:58", + "TransactionId": 4353126, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 613, + "CustomerInfo": 55981338, + "PaymentType": "Debit Card" + }, + { + "Id": 19388, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2017-10-03T18:07:47", + "TransactionId": 7865863, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 558, + "CustomerInfo": 30218315, + "PaymentType": "Debit Card" + }, + { + "Id": 19389, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2016-04-27T10:45:42", + "TransactionId": 45207289, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 608, + "CustomerInfo": 25956743, + "PaymentType": "Credit Card" + }, + { + "Id": 19390, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-5", + "TransactionDate": "2018-04-28T10:24:14", + "TransactionId": 85680323, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 420, + "CustomerInfo": 8536645, + "PaymentType": "Credit Card" + }, + { + "Id": 19391, + "Region": "CALA", + "Country": "Colombia", + "Code": "CO", + "StoreId": "CO-4", + "TransactionDate": "2019-09-23T08:37:15", + "TransactionId": 52990579, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 140, + "CustomerInfo": 50027097, + "PaymentType": "Cash" + }, + { + "Id": 19392, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2017-08-09T17:56:24", + "TransactionId": 77257815, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 397, + "CustomerInfo": 33039949, + "PaymentType": "Cash" + }, + { + "Id": 19393, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2018-03-26T15:36:52", + "TransactionId": 93867623, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 697, + "CustomerInfo": 72229686, + "PaymentType": "Cash" + }, + { + "Id": 19394, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-1", + "TransactionDate": "2019-12-20T18:57:27", + "TransactionId": 8789181, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 520, + "CustomerInfo": 65036943, + "PaymentType": "Debit Card" + }, + { + "Id": 19395, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2019-02-07T08:01:41", + "TransactionId": 62050426, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 24, + "CustomerInfo": 35535641, + "PaymentType": "Credit Card" + }, + { + "Id": 19396, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-1", + "TransactionDate": "2017-12-13T12:40:11", + "TransactionId": 5549595, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 362, + "CustomerInfo": 99284988, + "PaymentType": "Cash" + }, + { + "Id": 19397, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-2", + "TransactionDate": "2018-07-22T19:11:51", + "TransactionId": 40878223, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 276, + "CustomerInfo": 2416570, + "PaymentType": "Debit Card" + }, + { + "Id": 19398, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-12-18T09:51:16", + "TransactionId": 47045500, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 960, + "CustomerInfo": 62988396, + "PaymentType": "Cash" + }, + { + "Id": 19399, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2019-09-24T11:09:27", + "TransactionId": 28973303, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 739, + "CustomerInfo": 74332510, + "PaymentType": "Cash" + }, + { + "Id": 19400, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2016-11-10T08:12:37", + "TransactionId": 19312746, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 744, + "CustomerInfo": 75477646, + "PaymentType": "Debit Card" + }, + { + "Id": 19401, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2016-07-18T07:04:31", + "TransactionId": 3368548, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 739, + "CustomerInfo": 23982980, + "PaymentType": "Cash" + }, + { + "Id": 19402, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-1", + "TransactionDate": "2017-12-05T11:32:56", + "TransactionId": 50160700, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 481, + "CustomerInfo": 97516412, + "PaymentType": "Credit Card" + }, + { + "Id": 19403, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-1", + "TransactionDate": "2017-02-01T14:35:48", + "TransactionId": 58675289, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 865, + "CustomerInfo": 14440863, + "PaymentType": "Debit Card" + }, + { + "Id": 19404, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-5", + "TransactionDate": "2019-03-16T17:25:09", + "TransactionId": 99393819, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 184, + "CustomerInfo": 1854157, + "PaymentType": "Credit Card" + }, + { + "Id": 19405, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-3", + "TransactionDate": "2016-11-10T09:35:51", + "TransactionId": 56598542, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 29, + "CustomerInfo": 93894635, + "PaymentType": "Cash" + }, + { + "Id": 19406, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-3", + "TransactionDate": "2019-08-13T16:41:48", + "TransactionId": 15303737, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 804, + "CustomerInfo": 7710795, + "PaymentType": "Cash" + }, + { + "Id": 19407, + "Region": "NA", + "Country": "Puerto Rico", + "Code": "PR", + "StoreId": "PR-4", + "TransactionDate": "2018-01-23T13:21:39", + "TransactionId": 13319032, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 754, + "CustomerInfo": 69829992, + "PaymentType": "Credit Card" + }, + { + "Id": 19408, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2016-04-05T10:19:12", + "TransactionId": 2474400, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 933, + "CustomerInfo": 11176672, + "PaymentType": "Credit Card" + }, + { + "Id": 19409, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2017-07-05T19:16:36", + "TransactionId": 83372259, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 573, + "CustomerInfo": 22414312, + "PaymentType": "Credit Card" + }, + { + "Id": 19410, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2016-07-13T08:43:52", + "TransactionId": 12036501, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 485, + "CustomerInfo": 34705941, + "PaymentType": "Debit Card" + }, + { + "Id": 19411, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-3", + "TransactionDate": "2018-05-17T17:04:08", + "TransactionId": 98660868, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 393, + "CustomerInfo": 5146728, + "PaymentType": "Credit Card" + }, + { + "Id": 19412, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2017-08-14T08:48:55", + "TransactionId": 99660036, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 488, + "CustomerInfo": 92117163, + "PaymentType": "Cash" + }, + { + "Id": 19413, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-4", + "TransactionDate": "2017-07-03T15:06:03", + "TransactionId": 33456575, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 47, + "CustomerInfo": 96160050, + "PaymentType": "Debit Card" + }, + { + "Id": 19414, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-01-08T08:13:47", + "TransactionId": 9393704, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 243, + "CustomerInfo": 27919879, + "PaymentType": "Credit Card" + }, + { + "Id": 19415, + "Region": "NA", + "Country": "Jamaica", + "Code": "JM", + "StoreId": "JM-4", + "TransactionDate": "2016-04-16T07:55:12", + "TransactionId": 14976802, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 754, + "CustomerInfo": 16721663, + "PaymentType": "Credit Card" + }, + { + "Id": 19416, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2018-09-06T14:17:40", + "TransactionId": 91859802, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 644, + "CustomerInfo": 34957878, + "PaymentType": "Cash" + }, + { + "Id": 19417, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2019-04-10T10:49:00", + "TransactionId": 86751354, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 59, + "CustomerInfo": 32985274, + "PaymentType": "Debit Card" + }, + { + "Id": 19418, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2018-11-19T19:04:13", + "TransactionId": 20093959, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 300, + "CustomerInfo": 29379263, + "PaymentType": "Debit Card" + }, + { + "Id": 19419, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-3", + "TransactionDate": "2017-08-01T12:07:47", + "TransactionId": 66526523, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 757, + "CustomerInfo": 16903166, + "PaymentType": "Debit Card" + }, + { + "Id": 19420, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-1", + "TransactionDate": "2019-08-07T09:35:00", + "TransactionId": 80128479, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 446, + "CustomerInfo": 13497673, + "PaymentType": "Debit Card" + }, + { + "Id": 19421, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-2", + "TransactionDate": "2016-12-24T19:05:57", + "TransactionId": 9656046, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 835, + "CustomerInfo": 10860716, + "PaymentType": "Debit Card" + }, + { + "Id": 19422, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-5", + "TransactionDate": "2017-12-19T19:07:41", + "TransactionId": 25444103, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 489, + "CustomerInfo": 21181710, + "PaymentType": "Cash" + }, + { + "Id": 19423, + "Region": "EMEA", + "Country": "Monaco", + "Code": "MC", + "StoreId": "MC-5", + "TransactionDate": "2019-06-11T12:42:55", + "TransactionId": 16414976, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 322, + "CustomerInfo": 84024364, + "PaymentType": "Credit Card" + }, + { + "Id": 19424, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-4", + "TransactionDate": "2017-01-17T13:03:13", + "TransactionId": 90077549, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 537, + "CustomerInfo": 55399196, + "PaymentType": "Cash" + }, + { + "Id": 19425, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2018-12-07T14:28:54", + "TransactionId": 61263357, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 808, + "CustomerInfo": 2598209, + "PaymentType": "Credit Card" + }, + { + "Id": 19426, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-5", + "TransactionDate": "2016-02-05T11:45:27", + "TransactionId": 57772093, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 303, + "CustomerInfo": 45948238, + "PaymentType": "Debit Card" + }, + { + "Id": 19427, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2019-12-05T14:33:22", + "TransactionId": 86584224, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 120, + "CustomerInfo": 47006731, + "PaymentType": "Credit Card" + }, + { + "Id": 19428, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-5", + "TransactionDate": "2019-07-15T12:29:14", + "TransactionId": 70849045, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 893, + "CustomerInfo": 81540513, + "PaymentType": "Cash" + }, + { + "Id": 19429, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2018-01-13T13:50:27", + "TransactionId": 40673087, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 356, + "CustomerInfo": 68514975, + "PaymentType": "Cash" + }, + { + "Id": 19430, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2016-01-01T17:50:30", + "TransactionId": 27871856, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 413, + "CustomerInfo": 9390307, + "PaymentType": "Credit Card" + }, + { + "Id": 19431, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-1", + "TransactionDate": "2018-09-02T09:21:27", + "TransactionId": 6499908, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 290, + "CustomerInfo": 72023877, + "PaymentType": "Cash" + }, + { + "Id": 19432, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2016-08-10T18:01:18", + "TransactionId": 12502577, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 772, + "CustomerInfo": 75878039, + "PaymentType": "Cash" + }, + { + "Id": 19433, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-1", + "TransactionDate": "2016-10-30T18:09:48", + "TransactionId": 38755408, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 597, + "CustomerInfo": 19072994, + "PaymentType": "Credit Card" + }, + { + "Id": 19434, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-1", + "TransactionDate": "2017-03-09T16:49:09", + "TransactionId": 38859763, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 144, + "CustomerInfo": 30424273, + "PaymentType": "Debit Card" + }, + { + "Id": 19435, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2018-12-05T12:07:47", + "TransactionId": 36468227, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 104, + "CustomerInfo": 74913869, + "PaymentType": "Cash" + }, + { + "Id": 19436, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-08-26T13:00:37", + "TransactionId": 37560762, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 746, + "CustomerInfo": 33867966, + "PaymentType": "Credit Card" + }, + { + "Id": 19437, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2016-07-24T09:59:54", + "TransactionId": 22293960, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 118, + "CustomerInfo": 93280919, + "PaymentType": "Debit Card" + }, + { + "Id": 19438, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2018-07-07T11:26:01", + "TransactionId": 48801446, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 263, + "CustomerInfo": 3683999, + "PaymentType": "Cash" + }, + { + "Id": 19439, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-3", + "TransactionDate": "2019-07-27T09:36:26", + "TransactionId": 92387467, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 66, + "CustomerInfo": 74216190, + "PaymentType": "Credit Card" + }, + { + "Id": 19440, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2017-06-25T19:40:31", + "TransactionId": 1240242, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 47, + "CustomerInfo": 63696586, + "PaymentType": "Cash" + }, + { + "Id": 19441, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-1", + "TransactionDate": "2019-06-05T11:17:05", + "TransactionId": 152891, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 315, + "CustomerInfo": 72226473, + "PaymentType": "Debit Card" + }, + { + "Id": 19442, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-3", + "TransactionDate": "2017-04-17T18:55:44", + "TransactionId": 86876936, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 507, + "CustomerInfo": 64227448, + "PaymentType": "Cash" + }, + { + "Id": 19443, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2018-04-10T07:58:57", + "TransactionId": 42058516, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 45, + "CustomerInfo": 11955199, + "PaymentType": "Credit Card" + }, + { + "Id": 19444, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-4", + "TransactionDate": "2017-09-28T10:53:02", + "TransactionId": 2971338, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 821, + "CustomerInfo": 26496178, + "PaymentType": "Credit Card" + }, + { + "Id": 19445, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2018-02-21T14:41:08", + "TransactionId": 83344567, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 595, + "CustomerInfo": 57136269, + "PaymentType": "Debit Card" + }, + { + "Id": 19446, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2019-10-24T17:30:20", + "TransactionId": 67349287, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 8, + "CustomerInfo": 21267717, + "PaymentType": "Credit Card" + }, + { + "Id": 19447, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-4", + "TransactionDate": "2017-07-11T07:33:10", + "TransactionId": 10999434, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 935, + "CustomerInfo": 44277489, + "PaymentType": "Cash" + }, + { + "Id": 19448, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-2", + "TransactionDate": "2019-02-04T16:36:46", + "TransactionId": 38077893, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 97, + "CustomerInfo": 68822762, + "PaymentType": "Cash" + }, + { + "Id": 19449, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2016-07-28T08:25:09", + "TransactionId": 31912446, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 7, + "CustomerInfo": 29228122, + "PaymentType": "Cash" + }, + { + "Id": 19450, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2016-11-10T14:41:25", + "TransactionId": 11592546, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 846, + "CustomerInfo": 56184356, + "PaymentType": "Debit Card" + }, + { + "Id": 19451, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-2", + "TransactionDate": "2017-06-10T16:05:14", + "TransactionId": 47903466, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 367, + "CustomerInfo": 69553452, + "PaymentType": "Cash" + }, + { + "Id": 19452, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2019-10-09T10:21:22", + "TransactionId": 64478543, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 964, + "CustomerInfo": 87442816, + "PaymentType": "Debit Card" + }, + { + "Id": 19453, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2019-09-04T18:51:33", + "TransactionId": 27113625, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 42, + "CustomerInfo": 63004262, + "PaymentType": "Cash" + }, + { + "Id": 19454, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-1", + "TransactionDate": "2019-06-03T10:52:45", + "TransactionId": 6935011, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 769, + "CustomerInfo": 9957106, + "PaymentType": "Credit Card" + }, + { + "Id": 19455, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-04-20T19:12:26", + "TransactionId": 40754666, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 309, + "CustomerInfo": 19754561, + "PaymentType": "Cash" + }, + { + "Id": 19456, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2017-04-04T12:54:00", + "TransactionId": 17055735, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 111, + "CustomerInfo": 78380012, + "PaymentType": "Cash" + }, + { + "Id": 19457, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-5", + "TransactionDate": "2019-01-16T14:34:22", + "TransactionId": 66313724, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 596, + "CustomerInfo": 61792172, + "PaymentType": "Credit Card" + }, + { + "Id": 19458, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2018-12-27T16:48:09", + "TransactionId": 72516531, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 711, + "CustomerInfo": 59860007, + "PaymentType": "Debit Card" + }, + { + "Id": 19459, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-2", + "TransactionDate": "2017-04-21T11:48:20", + "TransactionId": 6998289, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 54, + "CustomerInfo": 34096549, + "PaymentType": "Cash" + }, + { + "Id": 19460, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-5", + "TransactionDate": "2016-06-29T12:49:49", + "TransactionId": 71286279, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 268, + "CustomerInfo": 47950294, + "PaymentType": "Cash" + }, + { + "Id": 19461, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-03-25T19:21:04", + "TransactionId": 65836220, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 1, + "CustomerInfo": 12007066, + "PaymentType": "Cash" + }, + { + "Id": 19462, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-3", + "TransactionDate": "2017-10-30T09:55:00", + "TransactionId": 99595869, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 595, + "CustomerInfo": 64867652, + "PaymentType": "Credit Card" + }, + { + "Id": 19463, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2017-04-09T17:37:58", + "TransactionId": 83138224, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 408, + "CustomerInfo": 65839183, + "PaymentType": "Debit Card" + }, + { + "Id": 19464, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-5", + "TransactionDate": "2018-03-21T14:40:25", + "TransactionId": 39734169, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 344, + "CustomerInfo": 93571237, + "PaymentType": "Cash" + }, + { + "Id": 19465, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-5", + "TransactionDate": "2018-09-26T11:05:34", + "TransactionId": 43279482, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 144, + "CustomerInfo": 31260101, + "PaymentType": "Debit Card" + }, + { + "Id": 19466, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-5", + "TransactionDate": "2018-07-12T13:49:44", + "TransactionId": 6836292, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 852, + "CustomerInfo": 17670161, + "PaymentType": "Credit Card" + }, + { + "Id": 19467, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-3", + "TransactionDate": "2017-10-26T08:55:58", + "TransactionId": 2705275, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 566, + "CustomerInfo": 29701087, + "PaymentType": "Credit Card" + }, + { + "Id": 19468, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2018-11-16T11:10:45", + "TransactionId": 31298705, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 180, + "CustomerInfo": 88398121, + "PaymentType": "Cash" + }, + { + "Id": 19469, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2016-05-08T11:56:41", + "TransactionId": 95897289, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 137, + "CustomerInfo": 74162887, + "PaymentType": "Cash" + }, + { + "Id": 19470, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-2", + "TransactionDate": "2018-06-28T19:46:42", + "TransactionId": 18432325, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 790, + "CustomerInfo": 55862688, + "PaymentType": "Credit Card" + }, + { + "Id": 19471, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-3", + "TransactionDate": "2019-11-17T17:25:52", + "TransactionId": 61777512, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 353, + "CustomerInfo": 57423906, + "PaymentType": "Credit Card" + }, + { + "Id": 19472, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-2", + "TransactionDate": "2017-06-11T18:37:52", + "TransactionId": 47321178, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 378, + "CustomerInfo": 90546350, + "PaymentType": "Debit Card" + }, + { + "Id": 19473, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2019-03-21T13:11:08", + "TransactionId": 56845554, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 559, + "CustomerInfo": 85384256, + "PaymentType": "Cash" + }, + { + "Id": 19474, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-2", + "TransactionDate": "2016-07-29T07:36:55", + "TransactionId": 7099889, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 681, + "CustomerInfo": 84547552, + "PaymentType": "Cash" + }, + { + "Id": 19475, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2019-06-08T18:17:17", + "TransactionId": 82723376, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 676, + "CustomerInfo": 57120096, + "PaymentType": "Debit Card" + }, + { + "Id": 19476, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-1", + "TransactionDate": "2016-04-02T17:48:46", + "TransactionId": 64532349, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 339, + "CustomerInfo": 40325249, + "PaymentType": "Credit Card" + }, + { + "Id": 19477, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-01-03T18:26:12", + "TransactionId": 81696443, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 644, + "CustomerInfo": 51544563, + "PaymentType": "Cash" + }, + { + "Id": 19478, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2017-09-17T19:32:01", + "TransactionId": 10864968, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 528, + "CustomerInfo": 78331321, + "PaymentType": "Credit Card" + }, + { + "Id": 19479, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-3", + "TransactionDate": "2016-09-21T15:40:02", + "TransactionId": 56194151, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 502, + "CustomerInfo": 21955055, + "PaymentType": "Cash" + }, + { + "Id": 19480, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-09-28T12:42:12", + "TransactionId": 19808121, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 881, + "CustomerInfo": 25078835, + "PaymentType": "Debit Card" + }, + { + "Id": 19481, + "Region": "APAC", + "Country": "Sri Lanka", + "Code": "LK", + "StoreId": "LK-2", + "TransactionDate": "2018-06-24T07:41:31", + "TransactionId": 31168722, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 549, + "CustomerInfo": 95115457, + "PaymentType": "Cash" + }, + { + "Id": 19482, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-4", + "TransactionDate": "2017-11-06T10:12:17", + "TransactionId": 96894843, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 257, + "CustomerInfo": 88233131, + "PaymentType": "Credit Card" + }, + { + "Id": 19483, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-2", + "TransactionDate": "2019-09-09T07:18:55", + "TransactionId": 75942479, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 573, + "CustomerInfo": 94468473, + "PaymentType": "Credit Card" + }, + { + "Id": 19484, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-1", + "TransactionDate": "2016-07-30T09:26:38", + "TransactionId": 10713879, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 231, + "CustomerInfo": 14594343, + "PaymentType": "Credit Card" + }, + { + "Id": 19485, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-3", + "TransactionDate": "2016-12-03T12:24:46", + "TransactionId": 48361788, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 243, + "CustomerInfo": 30162900, + "PaymentType": "Credit Card" + }, + { + "Id": 19486, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2017-05-23T10:03:39", + "TransactionId": 31338879, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 492, + "CustomerInfo": 88314577, + "PaymentType": "Debit Card" + }, + { + "Id": 19487, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-4", + "TransactionDate": "2016-05-19T11:56:15", + "TransactionId": 7736302, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 120, + "CustomerInfo": 3075476, + "PaymentType": "Credit Card" + }, + { + "Id": 19488, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2017-10-23T16:42:06", + "TransactionId": 1848194, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 210, + "CustomerInfo": 37946382, + "PaymentType": "Cash" + }, + { + "Id": 19489, + "Region": "EMEA", + "Country": "Norway", + "Code": "NO", + "StoreId": "NO-2", + "TransactionDate": "2017-01-28T09:43:29", + "TransactionId": 49945547, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 453, + "CustomerInfo": 9904168, + "PaymentType": "Debit Card" + }, + { + "Id": 19490, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2017-01-02T17:11:37", + "TransactionId": 93725160, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 203, + "CustomerInfo": 64829720, + "PaymentType": "Credit Card" + }, + { + "Id": 19491, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-2", + "TransactionDate": "2017-09-02T08:54:23", + "TransactionId": 56304848, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 996, + "CustomerInfo": 58791864, + "PaymentType": "Debit Card" + }, + { + "Id": 19492, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-2", + "TransactionDate": "2017-12-05T19:03:56", + "TransactionId": 2877773, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 937, + "CustomerInfo": 57723466, + "PaymentType": "Cash" + }, + { + "Id": 19493, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-5", + "TransactionDate": "2019-08-08T09:16:25", + "TransactionId": 86354903, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 608, + "CustomerInfo": 28530935, + "PaymentType": "Debit Card" + }, + { + "Id": 19494, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-2", + "TransactionDate": "2019-01-11T13:43:58", + "TransactionId": 79055791, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 213, + "CustomerInfo": 77344229, + "PaymentType": "Credit Card" + }, + { + "Id": 19495, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-4", + "TransactionDate": "2017-02-25T17:14:04", + "TransactionId": 67275976, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 806, + "CustomerInfo": 12851121, + "PaymentType": "Credit Card" + }, + { + "Id": 19496, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-5", + "TransactionDate": "2018-06-15T14:03:16", + "TransactionId": 70514098, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 530, + "CustomerInfo": 16712100, + "PaymentType": "Cash" + }, + { + "Id": 19497, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-05-12T15:25:47", + "TransactionId": 64422140, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 35, + "CustomerInfo": 11314484, + "PaymentType": "Credit Card" + }, + { + "Id": 19498, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-3", + "TransactionDate": "2018-09-17T14:44:44", + "TransactionId": 38906849, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 455, + "CustomerInfo": 83944603, + "PaymentType": "Credit Card" + }, + { + "Id": 19499, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-4", + "TransactionDate": "2018-06-20T12:15:50", + "TransactionId": 23533781, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 302, + "CustomerInfo": 22323943, + "PaymentType": "Credit Card" + }, + { + "Id": 19500, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2019-09-22T19:04:13", + "TransactionId": 53952726, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 384, + "CustomerInfo": 84254838, + "PaymentType": "Cash" + }, + { + "Id": 19501, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2018-12-24T17:30:55", + "TransactionId": 83276725, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 37, + "CustomerInfo": 9644974, + "PaymentType": "Credit Card" + }, + { + "Id": 19502, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-3", + "TransactionDate": "2016-07-17T10:30:26", + "TransactionId": 84640237, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 197, + "CustomerInfo": 14914595, + "PaymentType": "Debit Card" + }, + { + "Id": 19503, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2019-07-02T17:21:24", + "TransactionId": 84638355, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 741, + "CustomerInfo": 67770806, + "PaymentType": "Credit Card" + }, + { + "Id": 19504, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2016-01-03T15:04:02", + "TransactionId": 64901393, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 690, + "CustomerInfo": 98675964, + "PaymentType": "Credit Card" + }, + { + "Id": 19505, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-05-19T19:40:57", + "TransactionId": 66393568, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 6, + "CustomerInfo": 49234027, + "PaymentType": "Debit Card" + }, + { + "Id": 19506, + "Region": "APAC", + "Country": "Kyrgyzstan", + "Code": "KG", + "StoreId": "KG-3", + "TransactionDate": "2018-02-12T12:42:03", + "TransactionId": 53415042, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 570, + "CustomerInfo": 72341773, + "PaymentType": "Cash" + }, + { + "Id": 19507, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-3", + "TransactionDate": "2018-06-30T08:25:18", + "TransactionId": 28755115, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 566, + "CustomerInfo": 33165150, + "PaymentType": "Debit Card" + }, + { + "Id": 19508, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-5", + "TransactionDate": "2016-05-04T14:27:19", + "TransactionId": 14470098, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 908, + "CustomerInfo": 40895030, + "PaymentType": "Cash" + }, + { + "Id": 19509, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-11-23T08:43:26", + "TransactionId": 88637495, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 162, + "CustomerInfo": 44165854, + "PaymentType": "Debit Card" + }, + { + "Id": 19510, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-4", + "TransactionDate": "2019-11-10T17:46:02", + "TransactionId": 33723381, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 339, + "CustomerInfo": 14293653, + "PaymentType": "Credit Card" + }, + { + "Id": 19511, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-5", + "TransactionDate": "2019-06-06T15:21:10", + "TransactionId": 64241488, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 184, + "CustomerInfo": 4664141, + "PaymentType": "Debit Card" + }, + { + "Id": 19512, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2018-10-19T07:09:24", + "TransactionId": 17496857, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 780, + "CustomerInfo": 73714580, + "PaymentType": "Debit Card" + }, + { + "Id": 19513, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2016-06-24T10:56:56", + "TransactionId": 42531174, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 34, + "CustomerInfo": 91442224, + "PaymentType": "Debit Card" + }, + { + "Id": 19514, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2018-06-14T11:33:56", + "TransactionId": 80215669, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 863, + "CustomerInfo": 84341626, + "PaymentType": "Debit Card" + }, + { + "Id": 19515, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2019-01-13T17:12:12", + "TransactionId": 21245561, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 186, + "CustomerInfo": 41138905, + "PaymentType": "Credit Card" + }, + { + "Id": 19516, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-5", + "TransactionDate": "2016-04-09T14:13:29", + "TransactionId": 86100121, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 595, + "CustomerInfo": 55483960, + "PaymentType": "Credit Card" + }, + { + "Id": 19517, + "Region": "EMEA", + "Country": "Germany", + "Code": "DE", + "StoreId": "DE-3", + "TransactionDate": "2016-03-12T19:34:19", + "TransactionId": 52261994, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 6, + "CustomerInfo": 74540421, + "PaymentType": "Cash" + }, + { + "Id": 19518, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-1", + "TransactionDate": "2018-03-27T15:04:45", + "TransactionId": 29118514, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 259, + "CustomerInfo": 59379678, + "PaymentType": "Credit Card" + }, + { + "Id": 19519, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-2", + "TransactionDate": "2017-07-06T10:24:40", + "TransactionId": 51417010, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 58, + "CustomerInfo": 38512704, + "PaymentType": "Credit Card" + }, + { + "Id": 19520, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-5", + "TransactionDate": "2017-02-18T11:25:26", + "TransactionId": 85270810, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 866, + "CustomerInfo": 69516265, + "PaymentType": "Debit Card" + }, + { + "Id": 19521, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-4", + "TransactionDate": "2017-05-06T17:00:14", + "TransactionId": 11708975, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 229, + "CustomerInfo": 55512585, + "PaymentType": "Credit Card" + }, + { + "Id": 19522, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2019-06-26T15:18:17", + "TransactionId": 59478109, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 327, + "CustomerInfo": 55263765, + "PaymentType": "Cash" + }, + { + "Id": 19523, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-4", + "TransactionDate": "2016-09-21T08:30:55", + "TransactionId": 40676589, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 70, + "CustomerInfo": 75750017, + "PaymentType": "Credit Card" + }, + { + "Id": 19524, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2017-03-20T13:05:05", + "TransactionId": 98049432, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 468, + "CustomerInfo": 68048841, + "PaymentType": "Debit Card" + }, + { + "Id": 19525, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-2", + "TransactionDate": "2016-11-02T11:36:40", + "TransactionId": 11540069, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 1, + "CustomerInfo": 89518372, + "PaymentType": "Cash" + }, + { + "Id": 19526, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-5", + "TransactionDate": "2016-03-06T11:24:00", + "TransactionId": 87917283, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 190, + "CustomerInfo": 2498387, + "PaymentType": "Cash" + }, + { + "Id": 19527, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-2", + "TransactionDate": "2018-02-27T16:39:39", + "TransactionId": 61707480, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 773, + "CustomerInfo": 99879292, + "PaymentType": "Credit Card" + }, + { + "Id": 19528, + "Region": "NA", + "Country": "Guadeloupe", + "Code": "GP", + "StoreId": "GP-5", + "TransactionDate": "2018-06-25T16:22:22", + "TransactionId": 43537232, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 871, + "CustomerInfo": 3230439, + "PaymentType": "Credit Card" + }, + { + "Id": 19529, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-12-21T12:50:41", + "TransactionId": 15091964, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 19, + "CustomerInfo": 84726229, + "PaymentType": "Cash" + }, + { + "Id": 19530, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2016-04-21T08:18:14", + "TransactionId": 43016742, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 30, + "CustomerInfo": 49717861, + "PaymentType": "Debit Card" + }, + { + "Id": 19531, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-05-28T07:14:18", + "TransactionId": 14700748, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 563, + "CustomerInfo": 62445417, + "PaymentType": "Debit Card" + }, + { + "Id": 19532, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2016-01-08T11:34:22", + "TransactionId": 2772556, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 551, + "CustomerInfo": 47781281, + "PaymentType": "Credit Card" + }, + { + "Id": 19533, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-12-26T09:48:40", + "TransactionId": 39930950, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 804, + "CustomerInfo": 92676825, + "PaymentType": "Cash" + }, + { + "Id": 19534, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-3", + "TransactionDate": "2018-07-18T13:39:04", + "TransactionId": 71355556, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 871, + "CustomerInfo": 776608, + "PaymentType": "Cash" + }, + { + "Id": 19535, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-4", + "TransactionDate": "2017-02-10T15:42:12", + "TransactionId": 84585205, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 956, + "CustomerInfo": 21116382, + "PaymentType": "Debit Card" + }, + { + "Id": 19536, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2018-09-10T07:01:03", + "TransactionId": 93233398, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 376, + "CustomerInfo": 20101832, + "PaymentType": "Debit Card" + }, + { + "Id": 19537, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-3", + "TransactionDate": "2018-12-14T17:17:05", + "TransactionId": 4682022, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 698, + "CustomerInfo": 7875583, + "PaymentType": "Credit Card" + }, + { + "Id": 19538, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2019-02-01T13:15:27", + "TransactionId": 22866834, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 707, + "CustomerInfo": 99408536, + "PaymentType": "Cash" + }, + { + "Id": 19539, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-5", + "TransactionDate": "2018-06-26T13:18:55", + "TransactionId": 40557302, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 707, + "CustomerInfo": 47123344, + "PaymentType": "Debit Card" + }, + { + "Id": 19540, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-1", + "TransactionDate": "2016-10-29T15:14:59", + "TransactionId": 51465333, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 610, + "CustomerInfo": 45355011, + "PaymentType": "Credit Card" + }, + { + "Id": 19541, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-5", + "TransactionDate": "2018-07-10T07:52:19", + "TransactionId": 75372974, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 326, + "CustomerInfo": 80761710, + "PaymentType": "Debit Card" + }, + { + "Id": 19542, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-3", + "TransactionDate": "2018-11-24T09:26:56", + "TransactionId": 34587500, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 167, + "CustomerInfo": 77078088, + "PaymentType": "Cash" + }, + { + "Id": 19543, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2018-06-08T09:08:21", + "TransactionId": 91472688, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 274, + "CustomerInfo": 78714780, + "PaymentType": "Debit Card" + }, + { + "Id": 19544, + "Region": "EMEA", + "Country": "Holy See (the)", + "Code": "VA", + "StoreId": "VA-2", + "TransactionDate": "2016-03-29T14:25:52", + "TransactionId": 18275156, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 13, + "CustomerInfo": 16496678, + "PaymentType": "Debit Card" + }, + { + "Id": 19545, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-3", + "TransactionDate": "2017-02-08T09:43:21", + "TransactionId": 72646354, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 842, + "CustomerInfo": 3121646, + "PaymentType": "Cash" + }, + { + "Id": 19546, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2017-08-04T14:16:31", + "TransactionId": 66736144, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 6, + "CustomerInfo": 19646779, + "PaymentType": "Debit Card" + }, + { + "Id": 19547, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-1", + "TransactionDate": "2019-02-21T13:22:48", + "TransactionId": 80098075, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 449, + "CustomerInfo": 4165531, + "PaymentType": "Debit Card" + }, + { + "Id": 19548, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2019-03-24T14:40:42", + "TransactionId": 1121792, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 393, + "CustomerInfo": 23275904, + "PaymentType": "Credit Card" + }, + { + "Id": 19549, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2019-11-14T07:27:16", + "TransactionId": 71405485, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 507, + "CustomerInfo": 47081541, + "PaymentType": "Credit Card" + }, + { + "Id": 19550, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-3", + "TransactionDate": "2019-05-20T09:19:26", + "TransactionId": 17740968, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 730, + "CustomerInfo": 59164627, + "PaymentType": "Credit Card" + }, + { + "Id": 19551, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-2", + "TransactionDate": "2019-02-21T10:08:50", + "TransactionId": 74152246, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 691, + "CustomerInfo": 79191995, + "PaymentType": "Debit Card" + }, + { + "Id": 19552, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-04-11T08:38:41", + "TransactionId": 30550581, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 5, + "CustomerInfo": 85409056, + "PaymentType": "Debit Card" + }, + { + "Id": 19553, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2018-10-05T13:42:58", + "TransactionId": 19609921, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 325, + "CustomerInfo": 73812548, + "PaymentType": "Cash" + }, + { + "Id": 19554, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-5", + "TransactionDate": "2017-08-04T13:47:34", + "TransactionId": 12164779, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 106, + "CustomerInfo": 92401813, + "PaymentType": "Cash" + }, + { + "Id": 19555, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-5", + "TransactionDate": "2016-05-14T10:32:27", + "TransactionId": 45830924, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 396, + "CustomerInfo": 77604624, + "PaymentType": "Credit Card" + }, + { + "Id": 19556, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-04-16T10:23:40", + "TransactionId": 91140563, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 294, + "CustomerInfo": 6410701, + "PaymentType": "Debit Card" + }, + { + "Id": 19557, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2018-07-09T14:54:58", + "TransactionId": 36834149, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 499, + "CustomerInfo": 44323808, + "PaymentType": "Credit Card" + }, + { + "Id": 19558, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2019-12-07T07:59:05", + "TransactionId": 49262962, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 132, + "CustomerInfo": 28315645, + "PaymentType": "Cash" + }, + { + "Id": 19559, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-2", + "TransactionDate": "2017-08-17T13:21:39", + "TransactionId": 92284427, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 437, + "CustomerInfo": 64030231, + "PaymentType": "Debit Card" + }, + { + "Id": 19560, + "Region": "NA", + "Country": "Saint Pierre and Miquelon", + "Code": "PM", + "StoreId": "PM-1", + "TransactionDate": "2019-09-14T14:32:56", + "TransactionId": 11174098, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 905, + "CustomerInfo": 42425785, + "PaymentType": "Cash" + }, + { + "Id": 19561, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-2", + "TransactionDate": "2018-10-06T15:20:01", + "TransactionId": 58341502, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 121, + "CustomerInfo": 80428010, + "PaymentType": "Cash" + }, + { + "Id": 19562, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-4", + "TransactionDate": "2016-04-15T07:40:05", + "TransactionId": 11103488, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 680, + "CustomerInfo": 91961816, + "PaymentType": "Debit Card" + }, + { + "Id": 19563, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-4", + "TransactionDate": "2019-08-02T15:00:09", + "TransactionId": 71690905, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 11, + "CustomerInfo": 66975033, + "PaymentType": "Credit Card" + }, + { + "Id": 19564, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2018-04-07T10:24:14", + "TransactionId": 94548722, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 641, + "CustomerInfo": 20331144, + "PaymentType": "Cash" + }, + { + "Id": 19565, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-3", + "TransactionDate": "2018-01-03T09:06:37", + "TransactionId": 92165724, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 471, + "CustomerInfo": 81174969, + "PaymentType": "Credit Card" + }, + { + "Id": 19566, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-1", + "TransactionDate": "2016-05-02T19:19:38", + "TransactionId": 69785073, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 746, + "CustomerInfo": 51286926, + "PaymentType": "Debit Card" + }, + { + "Id": 19567, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-1", + "TransactionDate": "2019-11-08T11:31:12", + "TransactionId": 64073779, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 740, + "CustomerInfo": 61179215, + "PaymentType": "Credit Card" + }, + { + "Id": 19568, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2019-05-21T07:37:47", + "TransactionId": 6979013, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 776, + "CustomerInfo": 95327592, + "PaymentType": "Credit Card" + }, + { + "Id": 19569, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2017-02-04T16:10:16", + "TransactionId": 76982414, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 431, + "CustomerInfo": 16455548, + "PaymentType": "Debit Card" + }, + { + "Id": 19570, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2016-11-08T10:46:51", + "TransactionId": 14156746, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 524, + "CustomerInfo": 78498696, + "PaymentType": "Cash" + }, + { + "Id": 19571, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-5", + "TransactionDate": "2018-03-08T09:56:18", + "TransactionId": 15445968, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 41, + "CustomerInfo": 98492759, + "PaymentType": "Cash" + }, + { + "Id": 19572, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2016-10-25T13:45:16", + "TransactionId": 61554195, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 872, + "CustomerInfo": 18192933, + "PaymentType": "Credit Card" + }, + { + "Id": 19573, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2017-01-03T08:29:02", + "TransactionId": 5757528, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 726, + "CustomerInfo": 35536358, + "PaymentType": "Cash" + }, + { + "Id": 19574, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-1", + "TransactionDate": "2019-04-01T10:31:00", + "TransactionId": 2496238, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 107, + "CustomerInfo": 20496243, + "PaymentType": "Cash" + }, + { + "Id": 19575, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-5", + "TransactionDate": "2016-10-11T08:09:10", + "TransactionId": 99000258, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 864, + "CustomerInfo": 95518089, + "PaymentType": "Credit Card" + }, + { + "Id": 19576, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-2", + "TransactionDate": "2019-07-08T16:00:46", + "TransactionId": 2593425, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 587, + "CustomerInfo": 82742845, + "PaymentType": "Credit Card" + }, + { + "Id": 19577, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2018-01-02T14:44:10", + "TransactionId": 53355751, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 595, + "CustomerInfo": 22110441, + "PaymentType": "Debit Card" + }, + { + "Id": 19578, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2017-01-02T10:59:23", + "TransactionId": 22661579, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 199, + "CustomerInfo": 89120431, + "PaymentType": "Debit Card" + }, + { + "Id": 19579, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2019-09-09T09:15:42", + "TransactionId": 76750373, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 14, + "CustomerInfo": 47671077, + "PaymentType": "Cash" + }, + { + "Id": 19580, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-3", + "TransactionDate": "2016-11-07T14:44:18", + "TransactionId": 51899444, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 987, + "CustomerInfo": 51776373, + "PaymentType": "Debit Card" + }, + { + "Id": 19581, + "Region": "CALA", + "Country": "Uruguay", + "Code": "UY", + "StoreId": "UY-2", + "TransactionDate": "2016-12-20T16:17:11", + "TransactionId": 34892823, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 287, + "CustomerInfo": 8933752, + "PaymentType": "Debit Card" + }, + { + "Id": 19582, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2016-03-30T07:06:32", + "TransactionId": 7318858, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 64969001, + "PaymentType": "Debit Card" + }, + { + "Id": 19583, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-4", + "TransactionDate": "2016-03-30T17:55:49", + "TransactionId": 7981357, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 96, + "CustomerInfo": 35095752, + "PaymentType": "Credit Card" + }, + { + "Id": 19584, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-5", + "TransactionDate": "2018-10-10T17:56:59", + "TransactionId": 32292595, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 350, + "CustomerInfo": 91604825, + "PaymentType": "Cash" + }, + { + "Id": 19585, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-02-02T09:26:21", + "TransactionId": 19617221, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 475, + "CustomerInfo": 54220491, + "PaymentType": "Cash" + }, + { + "Id": 19586, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-09-06T18:13:24", + "TransactionId": 79311629, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 30, + "CustomerInfo": 90903833, + "PaymentType": "Credit Card" + }, + { + "Id": 19587, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-02-11T13:13:00", + "TransactionId": 48268794, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 526, + "CustomerInfo": 37273074, + "PaymentType": "Cash" + }, + { + "Id": 19588, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-1", + "TransactionDate": "2018-08-15T14:36:49", + "TransactionId": 24606821, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 646, + "CustomerInfo": 84496496, + "PaymentType": "Cash" + }, + { + "Id": 19589, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-1", + "TransactionDate": "2017-07-15T18:33:33", + "TransactionId": 26458774, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 517, + "CustomerInfo": 19364664, + "PaymentType": "Credit Card" + }, + { + "Id": 19590, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-4", + "TransactionDate": "2016-06-07T18:11:05", + "TransactionId": 14456500, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 835, + "CustomerInfo": 70126649, + "PaymentType": "Cash" + }, + { + "Id": 19591, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2019-01-14T18:57:45", + "TransactionId": 95217441, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 284, + "CustomerInfo": 56778057, + "PaymentType": "Cash" + }, + { + "Id": 19592, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2017-03-20T13:48:26", + "TransactionId": 44016281, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 797, + "CustomerInfo": 92594393, + "PaymentType": "Cash" + }, + { + "Id": 19593, + "Region": "EMEA", + "Country": "Netherlands (the)", + "Code": "NL", + "StoreId": "NL-2", + "TransactionDate": "2017-03-07T17:55:58", + "TransactionId": 3656715, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 511, + "CustomerInfo": 56521857, + "PaymentType": "Cash" + }, + { + "Id": 19594, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2019-08-03T09:42:46", + "TransactionId": 95251873, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 940, + "CustomerInfo": 71406917, + "PaymentType": "Cash" + }, + { + "Id": 19595, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-4", + "TransactionDate": "2018-06-23T11:12:29", + "TransactionId": 49707040, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 33, + "CustomerInfo": 76774312, + "PaymentType": "Credit Card" + }, + { + "Id": 19596, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-3", + "TransactionDate": "2018-06-04T18:04:36", + "TransactionId": 67978074, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 399, + "CustomerInfo": 84076600, + "PaymentType": "Cash" + }, + { + "Id": 19597, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-1", + "TransactionDate": "2016-08-04T17:14:30", + "TransactionId": 11693554, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 364, + "CustomerInfo": 64748857, + "PaymentType": "Debit Card" + }, + { + "Id": 19598, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2016-11-16T14:21:07", + "TransactionId": 58299950, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 526, + "CustomerInfo": 14437472, + "PaymentType": "Cash" + }, + { + "Id": 19599, + "Region": "NA", + "Country": "Martinique", + "Code": "MQ", + "StoreId": "MQ-1", + "TransactionDate": "2019-03-04T17:57:33", + "TransactionId": 92971922, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 994, + "CustomerInfo": 92439423, + "PaymentType": "Credit Card" + }, + { + "Id": 19600, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-3", + "TransactionDate": "2018-12-14T10:18:46", + "TransactionId": 93817794, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 888, + "CustomerInfo": 64302824, + "PaymentType": "Debit Card" + }, + { + "Id": 19601, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-2", + "TransactionDate": "2017-08-17T11:14:04", + "TransactionId": 40059839, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 212, + "CustomerInfo": 14449791, + "PaymentType": "Cash" + }, + { + "Id": 19602, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2018-03-09T15:49:15", + "TransactionId": 6690563, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 971, + "CustomerInfo": 88746287, + "PaymentType": "Credit Card" + }, + { + "Id": 19603, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-06-09T10:38:56", + "TransactionId": 90239827, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 217, + "CustomerInfo": 96817670, + "PaymentType": "Credit Card" + }, + { + "Id": 19604, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2016-05-10T10:35:46", + "TransactionId": 38970774, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 880, + "CustomerInfo": 87195, + "PaymentType": "Cash" + }, + { + "Id": 19605, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-4", + "TransactionDate": "2017-01-18T18:31:32", + "TransactionId": 20030582, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 232, + "CustomerInfo": 88609025, + "PaymentType": "Credit Card" + }, + { + "Id": 19606, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2019-04-22T18:14:33", + "TransactionId": 69901735, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 109, + "CustomerInfo": 58071039, + "PaymentType": "Credit Card" + }, + { + "Id": 19607, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-5", + "TransactionDate": "2016-09-29T15:21:36", + "TransactionId": 81220269, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 927, + "CustomerInfo": 56743633, + "PaymentType": "Debit Card" + }, + { + "Id": 19608, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-4", + "TransactionDate": "2017-02-14T17:08:27", + "TransactionId": 72104312, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 43, + "CustomerInfo": 71066721, + "PaymentType": "Debit Card" + }, + { + "Id": 19609, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-3", + "TransactionDate": "2019-05-16T15:24:29", + "TransactionId": 78163755, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 502, + "CustomerInfo": 86426250, + "PaymentType": "Debit Card" + }, + { + "Id": 19610, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-2", + "TransactionDate": "2019-11-10T19:28:51", + "TransactionId": 88861201, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 646, + "CustomerInfo": 31914392, + "PaymentType": "Credit Card" + }, + { + "Id": 19611, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-5", + "TransactionDate": "2019-05-18T14:41:17", + "TransactionId": 70287877, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 441, + "CustomerInfo": 97829159, + "PaymentType": "Cash" + }, + { + "Id": 19612, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-1", + "TransactionDate": "2018-05-24T17:40:25", + "TransactionId": 3569073, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 957, + "CustomerInfo": 88140519, + "PaymentType": "Credit Card" + }, + { + "Id": 19613, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-3", + "TransactionDate": "2018-01-07T15:58:54", + "TransactionId": 43544270, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 969, + "CustomerInfo": 69591983, + "PaymentType": "Debit Card" + }, + { + "Id": 19614, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2016-10-03T19:32:10", + "TransactionId": 12806732, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 140, + "CustomerInfo": 64377339, + "PaymentType": "Cash" + }, + { + "Id": 19615, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2019-04-26T15:18:43", + "TransactionId": 64858621, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 457, + "CustomerInfo": 4319866, + "PaymentType": "Cash" + }, + { + "Id": 19616, + "Region": "NA", + "Country": "Bahamas (the)", + "Code": "BS", + "StoreId": "BS-5", + "TransactionDate": "2016-04-29T14:20:59", + "TransactionId": 75042375, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 6, + "CustomerInfo": 95961596, + "PaymentType": "Credit Card" + }, + { + "Id": 19617, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2017-11-06T11:24:09", + "TransactionId": 60874398, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 821, + "CustomerInfo": 59206915, + "PaymentType": "Debit Card" + }, + { + "Id": 19618, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2018-10-19T10:17:20", + "TransactionId": 43409035, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 19, + "CustomerInfo": 77882608, + "PaymentType": "Debit Card" + }, + { + "Id": 19619, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-1", + "TransactionDate": "2017-03-21T14:49:21", + "TransactionId": 50199559, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 43, + "CustomerInfo": 64003265, + "PaymentType": "Credit Card" + }, + { + "Id": 19620, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-3", + "TransactionDate": "2017-03-12T15:42:03", + "TransactionId": 74473896, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 538, + "CustomerInfo": 52301887, + "PaymentType": "Cash" + }, + { + "Id": 19621, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2017-10-26T16:06:49", + "TransactionId": 32200073, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 824, + "CustomerInfo": 54715532, + "PaymentType": "Debit Card" + }, + { + "Id": 19622, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-4", + "TransactionDate": "2018-07-08T07:14:27", + "TransactionId": 40430021, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 484, + "CustomerInfo": 34340087, + "PaymentType": "Debit Card" + }, + { + "Id": 19623, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2018-03-10T13:44:07", + "TransactionId": 95095153, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 800, + "CustomerInfo": 82984492, + "PaymentType": "Cash" + }, + { + "Id": 19624, + "Region": "NA", + "Country": "Honduras", + "Code": "HN", + "StoreId": "HN-3", + "TransactionDate": "2016-10-08T18:39:53", + "TransactionId": 34504108, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 369, + "CustomerInfo": 96089065, + "PaymentType": "Cash" + }, + { + "Id": 19625, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-3", + "TransactionDate": "2018-11-04T16:25:49", + "TransactionId": 15096611, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 999, + "CustomerInfo": 6944079, + "PaymentType": "Debit Card" + }, + { + "Id": 19626, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-2", + "TransactionDate": "2017-10-24T07:52:54", + "TransactionId": 21913527, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 921, + "CustomerInfo": 20420967, + "PaymentType": "Debit Card" + }, + { + "Id": 19627, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2016-06-19T09:29:57", + "TransactionId": 71316838, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 231, + "CustomerInfo": 17286737, + "PaymentType": "Debit Card" + }, + { + "Id": 19628, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-3", + "TransactionDate": "2018-08-18T15:52:08", + "TransactionId": 45889862, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 733, + "CustomerInfo": 74409587, + "PaymentType": "Credit Card" + }, + { + "Id": 19629, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-5", + "TransactionDate": "2019-09-20T10:55:12", + "TransactionId": 4963306, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 257, + "CustomerInfo": 29895423, + "PaymentType": "Debit Card" + }, + { + "Id": 19630, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-2", + "TransactionDate": "2016-12-15T11:46:54", + "TransactionId": 32068070, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 48, + "CustomerInfo": 70212620, + "PaymentType": "Debit Card" + }, + { + "Id": 19631, + "Region": "CALA", + "Country": "Paraguay", + "Code": "PY", + "StoreId": "PY-1", + "TransactionDate": "2017-11-01T16:09:59", + "TransactionId": 62310524, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 89, + "CustomerInfo": 95954222, + "PaymentType": "Cash" + }, + { + "Id": 19632, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-4", + "TransactionDate": "2017-08-22T18:50:07", + "TransactionId": 87711007, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 984, + "CustomerInfo": 54925059, + "PaymentType": "Debit Card" + }, + { + "Id": 19633, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-1", + "TransactionDate": "2017-06-07T17:31:21", + "TransactionId": 47000598, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 749, + "CustomerInfo": 46888697, + "PaymentType": "Cash" + }, + { + "Id": 19634, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-4", + "TransactionDate": "2018-04-03T07:21:13", + "TransactionId": 73224034, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 616, + "CustomerInfo": 42276067, + "PaymentType": "Credit Card" + }, + { + "Id": 19635, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-3", + "TransactionDate": "2019-04-29T13:06:40", + "TransactionId": 17369339, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 461, + "CustomerInfo": 78734522, + "PaymentType": "Credit Card" + }, + { + "Id": 19636, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2016-03-16T10:31:35", + "TransactionId": 23343009, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 370, + "CustomerInfo": 73142145, + "PaymentType": "Credit Card" + }, + { + "Id": 19637, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-1", + "TransactionDate": "2018-08-19T14:23:51", + "TransactionId": 32606135, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 926, + "CustomerInfo": 68367538, + "PaymentType": "Debit Card" + }, + { + "Id": 19638, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-3", + "TransactionDate": "2016-07-03T18:55:52", + "TransactionId": 83322536, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 657, + "CustomerInfo": 38485400, + "PaymentType": "Debit Card" + }, + { + "Id": 19639, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-5", + "TransactionDate": "2019-11-19T07:20:21", + "TransactionId": 54283798, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 694, + "CustomerInfo": 41655620, + "PaymentType": "Debit Card" + }, + { + "Id": 19640, + "Region": "APAC", + "Country": "Northern Mariana Islands (the)", + "Code": "MP", + "StoreId": "MP-5", + "TransactionDate": "2016-01-15T13:59:57", + "TransactionId": 93978752, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 847, + "CustomerInfo": 40370350, + "PaymentType": "Cash" + }, + { + "Id": 19641, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-3", + "TransactionDate": "2019-03-27T09:58:11", + "TransactionId": 79639385, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 153, + "CustomerInfo": 26794187, + "PaymentType": "Debit Card" + }, + { + "Id": 19642, + "Region": "EMEA", + "Country": "Romania", + "Code": "RO", + "StoreId": "RO-3", + "TransactionDate": "2019-11-30T15:31:06", + "TransactionId": 69249653, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 450, + "CustomerInfo": 53525173, + "PaymentType": "Credit Card" + }, + { + "Id": 19643, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-5", + "TransactionDate": "2018-08-12T08:27:53", + "TransactionId": 81481330, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 462, + "CustomerInfo": 51102694, + "PaymentType": "Cash" + }, + { + "Id": 19644, + "Region": "NA", + "Country": "Haiti", + "Code": "HT", + "StoreId": "HT-2", + "TransactionDate": "2016-06-23T13:12:00", + "TransactionId": 98220007, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 29, + "CustomerInfo": 77938443, + "PaymentType": "Debit Card" + }, + { + "Id": 19645, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-3", + "TransactionDate": "2019-12-18T19:03:04", + "TransactionId": 89771691, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 128, + "CustomerInfo": 74138992, + "PaymentType": "Credit Card" + }, + { + "Id": 19646, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-5", + "TransactionDate": "2017-06-08T08:24:09", + "TransactionId": 91605663, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 441, + "CustomerInfo": 72539508, + "PaymentType": "Debit Card" + }, + { + "Id": 19647, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-5", + "TransactionDate": "2018-06-06T07:51:10", + "TransactionId": 93161802, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 232, + "CustomerInfo": 6443664, + "PaymentType": "Debit Card" + }, + { + "Id": 19648, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-4", + "TransactionDate": "2019-09-12T15:25:55", + "TransactionId": 16049329, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 876, + "CustomerInfo": 57174647, + "PaymentType": "Credit Card" + }, + { + "Id": 19649, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2016-11-05T10:27:16", + "TransactionId": 97918591, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 410, + "CustomerInfo": 32302328, + "PaymentType": "Debit Card" + }, + { + "Id": 19650, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-1", + "TransactionDate": "2016-11-09T19:42:32", + "TransactionId": 52416722, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 123, + "CustomerInfo": 58728168, + "PaymentType": "Cash" + }, + { + "Id": 19651, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2017-06-29T07:38:12", + "TransactionId": 49904230, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 942, + "CustomerInfo": 14798631, + "PaymentType": "Debit Card" + }, + { + "Id": 19652, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2019-09-17T18:03:01", + "TransactionId": 71547810, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 374, + "CustomerInfo": 59634963, + "PaymentType": "Cash" + }, + { + "Id": 19653, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-2", + "TransactionDate": "2016-04-08T08:44:36", + "TransactionId": 87627279, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 39, + "CustomerInfo": 65395199, + "PaymentType": "Debit Card" + }, + { + "Id": 19654, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-5", + "TransactionDate": "2016-04-18T11:36:58", + "TransactionId": 4652935, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 303, + "CustomerInfo": 68884330, + "PaymentType": "Credit Card" + }, + { + "Id": 19655, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-3", + "TransactionDate": "2016-06-29T08:59:00", + "TransactionId": 64847336, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 728, + "CustomerInfo": 60774253, + "PaymentType": "Debit Card" + }, + { + "Id": 19656, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2019-08-05T14:52:05", + "TransactionId": 29921144, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 838, + "CustomerInfo": 75136416, + "PaymentType": "Debit Card" + }, + { + "Id": 19657, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-3", + "TransactionDate": "2019-05-29T15:00:00", + "TransactionId": 10451959, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 256, + "CustomerInfo": 12542328, + "PaymentType": "Cash" + }, + { + "Id": 19658, + "Region": "EMEA", + "Country": "Andorra", + "Code": "AD", + "StoreId": "AD-4", + "TransactionDate": "2016-01-13T08:36:49", + "TransactionId": 2590568, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 125, + "CustomerInfo": 2717857, + "PaymentType": "Debit Card" + }, + { + "Id": 19659, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-5", + "TransactionDate": "2019-06-16T08:18:23", + "TransactionId": 99727530, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 385, + "CustomerInfo": 72209324, + "PaymentType": "Cash" + }, + { + "Id": 19660, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-3", + "TransactionDate": "2017-05-22T13:27:16", + "TransactionId": 56682665, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 725, + "CustomerInfo": 18263454, + "PaymentType": "Cash" + }, + { + "Id": 19661, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-5", + "TransactionDate": "2016-02-16T17:21:42", + "TransactionId": 13412659, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 384, + "CustomerInfo": 6369365, + "PaymentType": "Debit Card" + }, + { + "Id": 19662, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-1", + "TransactionDate": "2018-11-17T19:49:26", + "TransactionId": 14217287, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 343, + "CustomerInfo": 86704189, + "PaymentType": "Credit Card" + }, + { + "Id": 19663, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-4", + "TransactionDate": "2019-10-16T09:01:26", + "TransactionId": 63228469, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 181, + "CustomerInfo": 97139679, + "PaymentType": "Cash" + }, + { + "Id": 19664, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2019-03-08T16:37:55", + "TransactionId": 11611772, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 770, + "CustomerInfo": 24870594, + "PaymentType": "Cash" + }, + { + "Id": 19665, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-1", + "TransactionDate": "2019-04-18T19:38:12", + "TransactionId": 64922897, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 122, + "CustomerInfo": 82448029, + "PaymentType": "Cash" + }, + { + "Id": 19666, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-2", + "TransactionDate": "2018-01-12T11:26:01", + "TransactionId": 83754687, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 460, + "CustomerInfo": 3510652, + "PaymentType": "Debit Card" + }, + { + "Id": 19667, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2019-12-28T18:27:39", + "TransactionId": 31193488, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 274, + "CustomerInfo": 62496714, + "PaymentType": "Debit Card" + }, + { + "Id": 19668, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-2", + "TransactionDate": "2018-07-18T18:54:00", + "TransactionId": 34820658, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 192, + "CustomerInfo": 32304962, + "PaymentType": "Debit Card" + }, + { + "Id": 19669, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-3", + "TransactionDate": "2019-07-19T10:52:19", + "TransactionId": 22772795, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 434, + "CustomerInfo": 7327081, + "PaymentType": "Credit Card" + }, + { + "Id": 19670, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2016-08-21T19:39:30", + "TransactionId": 74250151, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 993, + "CustomerInfo": 71810147, + "PaymentType": "Credit Card" + }, + { + "Id": 19671, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-4", + "TransactionDate": "2019-06-26T13:55:55", + "TransactionId": 89077456, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 121, + "CustomerInfo": 60641472, + "PaymentType": "Credit Card" + }, + { + "Id": 19672, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-3", + "TransactionDate": "2018-06-29T17:41:34", + "TransactionId": 55914261, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 54774599, + "PaymentType": "Cash" + }, + { + "Id": 19673, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-5", + "TransactionDate": "2017-05-15T18:43:03", + "TransactionId": 26504766, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 610, + "CustomerInfo": 52203220, + "PaymentType": "Cash" + }, + { + "Id": 19674, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-2", + "TransactionDate": "2019-05-04T10:40:48", + "TransactionId": 55891179, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 821, + "CustomerInfo": 81834871, + "PaymentType": "Cash" + }, + { + "Id": 19675, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-1", + "TransactionDate": "2018-10-30T12:18:00", + "TransactionId": 37930174, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 614, + "CustomerInfo": 24312660, + "PaymentType": "Credit Card" + }, + { + "Id": 19676, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-1", + "TransactionDate": "2016-03-05T08:10:11", + "TransactionId": 29612552, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 799, + "CustomerInfo": 26056007, + "PaymentType": "Cash" + }, + { + "Id": 19677, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-5", + "TransactionDate": "2019-01-22T15:43:03", + "TransactionId": 64638617, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 670, + "CustomerInfo": 79661994, + "PaymentType": "Credit Card" + }, + { + "Id": 19678, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2017-10-25T12:20:27", + "TransactionId": 94528995, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 561, + "CustomerInfo": 18589467, + "PaymentType": "Cash" + }, + { + "Id": 19679, + "Region": "APAC", + "Country": "Armenia", + "Code": "AM", + "StoreId": "AM-3", + "TransactionDate": "2019-03-31T16:37:12", + "TransactionId": 77755800, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 421, + "CustomerInfo": 59390364, + "PaymentType": "Debit Card" + }, + { + "Id": 19680, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-1", + "TransactionDate": "2019-11-07T16:33:27", + "TransactionId": 11847465, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 815, + "CustomerInfo": 4398029, + "PaymentType": "Cash" + }, + { + "Id": 19681, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-4", + "TransactionDate": "2019-11-04T18:07:03", + "TransactionId": 94103463, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 106, + "CustomerInfo": 81396735, + "PaymentType": "Credit Card" + }, + { + "Id": 19682, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-3", + "TransactionDate": "2016-03-24T08:56:59", + "TransactionId": 9463681, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 319, + "CustomerInfo": 74445010, + "PaymentType": "Debit Card" + }, + { + "Id": 19683, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-4", + "TransactionDate": "2019-01-20T12:37:52", + "TransactionId": 28540856, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 445, + "CustomerInfo": 44321515, + "PaymentType": "Cash" + }, + { + "Id": 19684, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2016-03-30T11:00:32", + "TransactionId": 83745870, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 152, + "CustomerInfo": 12591561, + "PaymentType": "Credit Card" + }, + { + "Id": 19685, + "Region": "CALA", + "Country": "Bolivia (Plurinational State of)", + "Code": "BO", + "StoreId": "BO-2", + "TransactionDate": "2017-08-05T07:51:27", + "TransactionId": 49058085, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 619, + "CustomerInfo": 40198469, + "PaymentType": "Debit Card" + }, + { + "Id": 19686, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2016-10-28T15:03:45", + "TransactionId": 23552645, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 917, + "CustomerInfo": 63753508, + "PaymentType": "Credit Card" + }, + { + "Id": 19687, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-2", + "TransactionDate": "2016-12-16T12:53:34", + "TransactionId": 25780013, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 373, + "CustomerInfo": 19459324, + "PaymentType": "Credit Card" + }, + { + "Id": 19688, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2017-08-13T08:50:30", + "TransactionId": 91733325, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 883, + "CustomerInfo": 69315097, + "PaymentType": "Cash" + }, + { + "Id": 19689, + "Region": "APAC", + "Country": "British Indian Ocean Territory (the)", + "Code": "IO", + "StoreId": "IO-1", + "TransactionDate": "2018-04-25T07:30:35", + "TransactionId": 44653997, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 546, + "CustomerInfo": 79612764, + "PaymentType": "Credit Card" + }, + { + "Id": 19690, + "Region": "NA", + "Country": "Virgin Islands (U.S.)", + "Code": "VI", + "StoreId": "VI-1", + "TransactionDate": "2016-06-09T17:33:39", + "TransactionId": 77907217, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 254, + "CustomerInfo": 47988799, + "PaymentType": "Debit Card" + }, + { + "Id": 19691, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-4", + "TransactionDate": "2018-01-09T11:05:51", + "TransactionId": 41941252, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 431, + "CustomerInfo": 54784320, + "PaymentType": "Cash" + }, + { + "Id": 19692, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-2", + "TransactionDate": "2019-10-12T19:27:24", + "TransactionId": 83951849, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 758, + "CustomerInfo": 88036168, + "PaymentType": "Credit Card" + }, + { + "Id": 19693, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-1", + "TransactionDate": "2016-08-25T15:04:11", + "TransactionId": 83281526, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 151, + "CustomerInfo": 27418502, + "PaymentType": "Debit Card" + }, + { + "Id": 19694, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-03-16T17:55:32", + "TransactionId": 16994290, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 305, + "CustomerInfo": 47024802, + "PaymentType": "Cash" + }, + { + "Id": 19695, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2016-05-29T17:09:36", + "TransactionId": 53202559, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 249, + "CustomerInfo": 50554938, + "PaymentType": "Cash" + }, + { + "Id": 19696, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-5", + "TransactionDate": "2018-05-16T14:00:06", + "TransactionId": 75677703, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 219, + "CustomerInfo": 31511888, + "PaymentType": "Credit Card" + }, + { + "Id": 19697, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-4", + "TransactionDate": "2017-06-14T10:21:56", + "TransactionId": 21110600, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 470, + "CustomerInfo": 97895809, + "PaymentType": "Credit Card" + }, + { + "Id": 19698, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2019-05-24T11:52:48", + "TransactionId": 72759110, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 943, + "CustomerInfo": 77303138, + "PaymentType": "Cash" + }, + { + "Id": 19699, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-4", + "TransactionDate": "2016-02-20T15:10:39", + "TransactionId": 93114684, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 896, + "CustomerInfo": 96866300, + "PaymentType": "Credit Card" + }, + { + "Id": 19700, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-3", + "TransactionDate": "2017-06-19T19:27:33", + "TransactionId": 97909638, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 800, + "CustomerInfo": 8683781, + "PaymentType": "Debit Card" + }, + { + "Id": 19701, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-1", + "TransactionDate": "2016-11-27T10:03:22", + "TransactionId": 83493544, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 839, + "CustomerInfo": 91837424, + "PaymentType": "Debit Card" + }, + { + "Id": 19702, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-1", + "TransactionDate": "2019-02-16T15:20:36", + "TransactionId": 91494601, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 243, + "CustomerInfo": 22398316, + "PaymentType": "Credit Card" + }, + { + "Id": 19703, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-2", + "TransactionDate": "2018-01-22T12:30:32", + "TransactionId": 68523738, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 607, + "CustomerInfo": 40212718, + "PaymentType": "Debit Card" + }, + { + "Id": 19704, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2018-01-22T14:36:49", + "TransactionId": 87707025, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 842, + "CustomerInfo": 92782392, + "PaymentType": "Credit Card" + }, + { + "Id": 19705, + "Region": "APAC", + "Country": "Afghanistan", + "Code": "AF", + "StoreId": "AF-4", + "TransactionDate": "2018-09-15T14:03:07", + "TransactionId": 24383858, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 93, + "CustomerInfo": 67456956, + "PaymentType": "Debit Card" + }, + { + "Id": 19706, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2018-02-20T16:35:54", + "TransactionId": 89686474, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 608, + "CustomerInfo": 32100780, + "PaymentType": "Debit Card" + }, + { + "Id": 19707, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2017-11-09T14:51:48", + "TransactionId": 54010203, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 24, + "CustomerInfo": 66243047, + "PaymentType": "Credit Card" + }, + { + "Id": 19708, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-2", + "TransactionDate": "2018-12-06T12:57:27", + "TransactionId": 83053384, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 4, + "CustomerInfo": 14381021, + "PaymentType": "Credit Card" + }, + { + "Id": 19709, + "Region": "APAC", + "Country": "Tajikistan", + "Code": "TJ", + "StoreId": "TJ-2", + "TransactionDate": "2018-12-11T11:35:05", + "TransactionId": 59222916, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 257, + "CustomerInfo": 18186965, + "PaymentType": "Credit Card" + }, + { + "Id": 19710, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-2", + "TransactionDate": "2016-11-24T11:11:28", + "TransactionId": 93000977, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 120, + "CustomerInfo": 22724215, + "PaymentType": "Credit Card" + }, + { + "Id": 19711, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-4", + "TransactionDate": "2017-04-24T13:23:57", + "TransactionId": 89199195, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 237, + "CustomerInfo": 34236135, + "PaymentType": "Debit Card" + }, + { + "Id": 19712, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2016-01-03T07:45:42", + "TransactionId": 91561940, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 500, + "CustomerInfo": 73624093, + "PaymentType": "Cash" + }, + { + "Id": 19713, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-3", + "TransactionDate": "2016-02-09T16:19:12", + "TransactionId": 34214336, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 181, + "CustomerInfo": 53281311, + "PaymentType": "Credit Card" + }, + { + "Id": 19714, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-4", + "TransactionDate": "2018-02-15T11:10:11", + "TransactionId": 92244554, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 509, + "CustomerInfo": 41669271, + "PaymentType": "Debit Card" + }, + { + "Id": 19715, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-1", + "TransactionDate": "2017-05-30T16:44:59", + "TransactionId": 53155020, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 100, + "CustomerInfo": 69894571, + "PaymentType": "Credit Card" + }, + { + "Id": 19716, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-1", + "TransactionDate": "2017-05-03T13:15:10", + "TransactionId": 55137333, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 172, + "CustomerInfo": 26116241, + "PaymentType": "Credit Card" + }, + { + "Id": 19717, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2017-02-27T13:24:58", + "TransactionId": 6125471, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 94, + "CustomerInfo": 48792278, + "PaymentType": "Debit Card" + }, + { + "Id": 19718, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-1", + "TransactionDate": "2017-01-09T07:15:19", + "TransactionId": 86264414, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 855, + "CustomerInfo": 64854760, + "PaymentType": "Debit Card" + }, + { + "Id": 19719, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-2", + "TransactionDate": "2019-11-17T19:10:51", + "TransactionId": 10872532, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 451, + "CustomerInfo": 66024875, + "PaymentType": "Cash" + }, + { + "Id": 19720, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-2", + "TransactionDate": "2017-05-31T09:39:36", + "TransactionId": 75045061, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 934, + "CustomerInfo": 70735298, + "PaymentType": "Debit Card" + }, + { + "Id": 19721, + "Region": "EMEA", + "Country": "France", + "Code": "FR", + "StoreId": "FR-5", + "TransactionDate": "2017-02-22T14:45:27", + "TransactionId": 56730187, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 118, + "CustomerInfo": 4940041, + "PaymentType": "Cash" + }, + { + "Id": 19722, + "Region": "EMEA", + "Country": "Slovakia", + "Code": "SK", + "StoreId": "SK-1", + "TransactionDate": "2018-10-10T09:56:10", + "TransactionId": 39655580, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 634, + "CustomerInfo": 50814273, + "PaymentType": "Credit Card" + }, + { + "Id": 19723, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2018-12-20T09:14:41", + "TransactionId": 63684571, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 557, + "CustomerInfo": 76390824, + "PaymentType": "Debit Card" + }, + { + "Id": 19724, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-1", + "TransactionDate": "2018-01-19T13:38:04", + "TransactionId": 28362965, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 253, + "CustomerInfo": 71792457, + "PaymentType": "Cash" + }, + { + "Id": 19725, + "Region": "APAC", + "Country": "Wallis and Futuna", + "Code": "WF", + "StoreId": "WF-4", + "TransactionDate": "2019-01-06T14:16:05", + "TransactionId": 25415226, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 300, + "CustomerInfo": 57110383, + "PaymentType": "Credit Card" + }, + { + "Id": 19726, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-2", + "TransactionDate": "2017-09-04T11:44:10", + "TransactionId": 30839146, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 169, + "CustomerInfo": 6938999, + "PaymentType": "Credit Card" + }, + { + "Id": 19727, + "Region": "EMEA", + "Country": "Czechia", + "Code": "CZ", + "StoreId": "CZ-1", + "TransactionDate": "2017-10-02T18:26:12", + "TransactionId": 68377487, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 787, + "CustomerInfo": 54331997, + "PaymentType": "Debit Card" + }, + { + "Id": 19728, + "Region": "APAC", + "Country": "Iran (Islamic Republic of)", + "Code": "IR", + "StoreId": "IR-4", + "TransactionDate": "2019-09-02T16:33:10", + "TransactionId": 55522224, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 879, + "CustomerInfo": 19158467, + "PaymentType": "Cash" + }, + { + "Id": 19729, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-1", + "TransactionDate": "2019-04-02T19:19:12", + "TransactionId": 51413220, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 54, + "CustomerInfo": 89137853, + "PaymentType": "Debit Card" + }, + { + "Id": 19730, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2016-05-24T11:11:37", + "TransactionId": 19027901, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 91, + "CustomerInfo": 28862517, + "PaymentType": "Cash" + }, + { + "Id": 19731, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-4", + "TransactionDate": "2018-07-18T07:20:21", + "TransactionId": 27138700, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 254, + "CustomerInfo": 51137027, + "PaymentType": "Credit Card" + }, + { + "Id": 19732, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-5", + "TransactionDate": "2017-09-04T14:51:13", + "TransactionId": 713225, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 113, + "CustomerInfo": 81054606, + "PaymentType": "Debit Card" + }, + { + "Id": 19733, + "Region": "APAC", + "Country": "French Polynesia", + "Code": "PF", + "StoreId": "PF-1", + "TransactionDate": "2019-05-17T11:26:01", + "TransactionId": 47189084, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 561, + "CustomerInfo": 41734427, + "PaymentType": "Debit Card" + }, + { + "Id": 19734, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2018-05-20T18:35:34", + "TransactionId": 82005864, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 283, + "CustomerInfo": 8774161, + "PaymentType": "Credit Card" + }, + { + "Id": 19735, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-2", + "TransactionDate": "2018-09-15T17:52:05", + "TransactionId": 48514651, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 919, + "CustomerInfo": 34136411, + "PaymentType": "Cash" + }, + { + "Id": 19736, + "Region": "CALA", + "Country": "Venezuela (Bolivarian Republic of)", + "Code": "VE", + "StoreId": "VE-5", + "TransactionDate": "2017-04-24T16:05:14", + "TransactionId": 79557670, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 347, + "CustomerInfo": 38990248, + "PaymentType": "Debit Card" + }, + { + "Id": 19737, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-2", + "TransactionDate": "2017-10-22T15:10:31", + "TransactionId": 49610700, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 146, + "CustomerInfo": 71753944, + "PaymentType": "Debit Card" + }, + { + "Id": 19738, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-5", + "TransactionDate": "2016-04-23T12:12:14", + "TransactionId": 27917591, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 779, + "CustomerInfo": 105350, + "PaymentType": "Debit Card" + }, + { + "Id": 19739, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-2", + "TransactionDate": "2016-04-11T17:55:15", + "TransactionId": 47015828, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 116, + "CustomerInfo": 11919362, + "PaymentType": "Cash" + }, + { + "Id": 19740, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2019-02-16T07:33:01", + "TransactionId": 72995854, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 216, + "CustomerInfo": 83609094, + "PaymentType": "Credit Card" + }, + { + "Id": 19741, + "Region": "APAC", + "Country": "Marshall Islands (the)", + "Code": "MH", + "StoreId": "MH-5", + "TransactionDate": "2019-03-11T09:29:40", + "TransactionId": 84801436, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 57, + "CustomerInfo": 89823479, + "PaymentType": "Credit Card" + }, + { + "Id": 19742, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-5", + "TransactionDate": "2016-10-26T13:57:30", + "TransactionId": 48302649, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 768, + "CustomerInfo": 33955053, + "PaymentType": "Cash" + }, + { + "Id": 19743, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-2", + "TransactionDate": "2017-04-10T08:10:19", + "TransactionId": 24228989, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 272, + "CustomerInfo": 49928197, + "PaymentType": "Debit Card" + }, + { + "Id": 19744, + "Region": "APAC", + "Country": "Turkmenistan", + "Code": "TM", + "StoreId": "TM-4", + "TransactionDate": "2018-08-23T16:02:12", + "TransactionId": 19365494, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 190, + "CustomerInfo": 56393469, + "PaymentType": "Debit Card" + }, + { + "Id": 19745, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-4", + "TransactionDate": "2019-05-31T08:58:25", + "TransactionId": 1036123, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 725, + "CustomerInfo": 23045976, + "PaymentType": "Debit Card" + }, + { + "Id": 19746, + "Region": "EMEA", + "Country": "Italy", + "Code": "IT", + "StoreId": "IT-4", + "TransactionDate": "2019-12-07T07:33:45", + "TransactionId": 80896484, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 136, + "CustomerInfo": 29673154, + "PaymentType": "Debit Card" + }, + { + "Id": 19747, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2016-12-30T09:04:54", + "TransactionId": 38515995, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 388, + "CustomerInfo": 3482406, + "PaymentType": "Debit Card" + }, + { + "Id": 19748, + "Region": "CALA", + "Country": "Suriname", + "Code": "SR", + "StoreId": "SR-5", + "TransactionDate": "2016-10-27T12:58:02", + "TransactionId": 69384715, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 583, + "CustomerInfo": 33093376, + "PaymentType": "Debit Card" + }, + { + "Id": 19749, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-1", + "TransactionDate": "2017-12-10T08:10:11", + "TransactionId": 22946239, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 945, + "CustomerInfo": 3890900, + "PaymentType": "Debit Card" + }, + { + "Id": 19750, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-5", + "TransactionDate": "2016-07-10T09:30:14", + "TransactionId": 65323636, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 68, + "CustomerInfo": 34253988, + "PaymentType": "Cash" + }, + { + "Id": 19751, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-2", + "TransactionDate": "2018-09-04T11:40:16", + "TransactionId": 31071504, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 663, + "CustomerInfo": 64305034, + "PaymentType": "Cash" + }, + { + "Id": 19752, + "Region": "APAC", + "Country": "Tonga", + "Code": "TO", + "StoreId": "TO-4", + "TransactionDate": "2017-07-10T08:03:33", + "TransactionId": 40547254, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 619, + "CustomerInfo": 67449624, + "PaymentType": "Cash" + }, + { + "Id": 19753, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-5", + "TransactionDate": "2018-12-12T19:18:12", + "TransactionId": 86525402, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 376, + "CustomerInfo": 43369403, + "PaymentType": "Debit Card" + }, + { + "Id": 19754, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2017-02-10T08:17:23", + "TransactionId": 36848116, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 254, + "CustomerInfo": 59211493, + "PaymentType": "Credit Card" + }, + { + "Id": 19755, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-4", + "TransactionDate": "2016-04-16T18:55:35", + "TransactionId": 67317105, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 855, + "CustomerInfo": 81289218, + "PaymentType": "Credit Card" + }, + { + "Id": 19756, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-3", + "TransactionDate": "2018-03-31T17:31:21", + "TransactionId": 58973775, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 323, + "CustomerInfo": 14981265, + "PaymentType": "Cash" + }, + { + "Id": 19757, + "Region": "APAC", + "Country": "Iraq", + "Code": "IQ", + "StoreId": "IQ-3", + "TransactionDate": "2017-01-07T07:21:22", + "TransactionId": 50723533, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 389, + "CustomerInfo": 58616857, + "PaymentType": "Debit Card" + }, + { + "Id": 19758, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2018-06-16T16:39:56", + "TransactionId": 64040067, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 723, + "CustomerInfo": 23605605, + "PaymentType": "Debit Card" + }, + { + "Id": 19759, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-4", + "TransactionDate": "2019-09-20T15:22:28", + "TransactionId": 9022912, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 979, + "CustomerInfo": 16384415, + "PaymentType": "Credit Card" + }, + { + "Id": 19760, + "Region": "APAC", + "Country": "Timor-Leste", + "Code": "TL", + "StoreId": "TL-2", + "TransactionDate": "2016-09-03T17:07:00", + "TransactionId": 19865893, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 715, + "CustomerInfo": 19512841, + "PaymentType": "Debit Card" + }, + { + "Id": 19761, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2017-03-14T17:25:18", + "TransactionId": 63345733, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 484, + "CustomerInfo": 98501229, + "PaymentType": "Debit Card" + }, + { + "Id": 19762, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-09-28T09:11:05", + "TransactionId": 71404470, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 492, + "CustomerInfo": 5865921, + "PaymentType": "Cash" + }, + { + "Id": 19763, + "Region": "APAC", + "Country": "Norfolk Island", + "Code": "NF", + "StoreId": "NF-3", + "TransactionDate": "2019-04-12T10:24:58", + "TransactionId": 19058369, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 381, + "CustomerInfo": 12566267, + "PaymentType": "Cash" + }, + { + "Id": 19764, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-5", + "TransactionDate": "2019-04-30T19:23:23", + "TransactionId": 57878179, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 196, + "CustomerInfo": 77158004, + "PaymentType": "Cash" + }, + { + "Id": 19765, + "Region": "CALA", + "Country": "French Guiana", + "Code": "GF", + "StoreId": "GF-2", + "TransactionDate": "2016-12-07T13:42:49", + "TransactionId": 52687739, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 147, + "CustomerInfo": 13721454, + "PaymentType": "Credit Card" + }, + { + "Id": 19766, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-1", + "TransactionDate": "2019-02-12T07:20:56", + "TransactionId": 74169515, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 68, + "CustomerInfo": 70690008, + "PaymentType": "Credit Card" + }, + { + "Id": 19767, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-4", + "TransactionDate": "2016-08-06T18:18:43", + "TransactionId": 43294952, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 242, + "CustomerInfo": 94115826, + "PaymentType": "Debit Card" + }, + { + "Id": 19768, + "Region": "APAC", + "Country": "Myanmar", + "Code": "MM", + "StoreId": "MM-5", + "TransactionDate": "2018-10-19T13:24:58", + "TransactionId": 12652286, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 372, + "CustomerInfo": 50732087, + "PaymentType": "Debit Card" + }, + { + "Id": 19769, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-4", + "TransactionDate": "2017-07-20T13:11:08", + "TransactionId": 68374237, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 538, + "CustomerInfo": 52173807, + "PaymentType": "Credit Card" + }, + { + "Id": 19770, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-1", + "TransactionDate": "2017-12-07T16:59:14", + "TransactionId": 60042334, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 510, + "CustomerInfo": 40618429, + "PaymentType": "Cash" + }, + { + "Id": 19771, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2016-12-31T17:15:13", + "TransactionId": 24848170, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 248, + "CustomerInfo": 1884111, + "PaymentType": "Debit Card" + }, + { + "Id": 19772, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-1", + "TransactionDate": "2016-01-09T12:20:01", + "TransactionId": 50452823, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 656, + "CustomerInfo": 82273254, + "PaymentType": "Debit Card" + }, + { + "Id": 19773, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2017-02-07T11:55:41", + "TransactionId": 96369364, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 800, + "CustomerInfo": 65969506, + "PaymentType": "Credit Card" + }, + { + "Id": 19774, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2018-04-22T19:04:22", + "TransactionId": 9917005, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 900, + "CustomerInfo": 55828013, + "PaymentType": "Cash" + }, + { + "Id": 19775, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-1", + "TransactionDate": "2016-01-02T15:47:31", + "TransactionId": 88161746, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 327, + "CustomerInfo": 1174852, + "PaymentType": "Credit Card" + }, + { + "Id": 19776, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2016-05-10T07:30:35", + "TransactionId": 87625959, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 614, + "CustomerInfo": 69446071, + "PaymentType": "Cash" + }, + { + "Id": 19777, + "Region": "EMEA", + "Country": "Croatia", + "Code": "HR", + "StoreId": "HR-2", + "TransactionDate": "2016-02-23T17:59:00", + "TransactionId": 22562270, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 609, + "CustomerInfo": 42993719, + "PaymentType": "Cash" + }, + { + "Id": 19778, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2017-07-30T18:51:33", + "TransactionId": 88108444, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 499, + "CustomerInfo": 92804427, + "PaymentType": "Credit Card" + }, + { + "Id": 19779, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2017-03-29T17:47:11", + "TransactionId": 99322783, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 589, + "CustomerInfo": 72636454, + "PaymentType": "Credit Card" + }, + { + "Id": 19780, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-4", + "TransactionDate": "2019-11-04T07:25:32", + "TransactionId": 49435524, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 354, + "CustomerInfo": 5735150, + "PaymentType": "Cash" + }, + { + "Id": 19781, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-5", + "TransactionDate": "2016-12-15T17:55:15", + "TransactionId": 38224471, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 679, + "CustomerInfo": 79656372, + "PaymentType": "Cash" + }, + { + "Id": 19782, + "Region": "EMEA", + "Country": "Guernsey", + "Code": "GG", + "StoreId": "GG-3", + "TransactionDate": "2018-02-03T13:35:11", + "TransactionId": 82653240, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 158, + "CustomerInfo": 15279333, + "PaymentType": "Cash" + }, + { + "Id": 19783, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2019-09-03T10:05:05", + "TransactionId": 68346754, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 871, + "CustomerInfo": 97672085, + "PaymentType": "Debit Card" + }, + { + "Id": 19784, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-4", + "TransactionDate": "2017-04-23T07:13:44", + "TransactionId": 49998480, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 514, + "CustomerInfo": 79252235, + "PaymentType": "Debit Card" + }, + { + "Id": 19785, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-3", + "TransactionDate": "2018-11-30T08:16:48", + "TransactionId": 15581700, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 224, + "CustomerInfo": 24162819, + "PaymentType": "Cash" + }, + { + "Id": 19786, + "Region": "EMEA", + "Country": "\uFFFDland Islands", + "Code": "AX", + "StoreId": "AX-3", + "TransactionDate": "2017-12-27T17:59:08", + "TransactionId": 44496127, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 846, + "CustomerInfo": 87514668, + "PaymentType": "Cash" + }, + { + "Id": 19787, + "Region": "EMEA", + "Country": "Moldova (the Republic of)", + "Code": "MD", + "StoreId": "MD-2", + "TransactionDate": "2016-07-09T07:59:40", + "TransactionId": 83450181, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 174, + "CustomerInfo": 61352040, + "PaymentType": "Cash" + }, + { + "Id": 19788, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-5", + "TransactionDate": "2016-12-25T16:12:09", + "TransactionId": 26909916, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 745, + "CustomerInfo": 24909219, + "PaymentType": "Credit Card" + }, + { + "Id": 19789, + "Region": "APAC", + "Country": "Vanuatu", + "Code": "VU", + "StoreId": "VU-3", + "TransactionDate": "2017-11-06T15:14:50", + "TransactionId": 20646966, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 266, + "CustomerInfo": 59912254, + "PaymentType": "Cash" + }, + { + "Id": 19790, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-4", + "TransactionDate": "2019-06-19T13:55:55", + "TransactionId": 81716040, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 253, + "CustomerInfo": 77082260, + "PaymentType": "Cash" + }, + { + "Id": 19791, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2017-03-30T07:54:03", + "TransactionId": 15703767, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 310, + "CustomerInfo": 48009199, + "PaymentType": "Debit Card" + }, + { + "Id": 19792, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2019-07-24T19:27:16", + "TransactionId": 11189911, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 229, + "CustomerInfo": 87379956, + "PaymentType": "Debit Card" + }, + { + "Id": 19793, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-1", + "TransactionDate": "2016-10-17T13:21:39", + "TransactionId": 66999875, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 955, + "CustomerInfo": 8054065, + "PaymentType": "Debit Card" + }, + { + "Id": 19794, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-1", + "TransactionDate": "2019-01-21T10:44:15", + "TransactionId": 9624480, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 770, + "CustomerInfo": 10803153, + "PaymentType": "Credit Card" + }, + { + "Id": 19795, + "Region": "CALA", + "Country": "Chile", + "Code": "CL", + "StoreId": "CL-4", + "TransactionDate": "2018-03-18T17:28:54", + "TransactionId": 25328749, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 99, + "CustomerInfo": 54715784, + "PaymentType": "Debit Card" + }, + { + "Id": 19796, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2017-12-02T13:09:07", + "TransactionId": 97030894, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 913, + "CustomerInfo": 31691622, + "PaymentType": "Credit Card" + }, + { + "Id": 19797, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-1", + "TransactionDate": "2017-04-29T15:40:11", + "TransactionId": 91407155, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 699, + "CustomerInfo": 54192117, + "PaymentType": "Credit Card" + }, + { + "Id": 19798, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-2", + "TransactionDate": "2017-06-06T16:22:22", + "TransactionId": 28367109, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 529, + "CustomerInfo": 34442828, + "PaymentType": "Credit Card" + }, + { + "Id": 19799, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2017-10-20T10:12:26", + "TransactionId": 68231440, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 814, + "CustomerInfo": 44749116, + "PaymentType": "Cash" + }, + { + "Id": 19800, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-3", + "TransactionDate": "2017-11-13T13:05:57", + "TransactionId": 77995492, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 284, + "CustomerInfo": 84483490, + "PaymentType": "Credit Card" + }, + { + "Id": 19801, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2017-07-18T08:49:29", + "TransactionId": 49433389, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 29, + "CustomerInfo": 89781395, + "PaymentType": "Debit Card" + }, + { + "Id": 19802, + "Region": "APAC", + "Country": "Guam", + "Code": "GU", + "StoreId": "GU-4", + "TransactionDate": "2016-11-20T07:34:54", + "TransactionId": 70058508, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 623, + "CustomerInfo": 17383664, + "PaymentType": "Credit Card" + }, + { + "Id": 19803, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-4", + "TransactionDate": "2018-11-18T08:28:11", + "TransactionId": 18943700, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 544, + "CustomerInfo": 68486803, + "PaymentType": "Cash" + }, + { + "Id": 19804, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-4", + "TransactionDate": "2018-01-15T09:10:39", + "TransactionId": 52938860, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 150, + "CustomerInfo": 48471409, + "PaymentType": "Cash" + }, + { + "Id": 19805, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-5", + "TransactionDate": "2019-03-07T13:26:50", + "TransactionId": 99988736, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 103, + "CustomerInfo": 17091977, + "PaymentType": "Credit Card" + }, + { + "Id": 19806, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-3", + "TransactionDate": "2018-12-20T14:28:02", + "TransactionId": 53021009, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 497, + "CustomerInfo": 99148416, + "PaymentType": "Debit Card" + }, + { + "Id": 19807, + "Region": "EMEA", + "Country": "Luxembourg", + "Code": "LU", + "StoreId": "LU-3", + "TransactionDate": "2016-11-02T08:16:22", + "TransactionId": 86895030, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 384, + "CustomerInfo": 54849824, + "PaymentType": "Debit Card" + }, + { + "Id": 19808, + "Region": "EMEA", + "Country": "Albania", + "Code": "AL", + "StoreId": "AL-2", + "TransactionDate": "2018-09-14T08:58:25", + "TransactionId": 13092208, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 195, + "CustomerInfo": 98598044, + "PaymentType": "Cash" + }, + { + "Id": 19809, + "Region": "EMEA", + "Country": "Sweden", + "Code": "SE", + "StoreId": "SE-5", + "TransactionDate": "2017-07-07T08:55:58", + "TransactionId": 65903104, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 763, + "CustomerInfo": 3744727, + "PaymentType": "Credit Card" + }, + { + "Id": 19810, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-07-06T14:35:23", + "TransactionId": 31067634, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 341, + "CustomerInfo": 42775425, + "PaymentType": "Credit Card" + }, + { + "Id": 19811, + "Region": "APAC", + "Country": "Macao", + "Code": "MO", + "StoreId": "MO-1", + "TransactionDate": "2019-05-16T07:15:01", + "TransactionId": 56987391, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 674, + "CustomerInfo": 11201944, + "PaymentType": "Credit Card" + }, + { + "Id": 19812, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-3", + "TransactionDate": "2019-10-06T11:17:23", + "TransactionId": 4811226, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 793, + "CustomerInfo": 45827424, + "PaymentType": "Debit Card" + }, + { + "Id": 19813, + "Region": "EMEA", + "Country": "Ireland", + "Code": "IE", + "StoreId": "IE-5", + "TransactionDate": "2016-12-18T16:50:44", + "TransactionId": 16804233, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 717, + "CustomerInfo": 91750688, + "PaymentType": "Credit Card" + }, + { + "Id": 19814, + "Region": "EMEA", + "Country": "Serbia", + "Code": "RS", + "StoreId": "RS-1", + "TransactionDate": "2018-12-06T07:41:14", + "TransactionId": 28839405, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 52, + "CustomerInfo": 11613055, + "PaymentType": "Credit Card" + }, + { + "Id": 19815, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2019-02-04T12:20:18", + "TransactionId": 96243275, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 862, + "CustomerInfo": 64462521, + "PaymentType": "Credit Card" + }, + { + "Id": 19816, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-5", + "TransactionDate": "2018-07-26T18:35:51", + "TransactionId": 99122494, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 100, + "CustomerInfo": 68680645, + "PaymentType": "Cash" + }, + { + "Id": 19817, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-5", + "TransactionDate": "2016-03-28T09:16:34", + "TransactionId": 4412139, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 861, + "CustomerInfo": 82286125, + "PaymentType": "Credit Card" + }, + { + "Id": 19818, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-1", + "TransactionDate": "2019-12-15T13:06:06", + "TransactionId": 17204541, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 604, + "CustomerInfo": 61779133, + "PaymentType": "Debit Card" + }, + { + "Id": 19819, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-4", + "TransactionDate": "2016-11-12T18:40:45", + "TransactionId": 237375, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 192, + "CustomerInfo": 31657103, + "PaymentType": "Debit Card" + }, + { + "Id": 19820, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2016-01-06T19:05:14", + "TransactionId": 6334107, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 695, + "CustomerInfo": 4271293, + "PaymentType": "Cash" + }, + { + "Id": 19821, + "Region": "APAC", + "Country": "Taiwan (Province of China)", + "Code": "TW", + "StoreId": "TW-2", + "TransactionDate": "2019-11-25T12:47:05", + "TransactionId": 60294289, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 331, + "CustomerInfo": 26069203, + "PaymentType": "Debit Card" + }, + { + "Id": 19822, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-3", + "TransactionDate": "2017-01-10T10:24:58", + "TransactionId": 85301403, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 919, + "CustomerInfo": 61331470, + "PaymentType": "Cash" + }, + { + "Id": 19823, + "Region": "EMEA", + "Country": "Spain", + "Code": "ES", + "StoreId": "ES-3", + "TransactionDate": "2017-12-26T19:50:53", + "TransactionId": 21391271, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 679, + "CustomerInfo": 19428718, + "PaymentType": "Cash" + }, + { + "Id": 19824, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-5", + "TransactionDate": "2019-11-30T14:35:57", + "TransactionId": 98633789, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 34, + "CustomerInfo": 8814576, + "PaymentType": "Debit Card" + }, + { + "Id": 19825, + "Region": "APAC", + "Country": "Indonesia", + "Code": "ID", + "StoreId": "ID-5", + "TransactionDate": "2019-12-30T07:49:09", + "TransactionId": 23354973, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 986, + "CustomerInfo": 81211982, + "PaymentType": "Debit Card" + }, + { + "Id": 19826, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-5", + "TransactionDate": "2017-04-30T08:26:53", + "TransactionId": 43328332, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 330, + "CustomerInfo": 94365291, + "PaymentType": "Credit Card" + }, + { + "Id": 19827, + "Region": "CALA", + "Country": "Brazil", + "Code": "BR", + "StoreId": "BR-3", + "TransactionDate": "2018-04-24T14:48:29", + "TransactionId": 21969784, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 159, + "CustomerInfo": 95687702, + "PaymentType": "Credit Card" + }, + { + "Id": 19828, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-4", + "TransactionDate": "2016-03-13T16:22:05", + "TransactionId": 84662409, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 815, + "CustomerInfo": 65214675, + "PaymentType": "Credit Card" + }, + { + "Id": 19829, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2018-01-20T14:43:52", + "TransactionId": 67288988, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 979, + "CustomerInfo": 2376647, + "PaymentType": "Cash" + }, + { + "Id": 19830, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-4", + "TransactionDate": "2018-01-08T10:42:23", + "TransactionId": 67240885, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 171, + "CustomerInfo": 19564732, + "PaymentType": "Credit Card" + }, + { + "Id": 19831, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2018-02-22T19:40:05", + "TransactionId": 81503659, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 309, + "CustomerInfo": 9105279, + "PaymentType": "Cash" + }, + { + "Id": 19832, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-2", + "TransactionDate": "2016-10-25T15:19:44", + "TransactionId": 19519131, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 575, + "CustomerInfo": 63817315, + "PaymentType": "Debit Card" + }, + { + "Id": 19833, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2017-01-26T13:08:41", + "TransactionId": 38810948, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 599, + "CustomerInfo": 70518904, + "PaymentType": "Cash" + }, + { + "Id": 19834, + "Region": "APAC", + "Country": "Nepal", + "Code": "NP", + "StoreId": "NP-4", + "TransactionDate": "2017-06-12T13:03:04", + "TransactionId": 70274505, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 130, + "CustomerInfo": 12629479, + "PaymentType": "Debit Card" + }, + { + "Id": 19835, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-2", + "TransactionDate": "2018-11-10T12:06:20", + "TransactionId": 62438166, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 440, + "CustomerInfo": 55056307, + "PaymentType": "Debit Card" + }, + { + "Id": 19836, + "Region": "EMEA", + "Country": "Latvia", + "Code": "LV", + "StoreId": "LV-3", + "TransactionDate": "2017-05-14T11:55:24", + "TransactionId": 34607281, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 199, + "CustomerInfo": 53405374, + "PaymentType": "Credit Card" + }, + { + "Id": 19837, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-2", + "TransactionDate": "2017-02-06T16:05:14", + "TransactionId": 47373379, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 457, + "CustomerInfo": 76140528, + "PaymentType": "Cash" + }, + { + "Id": 19838, + "Region": "EMEA", + "Country": "Republic of North Macedonia", + "Code": "MK", + "StoreId": "MK-2", + "TransactionDate": "2016-10-14T17:39:24", + "TransactionId": 54307890, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 165, + "CustomerInfo": 70344078, + "PaymentType": "Credit Card" + }, + { + "Id": 19839, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2018-12-04T08:23:43", + "TransactionId": 51707808, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 78, + "CustomerInfo": 8669181, + "PaymentType": "Debit Card" + }, + { + "Id": 19840, + "Region": "APAC", + "Country": "Syrian Arab Republic", + "Code": "SY", + "StoreId": "SY-1", + "TransactionDate": "2017-12-22T07:55:21", + "TransactionId": 91473194, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 874, + "CustomerInfo": 19691072, + "PaymentType": "Cash" + }, + { + "Id": 19841, + "Region": "APAC", + "Country": "Maldives", + "Code": "MV", + "StoreId": "MV-4", + "TransactionDate": "2018-09-02T19:51:10", + "TransactionId": 9063094, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 271, + "CustomerInfo": 55044272, + "PaymentType": "Debit Card" + }, + { + "Id": 19842, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-3", + "TransactionDate": "2019-09-24T12:37:18", + "TransactionId": 26353642, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 739, + "CustomerInfo": 68050950, + "PaymentType": "Debit Card" + }, + { + "Id": 19843, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-4", + "TransactionDate": "2018-04-07T17:54:32", + "TransactionId": 38418931, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 698, + "CustomerInfo": 46114247, + "PaymentType": "Credit Card" + }, + { + "Id": 19844, + "Region": "NA", + "Country": "Cuba", + "Code": "CU", + "StoreId": "CU-5", + "TransactionDate": "2016-04-15T15:14:07", + "TransactionId": 99161450, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 848, + "CustomerInfo": 17120732, + "PaymentType": "Debit Card" + }, + { + "Id": 19845, + "Region": "APAC", + "Country": "Papua New Guinea", + "Code": "PG", + "StoreId": "PG-4", + "TransactionDate": "2018-01-16T09:24:46", + "TransactionId": 67856463, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 346, + "CustomerInfo": 54362667, + "PaymentType": "Debit Card" + }, + { + "Id": 19846, + "Region": "EMEA", + "Country": "Switzerland", + "Code": "CH", + "StoreId": "CH-2", + "TransactionDate": "2019-10-11T18:18:52", + "TransactionId": 55659946, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 511, + "CustomerInfo": 93911783, + "PaymentType": "Credit Card" + }, + { + "Id": 19847, + "Region": "NA", + "Country": "Virgin Islands (British)", + "Code": "VG", + "StoreId": "VG-1", + "TransactionDate": "2019-08-31T13:17:54", + "TransactionId": 978020, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 945, + "CustomerInfo": 87916688, + "PaymentType": "Credit Card" + }, + { + "Id": 19848, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-1", + "TransactionDate": "2019-08-23T07:23:57", + "TransactionId": 83106268, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 860, + "CustomerInfo": 4450057, + "PaymentType": "Credit Card" + }, + { + "Id": 19849, + "Region": "CALA", + "Country": "Peru", + "Code": "PE", + "StoreId": "PE-4", + "TransactionDate": "2016-01-19T18:38:36", + "TransactionId": 69105676, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 878, + "CustomerInfo": 84906455, + "PaymentType": "Debit Card" + }, + { + "Id": 19850, + "Region": "APAC", + "Country": "Fiji", + "Code": "FJ", + "StoreId": "FJ-4", + "TransactionDate": "2017-10-24T13:22:13", + "TransactionId": 82318620, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 529, + "CustomerInfo": 94326508, + "PaymentType": "Credit Card" + }, + { + "Id": 19851, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-2", + "TransactionDate": "2018-10-23T14:27:45", + "TransactionId": 40618874, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 154, + "CustomerInfo": 30345963, + "PaymentType": "Debit Card" + }, + { + "Id": 19852, + "Region": "APAC", + "Country": "Palestine, State of", + "Code": "PS", + "StoreId": "PS-1", + "TransactionDate": "2016-10-03T10:09:24", + "TransactionId": 97253722, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 287, + "CustomerInfo": 95062084, + "PaymentType": "Debit Card" + }, + { + "Id": 19853, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-2", + "TransactionDate": "2019-08-01T15:59:54", + "TransactionId": 85479442, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 428, + "CustomerInfo": 60319312, + "PaymentType": "Debit Card" + }, + { + "Id": 19854, + "Region": "APAC", + "Country": "Nauru", + "Code": "NR", + "StoreId": "NR-4", + "TransactionDate": "2016-10-31T08:15:13", + "TransactionId": 68287807, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 492, + "CustomerInfo": 1066731, + "PaymentType": "Cash" + }, + { + "Id": 19855, + "Region": "APAC", + "Country": "Pakistan", + "Code": "PK", + "StoreId": "PK-3", + "TransactionDate": "2016-02-19T11:36:06", + "TransactionId": 45696560, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 849, + "CustomerInfo": 24917048, + "PaymentType": "Debit Card" + }, + { + "Id": 19856, + "Region": "APAC", + "Country": "Malaysia", + "Code": "MY", + "StoreId": "MY-3", + "TransactionDate": "2017-04-11T07:51:01", + "TransactionId": 63069375, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 417, + "CustomerInfo": 60961210, + "PaymentType": "Debit Card" + }, + { + "Id": 19857, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-2", + "TransactionDate": "2016-07-31T19:23:05", + "TransactionId": 17034738, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 557, + "CustomerInfo": 57840869, + "PaymentType": "Debit Card" + }, + { + "Id": 19858, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2018-10-01T11:50:30", + "TransactionId": 91227185, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 713, + "CustomerInfo": 49866412, + "PaymentType": "Cash" + }, + { + "Id": 19859, + "Region": "APAC", + "Country": "Cambodia", + "Code": "KH", + "StoreId": "KH-1", + "TransactionDate": "2019-08-26T13:13:18", + "TransactionId": 41973074, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 358, + "CustomerInfo": 55914338, + "PaymentType": "Debit Card" + }, + { + "Id": 19860, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2017-03-17T10:26:50", + "TransactionId": 49456262, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 395, + "CustomerInfo": 23528087, + "PaymentType": "Debit Card" + }, + { + "Id": 19861, + "Region": "APAC", + "Country": "Bahrain", + "Code": "BH", + "StoreId": "BH-4", + "TransactionDate": "2016-10-05T12:09:48", + "TransactionId": 15015471, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 870, + "CustomerInfo": 59619296, + "PaymentType": "Credit Card" + }, + { + "Id": 19862, + "Region": "EMEA", + "Country": "Belarus", + "Code": "BY", + "StoreId": "BY-3", + "TransactionDate": "2016-10-26T11:14:47", + "TransactionId": 67844105, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 514, + "CustomerInfo": 91364812, + "PaymentType": "Debit Card" + }, + { + "Id": 19863, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-3", + "TransactionDate": "2019-01-07T17:55:15", + "TransactionId": 75171515, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 156, + "CustomerInfo": 726040, + "PaymentType": "Debit Card" + }, + { + "Id": 19864, + "Region": "EMEA", + "Country": "Svalbard and Jan Mayen", + "Code": "SJ", + "StoreId": "SJ-2", + "TransactionDate": "2016-09-10T16:09:42", + "TransactionId": 66856275, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 355, + "CustomerInfo": 4003571, + "PaymentType": "Debit Card" + }, + { + "Id": 19865, + "Region": "NA", + "Country": "Dominica", + "Code": "DM", + "StoreId": "DM-3", + "TransactionDate": "2016-04-03T15:37:09", + "TransactionId": 15439105, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 850, + "CustomerInfo": 5163270, + "PaymentType": "Debit Card" + }, + { + "Id": 19866, + "Region": "APAC", + "Country": "Uzbekistan", + "Code": "UZ", + "StoreId": "UZ-4", + "TransactionDate": "2016-09-18T17:59:17", + "TransactionId": 23842560, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 519, + "CustomerInfo": 88118295, + "PaymentType": "Debit Card" + }, + { + "Id": 19867, + "Region": "NA", + "Country": "Cayman Islands (the)", + "Code": "KY", + "StoreId": "KY-3", + "TransactionDate": "2016-11-19T12:00:00", + "TransactionId": 8688502, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 776, + "CustomerInfo": 78939560, + "PaymentType": "Cash" + }, + { + "Id": 19868, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2019-12-08T18:58:28", + "TransactionId": 17735175, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 672, + "CustomerInfo": 57369427, + "PaymentType": "Debit Card" + }, + { + "Id": 19869, + "Region": "CALA", + "Country": "Argentina", + "Code": "AR", + "StoreId": "AR-3", + "TransactionDate": "2018-12-08T13:56:04", + "TransactionId": 27354163, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 538, + "CustomerInfo": 96702408, + "PaymentType": "Credit Card" + }, + { + "Id": 19870, + "Region": "APAC", + "Country": "Israel", + "Code": "IL", + "StoreId": "IL-2", + "TransactionDate": "2017-01-27T13:11:34", + "TransactionId": 22006407, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 887, + "CustomerInfo": 82371117, + "PaymentType": "Cash" + }, + { + "Id": 19871, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-3", + "TransactionDate": "2017-12-23T14:20:07", + "TransactionId": 23127971, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 200, + "CustomerInfo": 93148184, + "PaymentType": "Credit Card" + }, + { + "Id": 19872, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-3", + "TransactionDate": "2018-06-14T07:00:37", + "TransactionId": 10723951, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 534, + "CustomerInfo": 83708878, + "PaymentType": "Cash" + }, + { + "Id": 19873, + "Region": "APAC", + "Country": "Christmas Island", + "Code": "CX", + "StoreId": "CX-2", + "TransactionDate": "2016-11-08T13:41:31", + "TransactionId": 92316377, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 648, + "CustomerInfo": 31954456, + "PaymentType": "Debit Card" + }, + { + "Id": 19874, + "Region": "NA", + "Country": "Barbados", + "Code": "BB", + "StoreId": "BB-5", + "TransactionDate": "2016-05-23T13:14:36", + "TransactionId": 73158827, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 212, + "CustomerInfo": 56503588, + "PaymentType": "Cash" + }, + { + "Id": 19875, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-5", + "TransactionDate": "2019-05-16T07:58:39", + "TransactionId": 87082331, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 204, + "CustomerInfo": 71137116, + "PaymentType": "Debit Card" + }, + { + "Id": 19876, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-11-18T09:18:35", + "TransactionId": 5966648, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 378, + "CustomerInfo": 18717359, + "PaymentType": "Debit Card" + }, + { + "Id": 19877, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2018-12-18T11:19:15", + "TransactionId": 32018697, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 631, + "CustomerInfo": 97862992, + "PaymentType": "Credit Card" + }, + { + "Id": 19878, + "Region": "APAC", + "Country": "Yemen", + "Code": "YE", + "StoreId": "YE-3", + "TransactionDate": "2017-09-09T09:50:59", + "TransactionId": 26767067, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 702, + "CustomerInfo": 52700173, + "PaymentType": "Cash" + }, + { + "Id": 19879, + "Region": "APAC", + "Country": "Georgia", + "Code": "GE", + "StoreId": "GE-1", + "TransactionDate": "2017-03-16T07:58:39", + "TransactionId": 41712548, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 817, + "CustomerInfo": 46075146, + "PaymentType": "Credit Card" + }, + { + "Id": 19880, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2017-10-15T13:14:01", + "TransactionId": 10554544, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 82, + "CustomerInfo": 47660627, + "PaymentType": "Debit Card" + }, + { + "Id": 19881, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-4", + "TransactionDate": "2017-10-22T18:41:37", + "TransactionId": 30780853, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 260, + "CustomerInfo": 76146759, + "PaymentType": "Credit Card" + }, + { + "Id": 19882, + "Region": "NA", + "Country": "Turks and Caicos Islands (the)", + "Code": "TC", + "StoreId": "TC-4", + "TransactionDate": "2019-06-13T08:37:15", + "TransactionId": 29982800, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 961, + "CustomerInfo": 47944771, + "PaymentType": "Cash" + }, + { + "Id": 19883, + "Region": "EMEA", + "Country": "Lithuania", + "Code": "LT", + "StoreId": "LT-1", + "TransactionDate": "2019-12-27T19:12:17", + "TransactionId": 91651166, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 125, + "CustomerInfo": 81098919, + "PaymentType": "Credit Card" + }, + { + "Id": 19884, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-06-15T08:00:06", + "TransactionId": 91301826, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 86, + "CustomerInfo": 98309474, + "PaymentType": "Credit Card" + }, + { + "Id": 19885, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-2", + "TransactionDate": "2016-03-26T18:58:54", + "TransactionId": 13378858, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 117, + "CustomerInfo": 29689311, + "PaymentType": "Cash" + }, + { + "Id": 19886, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-3", + "TransactionDate": "2018-06-27T15:47:05", + "TransactionId": 32138044, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 378, + "CustomerInfo": 28206382, + "PaymentType": "Credit Card" + }, + { + "Id": 19887, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2017-08-16T12:27:04", + "TransactionId": 11779997, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 809, + "CustomerInfo": 17053653, + "PaymentType": "Debit Card" + }, + { + "Id": 19888, + "Region": "APAC", + "Country": "Viet Nam", + "Code": "VN", + "StoreId": "VN-1", + "TransactionDate": "2018-03-20T09:56:53", + "TransactionId": 68589275, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 846, + "CustomerInfo": 90159714, + "PaymentType": "Credit Card" + }, + { + "Id": 19889, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-4", + "TransactionDate": "2017-12-01T17:07:18", + "TransactionId": 92290687, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 259, + "CustomerInfo": 96476071, + "PaymentType": "Credit Card" + }, + { + "Id": 19890, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-4", + "TransactionDate": "2019-04-25T16:34:36", + "TransactionId": 50167720, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 699, + "CustomerInfo": 22713492, + "PaymentType": "Credit Card" + }, + { + "Id": 19891, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-5", + "TransactionDate": "2017-10-12T18:53:08", + "TransactionId": 82164399, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 188, + "CustomerInfo": 74455270, + "PaymentType": "Cash" + }, + { + "Id": 19892, + "Region": "EMEA", + "Country": "Slovenia", + "Code": "SI", + "StoreId": "SI-5", + "TransactionDate": "2018-04-18T08:31:55", + "TransactionId": 81734288, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 760, + "CustomerInfo": 64730358, + "PaymentType": "Debit Card" + }, + { + "Id": 19893, + "Region": "APAC", + "Country": "Bangladesh", + "Code": "BD", + "StoreId": "BD-1", + "TransactionDate": "2016-07-25T12:54:43", + "TransactionId": 67213246, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 764, + "CustomerInfo": 27424782, + "PaymentType": "Credit Card" + }, + { + "Id": 19894, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-5", + "TransactionDate": "2018-06-14T13:49:26", + "TransactionId": 28969583, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 940, + "CustomerInfo": 65388299, + "PaymentType": "Debit Card" + }, + { + "Id": 19895, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-1", + "TransactionDate": "2018-01-22T10:15:01", + "TransactionId": 91969728, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 239, + "CustomerInfo": 76735213, + "PaymentType": "Debit Card" + }, + { + "Id": 19896, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-2", + "TransactionDate": "2019-09-16T08:32:30", + "TransactionId": 52101059, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 329, + "CustomerInfo": 9932054, + "PaymentType": "Cash" + }, + { + "Id": 19897, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-5", + "TransactionDate": "2016-07-27T11:41:00", + "TransactionId": 18073914, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 823, + "CustomerInfo": 64093306, + "PaymentType": "Cash" + }, + { + "Id": 19898, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-3", + "TransactionDate": "2018-07-02T19:35:46", + "TransactionId": 6373554, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 536, + "CustomerInfo": 91351143, + "PaymentType": "Cash" + }, + { + "Id": 19899, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-5", + "TransactionDate": "2019-05-31T08:32:56", + "TransactionId": 86441823, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 209, + "CustomerInfo": 73810791, + "PaymentType": "Debit Card" + }, + { + "Id": 19900, + "Region": "NA", + "Country": "Antigua and Barbuda", + "Code": "AG", + "StoreId": "AG-5", + "TransactionDate": "2016-04-03T17:03:42", + "TransactionId": 18365707, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 937, + "CustomerInfo": 99875794, + "PaymentType": "Cash" + }, + { + "Id": 19901, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-5", + "TransactionDate": "2018-09-22T16:43:24", + "TransactionId": 7885878, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 743, + "CustomerInfo": 71940074, + "PaymentType": "Debit Card" + }, + { + "Id": 19902, + "Region": "NA", + "Country": "Panama", + "Code": "PA", + "StoreId": "PA-3", + "TransactionDate": "2018-09-07T15:18:35", + "TransactionId": 91145743, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 622, + "CustomerInfo": 93205598, + "PaymentType": "Credit Card" + }, + { + "Id": 19903, + "Region": "APAC", + "Country": "China", + "Code": "CN", + "StoreId": "CN-4", + "TransactionDate": "2019-10-23T11:15:39", + "TransactionId": 48769718, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 486, + "CustomerInfo": 86976101, + "PaymentType": "Debit Card" + }, + { + "Id": 19904, + "Region": "APAC", + "Country": "Hong Kong", + "Code": "HK", + "StoreId": "HK-5", + "TransactionDate": "2019-09-26T13:05:31", + "TransactionId": 21609849, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 733, + "CustomerInfo": 33078742, + "PaymentType": "Credit Card" + }, + { + "Id": 19905, + "Region": "EMEA", + "Country": "Greece", + "Code": "GR", + "StoreId": "GR-2", + "TransactionDate": "2018-04-22T07:20:38", + "TransactionId": 32954916, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 543, + "CustomerInfo": 97227756, + "PaymentType": "Credit Card" + }, + { + "Id": 19906, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-2", + "TransactionDate": "2018-12-10T07:39:13", + "TransactionId": 57142965, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 947, + "CustomerInfo": 55444636, + "PaymentType": "Cash" + }, + { + "Id": 19907, + "Region": "EMEA", + "Country": "Estonia", + "Code": "EE", + "StoreId": "EE-5", + "TransactionDate": "2016-06-29T15:35:34", + "TransactionId": 18042782, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 873, + "CustomerInfo": 52404386, + "PaymentType": "Credit Card" + }, + { + "Id": 19908, + "Region": "NA", + "Country": "Anguilla", + "Code": "AI", + "StoreId": "AI-4", + "TransactionDate": "2017-12-26T07:40:22", + "TransactionId": 99469999, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 748, + "CustomerInfo": 45917645, + "PaymentType": "Cash" + }, + { + "Id": 19909, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-2", + "TransactionDate": "2019-10-16T14:24:00", + "TransactionId": 62700022, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 313, + "CustomerInfo": 82754020, + "PaymentType": "Credit Card" + }, + { + "Id": 19910, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-5", + "TransactionDate": "2016-02-16T18:58:28", + "TransactionId": 58883874, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 143, + "CustomerInfo": 97073067, + "PaymentType": "Debit Card" + }, + { + "Id": 19911, + "Region": "APAC", + "Country": "United States Minor Outlying Islands (the)", + "Code": "UM", + "StoreId": "UM-5", + "TransactionDate": "2018-02-17T12:26:12", + "TransactionId": 45728158, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 433, + "CustomerInfo": 99637485, + "PaymentType": "Debit Card" + }, + { + "Id": 19912, + "Region": "APAC", + "Country": "Samoa", + "Code": "WS", + "StoreId": "WS-4", + "TransactionDate": "2017-10-20T08:18:14", + "TransactionId": 63295950, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 233, + "CustomerInfo": 41161489, + "PaymentType": "Debit Card" + }, + { + "Id": 19913, + "Region": "APAC", + "Country": "Singapore", + "Code": "SG", + "StoreId": "SG-2", + "TransactionDate": "2019-10-25T10:14:36", + "TransactionId": 76962447, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 951, + "CustomerInfo": 80448598, + "PaymentType": "Credit Card" + }, + { + "Id": 19914, + "Region": "NA", + "Country": "Saint Martin (French part)", + "Code": "MF", + "StoreId": "MF-4", + "TransactionDate": "2019-01-13T11:04:25", + "TransactionId": 67587000, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 376, + "CustomerInfo": 80718439, + "PaymentType": "Credit Card" + }, + { + "Id": 19915, + "Region": "APAC", + "Country": "Azerbaijan", + "Code": "AZ", + "StoreId": "AZ-1", + "TransactionDate": "2019-07-16T14:02:50", + "TransactionId": 44419070, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 817, + "CustomerInfo": 53844541, + "PaymentType": "Credit Card" + }, + { + "Id": 19916, + "Region": "EMEA", + "Country": "Faroe Islands (the)", + "Code": "FO", + "StoreId": "FO-3", + "TransactionDate": "2018-03-29T10:54:20", + "TransactionId": 1954835, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 303, + "CustomerInfo": 25483215, + "PaymentType": "Cash" + }, + { + "Id": 19917, + "Region": "NA", + "Country": "Saint Kitts and Nevis", + "Code": "KN", + "StoreId": "KN-2", + "TransactionDate": "2018-07-23T18:32:24", + "TransactionId": 80760422, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 946, + "CustomerInfo": 34025004, + "PaymentType": "Cash" + }, + { + "Id": 19918, + "Region": "EMEA", + "Country": "Bosnia and Herzegovina", + "Code": "BA", + "StoreId": "BA-3", + "TransactionDate": "2018-05-17T16:31:18", + "TransactionId": 52454067, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 166, + "CustomerInfo": 10262609, + "PaymentType": "Cash" + }, + { + "Id": 19919, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-2", + "TransactionDate": "2019-01-01T16:05:05", + "TransactionId": 76625962, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 49, + "CustomerInfo": 12470329, + "PaymentType": "Credit Card" + }, + { + "Id": 19920, + "Region": "EMEA", + "Country": "Gibraltar", + "Code": "GI", + "StoreId": "GI-1", + "TransactionDate": "2017-05-31T08:56:50", + "TransactionId": 29101688, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 173, + "CustomerInfo": 34669050, + "PaymentType": "Cash" + }, + { + "Id": 19921, + "Region": "NA", + "Country": "Montserrat", + "Code": "MS", + "StoreId": "MS-3", + "TransactionDate": "2017-10-20T16:16:36", + "TransactionId": 22702530, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 307, + "CustomerInfo": 89426509, + "PaymentType": "Credit Card" + }, + { + "Id": 19922, + "Region": "EMEA", + "Country": "Iceland", + "Code": "IS", + "StoreId": "IS-1", + "TransactionDate": "2019-04-15T13:49:00", + "TransactionId": 43706209, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 471, + "CustomerInfo": 52531804, + "PaymentType": "Debit Card" + }, + { + "Id": 19923, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-3", + "TransactionDate": "2016-07-14T09:28:31", + "TransactionId": 39365121, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 722, + "CustomerInfo": 38639666, + "PaymentType": "Cash" + }, + { + "Id": 19924, + "Region": "APAC", + "Country": "Qatar", + "Code": "QA", + "StoreId": "QA-2", + "TransactionDate": "2019-04-07T12:20:53", + "TransactionId": 48592481, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 258, + "CustomerInfo": 11756634, + "PaymentType": "Cash" + }, + { + "Id": 19925, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-2", + "TransactionDate": "2018-08-19T12:24:55", + "TransactionId": 84009325, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 540, + "CustomerInfo": 30372329, + "PaymentType": "Credit Card" + }, + { + "Id": 19926, + "Region": "APAC", + "Country": "United Arab Emirates (the)", + "Code": "AE", + "StoreId": "AE-4", + "TransactionDate": "2019-09-27T11:53:48", + "TransactionId": 36950654, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 829, + "CustomerInfo": 34229973, + "PaymentType": "Credit Card" + }, + { + "Id": 19927, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-3", + "TransactionDate": "2019-03-31T19:10:08", + "TransactionId": 56272574, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 72, + "CustomerInfo": 74171700, + "PaymentType": "Cash" + }, + { + "Id": 19928, + "Region": "NA", + "Country": "Belize", + "Code": "BZ", + "StoreId": "BZ-2", + "TransactionDate": "2017-09-27T09:21:19", + "TransactionId": 52707728, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 592, + "CustomerInfo": 72650728, + "PaymentType": "Cash" + }, + { + "Id": 19929, + "Region": "APAC", + "Country": "Cook Islands (the)", + "Code": "CK", + "StoreId": "CK-2", + "TransactionDate": "2018-03-16T19:34:19", + "TransactionId": 61877310, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 242, + "CustomerInfo": 14475184, + "PaymentType": "Credit Card" + }, + { + "Id": 19930, + "Region": "NA", + "Country": "Dominican Republic (the)", + "Code": "DO", + "StoreId": "DO-3", + "TransactionDate": "2016-03-26T07:24:32", + "TransactionId": 35766522, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 660, + "CustomerInfo": 47675539, + "PaymentType": "Credit Card" + }, + { + "Id": 19931, + "Region": "EMEA", + "Country": "Hungary", + "Code": "HU", + "StoreId": "HU-3", + "TransactionDate": "2016-08-24T10:00:12", + "TransactionId": 67019312, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 888, + "CustomerInfo": 26993248, + "PaymentType": "Cash" + }, + { + "Id": 19932, + "Region": "APAC", + "Country": "Lao People\u0027s Democratic Republic (the)", + "Code": "LA", + "StoreId": "LA-3", + "TransactionDate": "2016-03-23T17:25:35", + "TransactionId": 35176874, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 834, + "CustomerInfo": 4360975, + "PaymentType": "Credit Card" + }, + { + "Id": 19933, + "Region": "NA", + "Country": "Saint Barth\uFFFDlemy", + "Code": "BL", + "StoreId": "BL-2", + "TransactionDate": "2019-01-28T13:54:55", + "TransactionId": 46127913, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 45, + "CustomerInfo": 20050205, + "PaymentType": "Debit Card" + }, + { + "Id": 19934, + "Region": "EMEA", + "Country": "Malta", + "Code": "MT", + "StoreId": "MT-1", + "TransactionDate": "2017-12-17T17:08:36", + "TransactionId": 33091435, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 436, + "CustomerInfo": 55684611, + "PaymentType": "Credit Card" + }, + { + "Id": 19935, + "Region": "NA", + "Country": "Mexico", + "Code": "MX", + "StoreId": "MX-5", + "TransactionDate": "2019-12-04T18:21:36", + "TransactionId": 89059125, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 921, + "CustomerInfo": 433655, + "PaymentType": "Credit Card" + }, + { + "Id": 19936, + "Region": "APAC", + "Country": "Tokelau", + "Code": "TK", + "StoreId": "TK-4", + "TransactionDate": "2018-11-12T19:11:00", + "TransactionId": 2479276, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Tea", + "Amount": 2, + "PromotionId": 106, + "CustomerInfo": 20116222, + "PaymentType": "Debit Card" + }, + { + "Id": 19937, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-4", + "TransactionDate": "2017-11-24T07:36:37", + "TransactionId": 79226023, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 430, + "CustomerInfo": 96802082, + "PaymentType": "Credit Card" + }, + { + "Id": 19938, + "Region": "APAC", + "Country": "Philippines (the)", + "Code": "PH", + "StoreId": "PH-2", + "TransactionDate": "2017-09-10T15:21:36", + "TransactionId": 7356040, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 293, + "CustomerInfo": 36792744, + "PaymentType": "Debit Card" + }, + { + "Id": 19939, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-2", + "TransactionDate": "2018-02-05T13:05:05", + "TransactionId": 33833408, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 454, + "CustomerInfo": 44892237, + "PaymentType": "Credit Card" + }, + { + "Id": 19940, + "Region": "EMEA", + "Country": "Isle of Man", + "Code": "IM", + "StoreId": "IM-1", + "TransactionDate": "2018-05-15T14:27:01", + "TransactionId": 7083923, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 600, + "CustomerInfo": 7529380, + "PaymentType": "Debit Card" + }, + { + "Id": 19941, + "Region": "APAC", + "Country": "Niue", + "Code": "NU", + "StoreId": "NU-3", + "TransactionDate": "2019-01-21T15:37:44", + "TransactionId": 44703720, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 35, + "CustomerInfo": 39927429, + "PaymentType": "Debit Card" + }, + { + "Id": 19942, + "Region": "APAC", + "Country": "Mongolia", + "Code": "MN", + "StoreId": "MN-1", + "TransactionDate": "2018-09-12T08:22:42", + "TransactionId": 12881330, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 161, + "CustomerInfo": 65177817, + "PaymentType": "Credit Card" + }, + { + "Id": 19943, + "Region": "APAC", + "Country": "Bhutan", + "Code": "BT", + "StoreId": "BT-2", + "TransactionDate": "2016-09-30T07:17:02", + "TransactionId": 47864619, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 2, + "CustomerInfo": 16282541, + "PaymentType": "Debit Card" + }, + { + "Id": 19944, + "Region": "APAC", + "Country": "Pitcairn", + "Code": "PN", + "StoreId": "PN-2", + "TransactionDate": "2017-02-22T16:35:37", + "TransactionId": 24557599, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 704, + "CustomerInfo": 84479876, + "PaymentType": "Cash" + }, + { + "Id": 19945, + "Region": "EMEA", + "Country": "Portugal", + "Code": "PT", + "StoreId": "PT-3", + "TransactionDate": "2018-05-30T07:41:48", + "TransactionId": 71109384, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 837, + "CustomerInfo": 37495265, + "PaymentType": "Cash" + }, + { + "Id": 19946, + "Region": "EMEA", + "Country": "Bulgaria", + "Code": "BG", + "StoreId": "BG-3", + "TransactionDate": "2018-02-09T10:49:35", + "TransactionId": 32269819, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 374, + "CustomerInfo": 17426281, + "PaymentType": "Cash" + }, + { + "Id": 19947, + "Region": "EMEA", + "Country": "United Kingdom of Great Britain and Northern Ireland (the)", + "Code": "GB", + "StoreId": "GB-5", + "TransactionDate": "2017-12-22T18:53:51", + "TransactionId": 78806281, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 536, + "CustomerInfo": 68669237, + "PaymentType": "Credit Card" + }, + { + "Id": 19948, + "Region": "NA", + "Country": "Grenada", + "Code": "GD", + "StoreId": "GD-5", + "TransactionDate": "2019-10-15T18:45:48", + "TransactionId": 18829440, + "ProductGroup": "Consumer Drink", + "Sku": "Black Coffee", + "Amount": 3, + "PromotionId": 997, + "CustomerInfo": 90423309, + "PaymentType": "Credit Card" + }, + { + "Id": 19949, + "Region": "APAC", + "Country": "Lebanon", + "Code": "LB", + "StoreId": "LB-3", + "TransactionDate": "2019-12-06T11:18:06", + "TransactionId": 67555254, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 168, + "CustomerInfo": 28856891, + "PaymentType": "Debit Card" + }, + { + "Id": 19950, + "Region": "EMEA", + "Country": "San Marino", + "Code": "SM", + "StoreId": "SM-2", + "TransactionDate": "2017-04-16T13:51:10", + "TransactionId": 42225383, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 399, + "CustomerInfo": 52871616, + "PaymentType": "Debit Card" + }, + { + "Id": 19951, + "Region": "NA", + "Country": "Saint Vincent and the Grenadines", + "Code": "VC", + "StoreId": "VC-4", + "TransactionDate": "2016-10-29T08:08:53", + "TransactionId": 52895077, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 491, + "CustomerInfo": 32300430, + "PaymentType": "Cash" + }, + { + "Id": 19952, + "Region": "NA", + "Country": "El Salvador", + "Code": "SV", + "StoreId": "SV-2", + "TransactionDate": "2017-08-23T09:38:36", + "TransactionId": 12596861, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 99, + "CustomerInfo": 50521689, + "PaymentType": "Cash" + }, + { + "Id": 19953, + "Region": "EMEA", + "Country": "Turkey", + "Code": "TR", + "StoreId": "TR-2", + "TransactionDate": "2018-08-18T19:39:30", + "TransactionId": 49280623, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 428, + "CustomerInfo": 99353848, + "PaymentType": "Credit Card" + }, + { + "Id": 19954, + "Region": "NA", + "Country": "Greenland", + "Code": "GL", + "StoreId": "GL-1", + "TransactionDate": "2016-11-27T15:54:17", + "TransactionId": 75050145, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 100, + "CustomerInfo": 84050776, + "PaymentType": "Cash" + }, + { + "Id": 19955, + "Region": "APAC", + "Country": "Cocos (Keeling) Islands (the)", + "Code": "CC", + "StoreId": "CC-1", + "TransactionDate": "2016-06-13T08:11:46", + "TransactionId": 909139, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 778, + "CustomerInfo": 73063735, + "PaymentType": "Debit Card" + }, + { + "Id": 19956, + "Region": "EMEA", + "Country": "Jersey", + "Code": "JE", + "StoreId": "JE-1", + "TransactionDate": "2016-03-14T18:30:58", + "TransactionId": 6923085, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 267, + "CustomerInfo": 87528436, + "PaymentType": "Credit Card" + }, + { + "Id": 19957, + "Region": "EMEA", + "Country": "Liechtenstein", + "Code": "LI", + "StoreId": "LI-4", + "TransactionDate": "2018-01-24T14:42:35", + "TransactionId": 77936103, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 130, + "CustomerInfo": 41523593, + "PaymentType": "Credit Card" + }, + { + "Id": 19958, + "Region": "APAC", + "Country": "Japan", + "Code": "JP", + "StoreId": "JP-4", + "TransactionDate": "2019-04-14T17:57:33", + "TransactionId": 71957991, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 529, + "CustomerInfo": 73710677, + "PaymentType": "Cash" + }, + { + "Id": 19959, + "Region": "APAC", + "Country": "Thailand", + "Code": "TH", + "StoreId": "TH-4", + "TransactionDate": "2017-07-02T19:45:50", + "TransactionId": 88304116, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 587, + "CustomerInfo": 63897757, + "PaymentType": "Debit Card" + }, + { + "Id": 19960, + "Region": "APAC", + "Country": "Kuwait", + "Code": "KW", + "StoreId": "KW-2", + "TransactionDate": "2016-11-15T19:40:48", + "TransactionId": 7498987, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 842, + "CustomerInfo": 195585, + "PaymentType": "Debit Card" + }, + { + "Id": 19961, + "Region": "EMEA", + "Country": "Denmark", + "Code": "DK", + "StoreId": "DK-4", + "TransactionDate": "2017-02-28T18:00:26", + "TransactionId": 75363096, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 843, + "CustomerInfo": 98622998, + "PaymentType": "Credit Card" + }, + { + "Id": 19962, + "Region": "CALA", + "Country": "Falkland Islands (the) [Malvinas]", + "Code": "FK", + "StoreId": "FK-1", + "TransactionDate": "2019-02-04T14:26:27", + "TransactionId": 91756250, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 440, + "CustomerInfo": 76857245, + "PaymentType": "Credit Card" + }, + { + "Id": 19963, + "Region": "APAC", + "Country": "Brunei Darussalam", + "Code": "BN", + "StoreId": "BN-1", + "TransactionDate": "2019-09-22T14:50:12", + "TransactionId": 72750288, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 519, + "CustomerInfo": 6879076, + "PaymentType": "Cash" + }, + { + "Id": 19964, + "Region": "APAC", + "Country": "Australia", + "Code": "AU", + "StoreId": "AU-2", + "TransactionDate": "2018-04-28T07:14:44", + "TransactionId": 82885355, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 949, + "CustomerInfo": 61123607, + "PaymentType": "Debit Card" + }, + { + "Id": 19965, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2019-01-25T12:38:01", + "TransactionId": 35223663, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 175, + "CustomerInfo": 41136243, + "PaymentType": "Credit Card" + }, + { + "Id": 19966, + "Region": "NA", + "Country": "Bermuda", + "Code": "BM", + "StoreId": "BM-4", + "TransactionDate": "2018-09-13T07:10:42", + "TransactionId": 46954772, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 606, + "CustomerInfo": 44787134, + "PaymentType": "Cash" + }, + { + "Id": 19967, + "Region": "APAC", + "Country": "Jordan", + "Code": "JO", + "StoreId": "JO-3", + "TransactionDate": "2017-12-18T16:50:10", + "TransactionId": 11951995, + "ProductGroup": "Whole Product", + "Sku": "Green Tea", + "Amount": 12, + "PromotionId": 534, + "CustomerInfo": 56293358, + "PaymentType": "Credit Card" + }, + { + "Id": 19968, + "Region": "APAC", + "Country": "New Zealand", + "Code": "NZ", + "StoreId": "NZ-4", + "TransactionDate": "2016-04-16T11:29:02", + "TransactionId": 327355, + "ProductGroup": "Consumer Drink", + "Sku": "Espresso", + "Amount": 7, + "PromotionId": 448, + "CustomerInfo": 26936707, + "PaymentType": "Credit Card" + }, + { + "Id": 19969, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-4", + "TransactionDate": "2017-01-10T07:56:30", + "TransactionId": 43077488, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 940, + "CustomerInfo": 56214166, + "PaymentType": "Debit Card" + }, + { + "Id": 19970, + "Region": "NA", + "Country": "Saint Lucia", + "Code": "LC", + "StoreId": "LC-2", + "TransactionDate": "2019-03-10T10:51:53", + "TransactionId": 96409800, + "ProductGroup": "Accessory", + "Sku": "Store T-Shirt", + "Amount": 20, + "PromotionId": 338, + "CustomerInfo": 29578093, + "PaymentType": "Credit Card" + }, + { + "Id": 19971, + "Region": "EMEA", + "Country": "Austria", + "Code": "AT", + "StoreId": "AT-5", + "TransactionDate": "2017-05-17T10:43:41", + "TransactionId": 38897867, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 97, + "CustomerInfo": 62817546, + "PaymentType": "Debit Card" + }, + { + "Id": 19972, + "Region": "APAC", + "Country": "Korea (the Democratic People\u0027s Republic of)", + "Code": "KP", + "StoreId": "KP-3", + "TransactionDate": "2017-11-15T15:06:20", + "TransactionId": 47157028, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 557, + "CustomerInfo": 61629936, + "PaymentType": "Cash" + }, + { + "Id": 19973, + "Region": "EMEA", + "Country": "Ukraine", + "Code": "UA", + "StoreId": "UA-3", + "TransactionDate": "2017-04-11T10:07:24", + "TransactionId": 62299895, + "ProductGroup": "Accessory", + "Sku": "Store Hat", + "Amount": 15, + "PromotionId": 301, + "CustomerInfo": 87287835, + "PaymentType": "Cash" + }, + { + "Id": 19974, + "Region": "APAC", + "Country": "India", + "Code": "IN", + "StoreId": "IN-3", + "TransactionDate": "2018-04-07T11:39:33", + "TransactionId": 81876886, + "ProductGroup": "Consumer Drink", + "Sku": "Cappuccino", + "Amount": 4, + "PromotionId": 982, + "CustomerInfo": 10147197, + "PaymentType": "Cash" + }, + { + "Id": 19975, + "Region": "APAC", + "Country": "Palau", + "Code": "PW", + "StoreId": "PW-4", + "TransactionDate": "2018-02-10T17:21:59", + "TransactionId": 52937530, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 246, + "CustomerInfo": 93852701, + "PaymentType": "Cash" + }, + { + "Id": 19976, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-4", + "TransactionDate": "2019-06-22T17:07:35", + "TransactionId": 32994949, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 538, + "CustomerInfo": 9850941, + "PaymentType": "Credit Card" + }, + { + "Id": 19977, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-4", + "TransactionDate": "2017-07-13T19:41:14", + "TransactionId": 70192177, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 502, + "CustomerInfo": 11735627, + "PaymentType": "Credit Card" + }, + { + "Id": 19978, + "Region": "EMEA", + "Country": "Poland", + "Code": "PL", + "StoreId": "PL-5", + "TransactionDate": "2016-07-03T07:41:23", + "TransactionId": 71657662, + "ProductGroup": "Accessory", + "Sku": "Store Koozie (5 pack)", + "Amount": 5, + "PromotionId": 410, + "CustomerInfo": 82712868, + "PaymentType": "Debit Card" + }, + { + "Id": 19979, + "Region": "NA", + "Country": "Nicaragua", + "Code": "NI", + "StoreId": "NI-1", + "TransactionDate": "2019-08-03T18:21:53", + "TransactionId": 50957314, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 76, + "CustomerInfo": 94541622, + "PaymentType": "Credit Card" + }, + { + "Id": 19980, + "Region": "APAC", + "Country": "New Caledonia", + "Code": "NC", + "StoreId": "NC-2", + "TransactionDate": "2019-05-30T18:13:06", + "TransactionId": 63955180, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 682, + "CustomerInfo": 53488353, + "PaymentType": "Credit Card" + }, + { + "Id": 19981, + "Region": "NA", + "Country": "Guatemala", + "Code": "GT", + "StoreId": "GT-4", + "TransactionDate": "2017-08-02T07:56:56", + "TransactionId": 30108700, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 282, + "CustomerInfo": 24574338, + "PaymentType": "Credit Card" + }, + { + "Id": 19982, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-5", + "TransactionDate": "2017-01-18T13:33:36", + "TransactionId": 9217068, + "ProductGroup": "Consumer Food", + "Sku": "Croissant", + "Amount": 2, + "PromotionId": 696, + "CustomerInfo": 55199487, + "PaymentType": "Cash" + }, + { + "Id": 19983, + "Region": "CALA", + "Country": "Guyana", + "Code": "GY", + "StoreId": "GY-1", + "TransactionDate": "2017-12-04T08:30:03", + "TransactionId": 80251700, + "ProductGroup": "Consumer Drink", + "Sku": "Hot Chocolate", + "Amount": 2, + "PromotionId": 687, + "CustomerInfo": 16746644, + "PaymentType": "Credit Card" + }, + { + "Id": 19984, + "Region": "APAC", + "Country": "Cyprus", + "Code": "CY", + "StoreId": "CY-5", + "TransactionDate": "2018-02-19T19:35:54", + "TransactionId": 93859629, + "ProductGroup": "Consumer Food", + "Sku": "Donut", + "Amount": 1, + "PromotionId": 63, + "CustomerInfo": 54758808, + "PaymentType": "Debit Card" + }, + { + "Id": 19985, + "Region": "EMEA", + "Country": "Belgium", + "Code": "BE", + "StoreId": "BE-5", + "TransactionDate": "2019-12-27T08:23:51", + "TransactionId": 5284935, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Coffee", + "Amount": 3.5, + "PromotionId": 685, + "CustomerInfo": 32161772, + "PaymentType": "Credit Card" + }, + { + "Id": 19986, + "Region": "APAC", + "Country": "Kiribati", + "Code": "KI", + "StoreId": "KI-1", + "TransactionDate": "2017-12-02T08:22:42", + "TransactionId": 48420267, + "ProductGroup": "Consumer Food", + "Sku": "Muffin", + "Amount": 2, + "PromotionId": 403, + "CustomerInfo": 33994174, + "PaymentType": "Cash" + }, + { + "Id": 19987, + "Region": "APAC", + "Country": "American Samoa", + "Code": "AS", + "StoreId": "AS-5", + "TransactionDate": "2017-12-02T09:21:45", + "TransactionId": 79310388, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 272, + "CustomerInfo": 77825210, + "PaymentType": "Cash" + }, + { + "Id": 19988, + "Region": "APAC", + "Country": "Micronesia (Federated States of)", + "Code": "FM", + "StoreId": "FM-1", + "TransactionDate": "2016-07-13T14:15:56", + "TransactionId": 83748008, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 733, + "CustomerInfo": 1339633, + "PaymentType": "Credit Card" + }, + { + "Id": 19989, + "Region": "CALA", + "Country": "Ecuador", + "Code": "EC", + "StoreId": "EC-3", + "TransactionDate": "2018-08-26T13:28:34", + "TransactionId": 42051826, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 858, + "CustomerInfo": 23720538, + "PaymentType": "Cash" + }, + { + "Id": 19990, + "Region": "APAC", + "Country": "Korea (the Republic of)", + "Code": "KR", + "StoreId": "KR-1", + "TransactionDate": "2018-04-28T08:43:52", + "TransactionId": 12825453, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 22, + "CustomerInfo": 42785628, + "PaymentType": "Debit Card" + }, + { + "Id": 19991, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-2", + "TransactionDate": "2017-06-10T09:24:12", + "TransactionId": 38248167, + "ProductGroup": "Whole Product", + "Sku": "Classic Roast Beans", + "Amount": 15, + "PromotionId": 668, + "CustomerInfo": 43233890, + "PaymentType": "Debit Card" + }, + { + "Id": 19992, + "Region": "APAC", + "Country": "Oman", + "Code": "OM", + "StoreId": "OM-5", + "TransactionDate": "2017-02-21T18:43:12", + "TransactionId": 31827553, + "ProductGroup": "Whole Product", + "Sku": "French Vanilla K-Cups", + "Amount": 13, + "PromotionId": 188, + "CustomerInfo": 83197452, + "PaymentType": "Debit Card" + }, + { + "Id": 19993, + "Region": "NA", + "Country": "Aruba", + "Code": "AW", + "StoreId": "AW-3", + "TransactionDate": "2019-11-02T18:20:27", + "TransactionId": 24720778, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 810, + "CustomerInfo": 52480514, + "PaymentType": "Cash" + }, + { + "Id": 19994, + "Region": "EMEA", + "Country": "Montenegro", + "Code": "ME", + "StoreId": "ME-5", + "TransactionDate": "2018-11-05T09:24:29", + "TransactionId": 26322697, + "ProductGroup": "Consumer Food", + "Sku": "Bagel", + "Amount": 0.99, + "PromotionId": 251, + "CustomerInfo": 41170457, + "PaymentType": "Cash" + }, + { + "Id": 19995, + "Region": "NA", + "Country": "Canada", + "Code": "CA", + "StoreId": "CA-2", + "TransactionDate": "2018-11-26T13:28:42", + "TransactionId": 77449692, + "ProductGroup": "Consumer Food", + "Sku": "Signature Sandwich", + "Amount": 7, + "PromotionId": 800, + "CustomerInfo": 52066713, + "PaymentType": "Cash" + }, + { + "Id": 19996, + "Region": "APAC", + "Country": "Kazakhstan", + "Code": "KZ", + "StoreId": "KZ-4", + "TransactionDate": "2018-10-07T12:50:41", + "TransactionId": 5698984, + "ProductGroup": "Consumer Drink", + "Sku": "Iced Tea", + "Amount": 1.5, + "PromotionId": 516, + "CustomerInfo": 13429433, + "PaymentType": "Cash" + }, + { + "Id": 19997, + "Region": "EMEA", + "Country": "Russian Federation (the)", + "Code": "RU", + "StoreId": "RU-3", + "TransactionDate": "2017-04-01T09:46:22", + "TransactionId": 4282711, + "ProductGroup": "Accessory", + "Sku": "Gift Card", + "Amount": 25, + "PromotionId": 605, + "CustomerInfo": 11112111, + "PaymentType": "Debit Card" + } +] diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/settings/cloud.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/settings/cloud.svg new file mode 100644 index 00000000..f5d1b24e --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/settings/cloud.svg @@ -0,0 +1,3 @@ + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/background.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/background.svg new file mode 100644 index 00000000..e173e82b --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/background.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/bgr-image.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/bgr-image.svg new file mode 100644 index 00000000..96a8f436 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/bgr-image.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka.svg new file mode 100644 index 00000000..eb5f70d3 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka_kendo.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka_kendo.svg new file mode 100644 index 00000000..6d2dddeb --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/kendoka_kendo.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/signin.svg b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/signin.svg new file mode 100644 index 00000000..ae409d05 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/assets/signin/signin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 00000000..edfbbb03 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.0.2 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1050;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css.map b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 00000000..3fe6cda5 --- /dev/null +++ b/common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"iBAAA;;;;;ACAA,MAGI,UAAA,QAAA,YAAA,QAAA,YAAA,QAAA,UAAA,QAAA,SAAA,QAAA,YAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAAA,UAAA,QAAA,WAAA,KAAA,UAAA,QAAA,eAAA,QAIA,aAAA,QAAA,eAAA,QAAA,aAAA,QAAA,UAAA,QAAA,aAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAKF,qBAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,oBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UACA,cAAA,2ECCF,ECqBA,QADA,SDjBE,WAAA,WAaE,8CAJJ,MAKM,gBAAA,QAaN,KACE,OAAA,EACA,YAAA,0BEsPI,UAAA,KFpPJ,YAAA,IACA,YAAA,IACA,MAAA,QAEA,iBAAA,KACA,yBAAA,KACA,4BAAA,YASF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,IAAA,IAAA,IAAA,IAAA,IAAA,IAAA,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,IAAA,GE4MQ,UAAA,uBAlKJ,0BF1CJ,IAAA,GEmNQ,UAAA,QF9MR,IAAA,GEuMQ,UAAA,sBAlKJ,0BFrCJ,IAAA,GE8MQ,UAAA,MFzMR,IAAA,GEkMQ,UAAA,oBAlKJ,0BFhCJ,IAAA,GEyMQ,UAAA,SFpMR,IAAA,GE6LQ,UAAA,sBAlKJ,0BF3BJ,IAAA,GEoMQ,UAAA,QF/LR,IAAA,GEoLM,UAAA,QF/KN,IAAA,GE+KM,UAAA,KFpKN,EACE,WAAA,EACA,cAAA,KCJF,6BDeA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GCnBA,GDqBE,aAAA,KCfF,GDkBA,GCnBA,GDsBE,WAAA,EACA,cAAA,KAGF,MClBA,MACA,MAFA,MDuBE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,EC7BA,OD+BE,YAAA,OAQF,OAAA,MEgFM,UAAA,OFzEN,MAAA,KACE,QAAA,KACA,iBAAA,QASF,IC3CA,ID6CE,SAAA,SE4DI,UAAA,MF1DJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KC/CJ,KACA,IDqDA,ICpDA,KDwDE,YAAA,yBEkBI,UAAA,IFhBJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEII,UAAA,OFCJ,SEDI,UAAA,QFGF,MAAA,QACA,WAAA,OAIJ,KERM,UAAA,OFUJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,MEpBI,UAAA,OFsBJ,MAAA,KACA,iBAAA,QGzSE,cAAA,MH4SF,QACE,QAAA,EE3BE,UAAA,IF6BF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICxEA,ID0EE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBC/EF,MAGA,GAFA,MAGA,GD8EA,MChFA,GDsFE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,EC7FF,ODkGA,MChGA,SADA,OAEA,SDoGE,OAAA,EACA,YAAA,QE1HI,UAAA,QF4HJ,YAAA,QAIF,OCnGA,ODqGE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KCzGF,cACA,aACA,cD+GA,OAIE,mBAAA,OC/GF,6BACA,4BACA,6BDgHI,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,ME/MM,UAAA,sBFkNN,YAAA,QEpXE,0BF6WJ,OEpMQ,UAAA,QF6MN,SACE,MAAA,KCvHJ,kCD8HA,uCC/HA,mCADA,+BAGA,oCAJA,6BAKA,mCDmIE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA,eI/kBF,MFyQM,UAAA,QEvQJ,YAAA,IAKA,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QEvPR,eCrDE,aAAA,EACA,WAAA,KDyDF,aC1DE,aAAA,EACA,WAAA,KD4DF,kBACE,QAAA,aAEA,mCACE,aAAA,MAUJ,YFsNM,UAAA,OEpNJ,eAAA,UAIF,YACE,cAAA,KF+MI,UAAA,QE5MJ,wBACE,cAAA,EAIJ,mBACE,WAAA,MACA,cAAA,KFqMI,UAAA,OEnMJ,MAAA,QAEA,2BACE,QAAA,KE9FJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QHGE,cAAA,OIRF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBJ+PM,UAAA,OI7PJ,MAAA,QElCA,WP0kBF,iBAGA,cACA,cACA,cAHA,cADA,eQ9kBE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBF5CE,WAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cAAA,cACE,UAAA,OE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QGfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCYF,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eFMA,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,gBFMA,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,gBFMA,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,gBFMA,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,gBFMA,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,gBAqCE,UAtDJ,KAAA,EAAA,EAAA,KACA,MAAA,KA2DQ,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,YAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,OAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,QAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,QAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,QAtEN,KAAA,EAAA,EAAA,KACA,MAAA,KA6EQ,UA9DV,YAAA,YA8DU,UA9DV,YAAA,aA8DU,UA9DV,YAAA,IA8DU,UA9DV,YAAA,aA8DU,UA9DV,YAAA,aA8DU,UA9DV,YAAA,IA8DU,UA9DV,YAAA,aA8DU,UA9DV,YAAA,aA8DU,UA9DV,YAAA,IA8DU,WA9DV,YAAA,aA8DU,WA9DV,YAAA,aAyEM,KX82BR,MW52BU,cAAA,EAGF,KX82BR,MW52BU,cAAA,EAPF,KXw3BR,MWt3BU,cAAA,QAGF,KXw3BR,MWt3BU,cAAA,QAPF,KXk4BR,MWh4BU,cAAA,OAGF,KXk4BR,MWh4BU,cAAA,OAPF,KX44BR,MW14BU,cAAA,KAGF,KX44BR,MW14BU,cAAA,KAPF,KXs5BR,MWp5BU,cAAA,OAGF,KXs5BR,MWp5BU,cAAA,OAPF,KXg6BR,MW95BU,cAAA,KAGF,KXg6BR,MW95BU,cAAA,KF/DN,yBE+BE,aAtDJ,KAAA,EAAA,EAAA,KACA,MAAA,KA2DQ,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,YAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,KA6EQ,aA9DV,YAAA,EA8DU,aA9DV,YAAA,YA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,aAyEM,QX4hCR,SW1hCU,cAAA,EAGF,QX4hCR,SW1hCU,cAAA,EAPF,QXsiCR,SWpiCU,cAAA,QAGF,QXsiCR,SWpiCU,cAAA,QAPF,QXgjCR,SW9iCU,cAAA,OAGF,QXgjCR,SW9iCU,cAAA,OAPF,QX0jCR,SWxjCU,cAAA,KAGF,QX0jCR,SWxjCU,cAAA,KAPF,QXokCR,SWlkCU,cAAA,OAGF,QXokCR,SWlkCU,cAAA,OAPF,QX8kCR,SW5kCU,cAAA,KAGF,QX8kCR,SW5kCU,cAAA,MF/DN,yBE+BE,aAtDJ,KAAA,EAAA,EAAA,KACA,MAAA,KA2DQ,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,YAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,KA6EQ,aA9DV,YAAA,EA8DU,aA9DV,YAAA,YA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,aAyEM,QX0sCR,SWxsCU,cAAA,EAGF,QX0sCR,SWxsCU,cAAA,EAPF,QXotCR,SWltCU,cAAA,QAGF,QXotCR,SWltCU,cAAA,QAPF,QX8tCR,SW5tCU,cAAA,OAGF,QX8tCR,SW5tCU,cAAA,OAPF,QXwuCR,SWtuCU,cAAA,KAGF,QXwuCR,SWtuCU,cAAA,KAPF,QXkvCR,SWhvCU,cAAA,OAGF,QXkvCR,SWhvCU,cAAA,OAPF,QX4vCR,SW1vCU,cAAA,KAGF,QX4vCR,SW1vCU,cAAA,MF/DN,yBE+BE,aAtDJ,KAAA,EAAA,EAAA,KACA,MAAA,KA2DQ,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,YAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,KA6EQ,aA9DV,YAAA,EA8DU,aA9DV,YAAA,YA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,aAyEM,QXw3CR,SWt3CU,cAAA,EAGF,QXw3CR,SWt3CU,cAAA,EAPF,QXk4CR,SWh4CU,cAAA,QAGF,QXk4CR,SWh4CU,cAAA,QAPF,QX44CR,SW14CU,cAAA,OAGF,QX44CR,SW14CU,cAAA,OAPF,QXs5CR,SWp5CU,cAAA,KAGF,QXs5CR,SWp5CU,cAAA,KAPF,QXg6CR,SW95CU,cAAA,OAGF,QXg6CR,SW95CU,cAAA,OAPF,QX06CR,SWx6CU,cAAA,KAGF,QX06CR,SWx6CU,cAAA,MF/DN,0BE+BE,aAtDJ,KAAA,EAAA,EAAA,KACA,MAAA,KA2DQ,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,YAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,UAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,KA6EQ,aA9DV,YAAA,EA8DU,aA9DV,YAAA,YA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,aA8DU,aA9DV,YAAA,IA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,aAyEM,QXsiDR,SWpiDU,cAAA,EAGF,QXsiDR,SWpiDU,cAAA,EAPF,QXgjDR,SW9iDU,cAAA,QAGF,QXgjDR,SW9iDU,cAAA,QAPF,QX0jDR,SWxjDU,cAAA,OAGF,QX0jDR,SWxjDU,cAAA,OAPF,QXokDR,SWlkDU,cAAA,KAGF,QXokDR,SWlkDU,cAAA,KAPF,QX8kDR,SW5kDU,cAAA,OAGF,QX8kDR,SW5kDU,cAAA,OAPF,QXwlDR,SWtlDU,cAAA,KAGF,QXwlDR,SWtlDU,cAAA,MF/DN,0BE+BE,cAtDJ,KAAA,EAAA,EAAA,KACA,MAAA,KA2DQ,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,YAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,WAtEN,KAAA,EAAA,EAAA,KACA,MAAA,IAqEM,YAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,YAtEN,KAAA,EAAA,EAAA,KACA,MAAA,aAqEM,YAtEN,KAAA,EAAA,EAAA,KACA,MAAA,KA6EQ,cA9DV,YAAA,EA8DU,cA9DV,YAAA,YA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,IA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,IA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,aA8DU,cA9DV,YAAA,IA8DU,eA9DV,YAAA,aA8DU,eA9DV,YAAA,aAyEM,SXotDR,UWltDU,cAAA,EAGF,SXotDR,UWltDU,cAAA,EAPF,SX8tDR,UW5tDU,cAAA,QAGF,SX8tDR,UW5tDU,cAAA,QAPF,SXwuDR,UWtuDU,cAAA,OAGF,SXwuDR,UWtuDU,cAAA,OAPF,SXkvDR,UWhvDU,cAAA,KAGF,SXkvDR,UWhvDU,cAAA,KAPF,SX4vDR,UW1vDU,cAAA,OAGF,SX4vDR,UW1vDU,cAAA,OAPF,SXswDR,UWpwDU,cAAA,KAGF,SXswDR,UWpwDU,cAAA,MC1HV,OACE,cAAA,YACA,qBAAA,YACA,yBAAA,QACA,sBAAA,oBACA,wBAAA,QACA,qBAAA,mBACA,uBAAA,QACA,oBAAA,qBAEA,MAAA,KACA,cAAA,KACA,MAAA,QACA,eAAA,IACA,aAAA,QAOA,yBACE,QAAA,MAAA,MACA,iBAAA,mBACA,oBAAA,IACA,WAAA,MAAA,EAAA,EAAA,EAAA,OAAA,0BAGF,aACE,eAAA,QAGF,aACE,eAAA,OAIF,uCACE,oBAAA,aASJ,aACE,aAAA,IAUA,4BACE,QAAA,OAAA,OAeF,gCACE,aAAA,IAAA,EAGA,kCACE,aAAA,EAAA,IAOJ,oCACE,oBAAA,EASF,yCACE,qBAAA,2BACA,MAAA,8BAQJ,cACE,qBAAA,0BACA,MAAA,6BAQA,4BACE,qBAAA,yBACA,MAAA,4BCxHF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,iBAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,cAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,aAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QDgIA,kBACE,WAAA,KACA,2BAAA,MHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,sBACE,WAAA,KACA,2BAAA,OE/IN,YACE,cAAA,MASF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EboRI,UAAA,QahRJ,YAAA,IAIF,mBACE,YAAA,kBACA,eAAA,kBb0QI,UAAA,QatQN,mBACE,YAAA,mBACA,eAAA,mBboQI,UAAA,QcjSN,WACE,WAAA,OdgSI,UAAA,Oc5RJ,MAAA,QCLF,cACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,Of8RI,UAAA,Ke3RJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KdGE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDhBN,cCiBQ,WAAA,MDGN,yBACE,SAAA,OAEA,wDACE,OAAA,QAKJ,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAOJ,2CAEE,OAAA,MAIF,gCACE,MAAA,QAEA,QAAA,EAHF,2BACE,MAAA,QAEA,QAAA,EAQF,uBAAA,wBAEE,iBAAA,QAGA,QAAA,EAIF,oCACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE3EF,iBAAA,QF6EE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECtEE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDuDJ,oCCtDM,WAAA,MDqEN,yEACE,iBAAA,QAGF,0CACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE9FF,iBAAA,QFgGE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECzFE,mBAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCD0EJ,0CCzEM,mBAAA,KAAA,WAAA,MDwFN,+EACE,iBAAA,QASJ,wBACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,EACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAEA,wCAAA,wCAEE,cAAA,EACA,aAAA,EAWJ,iBACE,WAAA,4BACA,QAAA,OAAA,MfmJI,UAAA,QClRF,cAAA,McmIF,uCACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAGF,6CACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAIJ,iBACE,WAAA,2BACA,QAAA,MAAA,KfgII,UAAA,QClRF,cAAA,McsJF,uCACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAGF,6CACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAQF,sBACE,WAAA,6BAGF,yBACE,WAAA,4BAGF,yBACE,WAAA,2BAKJ,oBACE,UAAA,KACA,OAAA,KACA,QAAA,QAEA,mDACE,OAAA,QAGF,uCACE,OAAA,Md/LA,cAAA,OcmMF,0CACE,OAAA,MdpMA,cAAA,OiBdJ,aACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,QAAA,QAAA,OAEA,mBAAA,oBlB2RI,UAAA,KkBxRJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,iBAAA,gOACA,kBAAA,UACA,oBAAA,MAAA,OAAA,OACA,gBAAA,KAAA,KACA,OAAA,IAAA,MAAA,QjBFE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YESJ,mBAAA,KAAA,gBAAA,KAAA,WAAA,KFLI,uCEfN,aFgBQ,WAAA,MEMN,mBACE,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,uBAAA,mCAEE,cAAA,OACA,iBAAA,KAGF,sBAEE,iBAAA,QAKF,4BACE,MAAA,YACA,YAAA,EAAA,EAAA,EAAA,QAIJ,gBACE,YAAA,OACA,eAAA,OACA,aAAA,MlByOI,UAAA,QkBrON,gBACE,YAAA,MACA,eAAA,MACA,aAAA,KlBkOI,UAAA,QmBjSN,YACE,QAAA,MACA,WAAA,OACA,aAAA,MACA,cAAA,QAEA,8BACE,MAAA,KACA,YAAA,OAIJ,kBACE,MAAA,IACA,OAAA,IACA,WAAA,MACA,eAAA,IACA,iBAAA,KACA,kBAAA,UACA,oBAAA,OACA,gBAAA,QACA,OAAA,IAAA,MAAA,gBACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KACA,2BAAA,MAAA,aAAA,MAGA,iClBXE,cAAA,MkBeF,8BAEE,cAAA,IAGF,yBACE,OAAA,gBAGF,wBACE,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,0BACE,iBAAA,QACA,aAAA,QAEA,yCAII,iBAAA,8NAIJ,sCAII,iBAAA,sIAKN,+CACE,iBAAA,QACA,aAAA,QAKE,iBAAA,wNAIJ,2BACE,eAAA,KACA,OAAA,KACA,QAAA,GAOA,6CAAA,8CACE,QAAA,GAcN,aACE,aAAA,MAEA,+BACE,MAAA,IACA,YAAA,OACA,iBAAA,uJACA,oBAAA,KAAA,OlB9FA,cAAA,IeHE,WAAA,oBAAA,KAAA,YAIA,uCGyFJ,+BHxFM,WAAA,MGgGJ,qCACE,iBAAA,yIAGF,uCACE,oBAAA,MAAA,OAKE,iBAAA,sIAMR,mBACE,QAAA,aACA,aAAA,KAGF,WACE,SAAA,SACA,KAAA,cACA,eAAA,KAIE,yBAAA,0BACE,eAAA,KACA,OAAA,KACA,QAAA,IC9IN,YACE,MAAA,KACA,OAAA,OACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAEA,kBACE,QAAA,EAIA,wCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAC1B,oCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAG5B,8BACE,OAAA,EAGF,kCACE,MAAA,KACA,OAAA,KACA,WAAA,QHzBF,iBAAA,QG2BE,OAAA,EnBZA,cAAA,KeHE,mBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YImBF,mBAAA,KAAA,WAAA,KJfE,uCIMJ,kCJLM,mBAAA,KAAA,WAAA,MIgBJ,yCHjCF,iBAAA,QGsCA,2CACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnB7BA,cAAA,KmBkCF,8BACE,MAAA,KACA,OAAA,KHnDF,iBAAA,QGqDE,OAAA,EnBtCA,cAAA,KeHE,gBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YI6CF,gBAAA,KAAA,WAAA,KJzCE,uCIiCJ,8BJhCM,gBAAA,KAAA,WAAA,MI0CJ,qCH3DF,iBAAA,QGgEA,8BACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnBvDA,cAAA,KmB4DF,qBACE,eAAA,KAEA,2CACE,iBAAA,QAGF,uCACE,iBAAA,QCvFN,eACE,SAAA,SAEA,6BtByhFF,4BsBvhFI,OAAA,mBACA,YAAA,KAGF,qBACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KACA,QAAA,KAAA,OACA,eAAA,KACA,OAAA,IAAA,MAAA,YACA,iBAAA,EAAA,ELDE,WAAA,QAAA,IAAA,WAAA,CAAA,UAAA,IAAA,YAIA,uCKXJ,qBLYM,WAAA,MKCN,6BACE,QAAA,KAAA,OAEA,+CACE,MAAA,YADF,0CACE,MAAA,YAGF,0DAEE,YAAA,SACA,eAAA,QAHF,mCAAA,qDAEE,YAAA,SACA,eAAA,QAGF,8CACE,YAAA,SACA,eAAA,QAIJ,4BACE,YAAA,SACA,eAAA,QAMA,gEACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBAFF,yCtB6hFJ,2DACA,kCsB7hFM,QAAA,IACA,UAAA,WAAA,mBAAA,mBAKF,oDACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBCtDN,aACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,QACA,MAAA,KAEA,2BvBqlFF,0BuBnlFI,SAAA,SACA,KAAA,EAAA,EAAA,KACA,MAAA,GACA,UAAA,EAIF,iCvBmlFF,gCuBjlFI,QAAA,EAMF,kBACE,SAAA,SACA,QAAA,EAEA,wBACE,QAAA,EAWN,kBACE,QAAA,KACA,YAAA,OACA,QAAA,QAAA,OtBsPI,UAAA,KsBpPJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QrBpCE,cAAA,OFinFJ,qBuBnkFA,8BvBikFA,6BACA,kCuB9jFE,QAAA,MAAA,KtBgOI,UAAA,QClRF,cAAA,MF0nFJ,qBuBnkFA,8BvBikFA,6BACA,kCuB9jFE,QAAA,OAAA,MtBuNI,UAAA,QClRF,cAAA,MqBgEJ,6BvBikFA,6BuB/jFE,cAAA,KvBokFF,uEuBvjFI,8FrB/DA,wBAAA,EACA,2BAAA,EF0nFJ,iEuBrjFI,2FrBtEA,wBAAA,EACA,2BAAA,EqBgFF,0IACE,YAAA,KrBpEA,uBAAA,EACA,0BAAA,EsBzBF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OF6qFJ,0BACA,yBwB/oFI,sCxB6oFJ,qCwB3oFM,QAAA,MA9CF,uBAAA,mCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,6BAAA,yCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,2CAAA,+BAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,sBAAA,kCAiFE,aAAA,QAGE,kDAAA,gDAAA,8DAAA,4DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2OACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,4BAAA,wCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,2BAAA,uCAsGE,aAAA,QAEA,mCAAA,+CACE,iBAAA,QAGF,iCAAA,6CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,6CAAA,yDACE,MAAA,QAKJ,qDACE,YAAA,KAvHF,oCxBkvFJ,mCwBlvFI,gDxBivFJ,+CwBlnFQ,QAAA,EAIF,0CxBonFN,yCwBpnFM,sDxBmnFN,qDwBlnFQ,QAAA,EAjHN,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OFswFJ,8BACA,6BwBxuFI,0CxBsuFJ,yCwBpuFM,QAAA,MA9CF,yBAAA,qCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2TACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,+BAAA,2CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,6CAAA,iCAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,wBAAA,oCAiFE,aAAA,QAGE,oDAAA,kDAAA,gEAAA,8DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2TACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,8BAAA,0CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,6BAAA,yCAsGE,aAAA,QAEA,qCAAA,iDACE,iBAAA,QAGF,mCAAA,+CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,+CAAA,2DACE,MAAA,QAKJ,uDACE,YAAA,KAvHF,sCxB20FJ,qCwB30FI,kDxB00FJ,iDwBzsFQ,QAAA,EAEF,4CxB6sFN,2CwB7sFM,wDxB4sFN,uDwB3sFQ,QAAA,ECtIR,KACE,QAAA,aAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,gBAAA,KAEA,eAAA,OACA,OAAA,QACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YC8GA,QAAA,QAAA,OzBsKI,UAAA,KClRF,cAAA,OeHE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCQhBN,KRiBQ,WAAA,MQAN,WACE,MAAA,QAIF,sBAAA,WAEE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAcF,cAAA,cAAA,uBAGE,eAAA,KACA,QAAA,IAYF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,eCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,qBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,gCAAA,qBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,iCAAA,kCAAA,sBAAA,sBAAA,qCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,uCAAA,wCAAA,4BAAA,4BAAA,2CAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,wBAAA,wBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,YCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,kBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,6BAAA,kBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,8BAAA,+BAAA,mBAAA,mBAAA,kCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,oCAAA,qCAAA,yBAAA,yBAAA,wCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,qBAAA,qBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,WCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,iBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,4BAAA,iBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,6BAAA,8BAAA,kBAAA,kBAAA,iCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,mCAAA,oCAAA,wBAAA,wBAAA,uCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,oBAAA,oBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDNF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,uBCmBA,MAAA,QACA,aAAA,QAEA,6BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wCAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,yCAAA,0CAAA,8BAAA,4CAAA,8BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+CAAA,gDAAA,oCAAA,kDAAA,oCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,gCAAA,gCAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,oBCmBA,MAAA,QACA,aAAA,QAEA,0BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,qCAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,sCAAA,uCAAA,2BAAA,yCAAA,2BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,4CAAA,6CAAA,iCAAA,+CAAA,iCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,6BAAA,6BAEE,MAAA,QACA,iBAAA,YDvDF,mBCmBA,MAAA,QACA,aAAA,QAEA,yBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,oCAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,qCAAA,sCAAA,0BAAA,wCAAA,0BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,2CAAA,4CAAA,gCAAA,8CAAA,gCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,4BAAA,4BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YD3CJ,UACE,YAAA,IACA,MAAA,QACA,gBAAA,UAEA,gBACE,MAAA,QAQF,mBAAA,mBAEE,MAAA,QAWJ,mBAAA,QCuBE,QAAA,MAAA,KzBsKI,UAAA,QClRF,cAAA,MuByFJ,mBAAA,QCmBE,QAAA,OAAA,MzBsKI,UAAA,QClRF,cAAA,MyBnBJ,MVgBM,WAAA,QAAA,KAAA,OAIA,uCUpBN,MVqBQ,WAAA,MUlBN,iBACE,QAAA,EAMF,qBACE,QAAA,KAIJ,YACE,OAAA,EACA,SAAA,OVDI,WAAA,OAAA,KAAA,KAIA,uCULN,YVMQ,WAAA,MjBs1GR,UADA,SAEA,W4B32GA,QAIE,SAAA,SAGF,iBACE,YAAA,OCqBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED3CN,eACE,SAAA,SACA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,E3B+QI,UAAA,K2B7QJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gB1BVE,cAAA,O0BcF,+BACE,IAAA,KACA,KAAA,EACA,WAAA,QAYA,qBACE,cAAA,MAEA,qCACE,MAAA,KACA,KAAA,EAIJ,mBACE,cAAA,IAEA,mCACE,MAAA,EACA,KAAA,KnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,yBACE,cAAA,MAEA,yCACE,MAAA,KACA,KAAA,EAIJ,uBACE,cAAA,IAEA,uCACE,MAAA,EACA,KAAA,MAUN,uCACE,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC9CA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,ED0BJ,wCACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC5DA,iCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,uCACE,YAAA,EDoCF,iCACE,eAAA,EAMJ,0CACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC7EA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAWA,mCACE,QAAA,KAGF,oCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,yCACE,YAAA,EDqDF,oCACE,eAAA,EAON,kBACE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,gBAMF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,KACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,gBAAA,KACA,YAAA,OACA,iBAAA,YACA,OAAA,EAcA,qBAAA,qBAEE,MAAA,QVzJF,iBAAA,QU8JA,sBAAA,sBAEE,MAAA,KACA,gBAAA,KVjKF,iBAAA,QUqKA,wBAAA,wBAEE,MAAA,QACA,eAAA,KACA,iBAAA,YAMJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,KACA,cAAA,E3B0GI,UAAA,Q2BxGJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,KACA,MAAA,QAIF,oBACE,MAAA,QACA,iBAAA,QACA,aAAA,gBAGA,mCACE,MAAA,QAEA,yCAAA,yCAEE,MAAA,KVhNJ,iBAAA,sBUoNE,0CAAA,0CAEE,MAAA,KVtNJ,iBAAA,QU0NE,4CAAA,4CAEE,MAAA,QAIJ,sCACE,aAAA,gBAGF,wCACE,MAAA,QAGF,qCACE,MAAA,QE5OJ,W9B2pHA,oB8BzpHE,SAAA,SACA,QAAA,YACA,eAAA,O9B6pHF,yB8B3pHE,gBACE,SAAA,SACA,KAAA,EAAA,EAAA,K9BmqHJ,4CACA,0CAIA,gCADA,gCADA,+BADA,+B8BhqHE,mC9BypHF,iCAIA,uBADA,uBADA,sBADA,sB8BppHI,QAAA,EAKJ,aACE,QAAA,KACA,UAAA,KACA,gBAAA,WAEA,0BACE,MAAA,K9BgqHJ,wC8B1pHE,kCAEE,YAAA,K9B4pHJ,4C8BxpHE,uD5BRE,wBAAA,EACA,2BAAA,EFqqHJ,6C8BrpHE,+B9BopHF,iCEvpHI,uBAAA,EACA,0BAAA,E4BqBJ,uBACE,cAAA,SACA,aAAA,SAEA,8BAAA,uCAAA,sCAGE,YAAA,EAGF,0CACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,eAAA,OACA,YAAA,WACA,gBAAA,OAEA,yB9BmnHF,+B8BjnHI,MAAA,K9BqnHJ,iD8BlnHE,2CAEE,WAAA,K9BonHJ,qD8BhnHE,gE5BvFE,2BAAA,EACA,0BAAA,EF2sHJ,sD8BhnHE,8B5B1GE,uBAAA,EACA,wBAAA,E6BxBJ,KACE,QAAA,KACA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,KAGA,MAAA,QACA,gBAAA,KdHI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,YAIA,uCcPN,UdQQ,WAAA,McCN,gBAAA,gBAEE,MAAA,QAKF,mBACE,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QAEA,oBACE,cAAA,KACA,WAAA,IACA,OAAA,IAAA,MAAA,Y7BlBA,uBAAA,OACA,wBAAA,O6BoBA,0BAAA,0BAEE,aAAA,QAAA,QAAA,QAEA,UAAA,QAGF,6BACE,MAAA,QACA,iBAAA,YACA,aAAA,Y/BivHN,mC+B7uHE,2BAEE,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KAGF,yBAEE,WAAA,K7B5CA,uBAAA,EACA,wBAAA,E6BuDF,qBACE,WAAA,IACA,OAAA,E7BnEA,cAAA,O6BuEF,4B/BmuHF,2B+BjuHI,MAAA,KbxFF,iBAAA,QlB+zHF,oB+B5tHE,oBAEE,KAAA,EAAA,EAAA,KACA,WAAA,O/B+tHJ,yB+B1tHE,yBAEE,WAAA,EACA,UAAA,EACA,WAAA,OAMF,8B/ButHF,mC+BttHI,MAAA,KAUF,uBACE,QAAA,KAEF,qBACE,QAAA,MCxHJ,QACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,OACA,gBAAA,cACA,YAAA,MAEA,eAAA,MAOA,mBhCs0HF,yBAGA,sBADA,sBADA,sBAGA,sBACA,uBgC10HI,QAAA,KACA,UAAA,QACA,YAAA,OACA,gBAAA,cAoBJ,cACE,YAAA,SACA,eAAA,SACA,aAAA,K/B2OI,UAAA,Q+BzOJ,gBAAA,KACA,YAAA,OAaF,YACE,QAAA,KACA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KAEA,sBACE,cAAA,EACA,aAAA,EAGF,2BACE,SAAA,OASJ,aACE,YAAA,MACA,eAAA,MAYF,iBACE,WAAA,KACA,UAAA,EAGA,YAAA,OAIF,gBACE,QAAA,OAAA,O/B6KI,UAAA,Q+B3KJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,Y9BzGE,cAAA,OeHE,WAAA,WAAA,KAAA,YAIA,uCemGN,gBflGQ,WAAA,Me2GN,sBACE,gBAAA,KAGF,sBACE,gBAAA,KACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,kBAAA,UACA,oBAAA,OACA,gBAAA,KAGF,mBACE,WAAA,6BACA,WAAA,KvB1FE,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,MvBlIN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,MvBlIN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,MvBlIN,0BuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,MvBlIN,0BuBsGA,mBAEI,UAAA,OACA,gBAAA,WAEA,+BACE,eAAA,IAEA,8CACE,SAAA,SAGF,yCACE,cAAA,MACA,aAAA,MAIJ,sCACE,SAAA,QAGF,oCACE,QAAA,eACA,WAAA,KAGF,mCACE,QAAA,MA5BN,eAEI,UAAA,OACA,gBAAA,WAEA,2BACE,eAAA,IAEA,0CACE,SAAA,SAGF,qCACE,cAAA,MACA,aAAA,MAIJ,kCACE,SAAA,QAGF,gCACE,QAAA,eACA,WAAA,KAGF,+BACE,QAAA,KAeR,4BACE,MAAA,eAEA,kCAAA,kCAEE,MAAA,eAKF,oCACE,MAAA,gBAEA,0CAAA,0CAEE,MAAA,eAGF,6CACE,MAAA,ehCg4HR,2CgC53HI,0CAEE,MAAA,eAIJ,8BACE,MAAA,gBACA,aAAA,eAGF,mCACE,iBAAA,4OAGF,2BACE,MAAA,gBAEA,6BhCy3HJ,mCADA,mCgCr3HM,MAAA,eAOJ,2BACE,MAAA,KAEA,iCAAA,iCAEE,MAAA,KAKF,mCACE,MAAA,sBAEA,yCAAA,yCAEE,MAAA,sBAGF,4CACE,MAAA,sBhCg3HR,0CgC52HI,yCAEE,MAAA,KAIJ,6BACE,MAAA,sBACA,aAAA,qBAGF,kCACE,iBAAA,kPAGF,0BACE,MAAA,sBACA,4BhC02HJ,kCADA,kCgCt2HM,MAAA,KC1SN,MACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,UAAA,EAEA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iB/BME,cAAA,O+BHF,SACE,aAAA,EACA,YAAA,EAGF,kBACE,WAAA,QACA,cAAA,QAEA,8BACE,iBAAA,E/BEF,uBAAA,mBACA,wBAAA,mB+BCA,6BACE,oBAAA,E/BWF,2BAAA,mBACA,0BAAA,mB+BLF,+BjCipIF,+BiC/oII,WAAA,EAIJ,WAGE,KAAA,EAAA,EAAA,KACA,QAAA,KAAA,KAIF,YACE,cAAA,MAGF,eACE,WAAA,QACA,cAAA,EAGF,sBACE,cAAA,EAIA,iBACE,gBAAA,KAGF,sBACE,YAAA,KAQJ,aACE,QAAA,MAAA,KACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBAEA,yB/BnEE,cAAA,mBAAA,mBAAA,EAAA,E+BwEJ,aACE,QAAA,MAAA,KAEA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAEA,wB/B9EE,cAAA,EAAA,EAAA,mBAAA,mB+BwFJ,kBACE,aAAA,OACA,cAAA,OACA,YAAA,OACA,cAAA,EAUF,mBACE,aAAA,OACA,YAAA,OAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,K/BlHE,cAAA,mB+BsHJ,UjCsnIA,iBADA,ciClnIE,MAAA,KAGF,UjCqnIA,cExuII,uBAAA,mBACA,wBAAA,mB+BuHJ,UjCsnIA,iBEhuII,2BAAA,mBACA,0BAAA,mB+BsHF,kBACE,cAAA,OxBnGA,yBwB+FJ,YAQI,QAAA,KACA,UAAA,IAAA,KAGA,kBAEE,KAAA,EAAA,EAAA,GACA,cAAA,EAEA,wBACE,YAAA,EACA,YAAA,EAKA,mC/BnJJ,wBAAA,EACA,2BAAA,EFgwIJ,gDiC3mIU,iDAGE,wBAAA,EjC4mIZ,gDiC1mIU,oDAGE,2BAAA,EAIJ,oC/BpJJ,uBAAA,EACA,0BAAA,EF8vIJ,iDiCxmIU,kDAGE,uBAAA,EjCymIZ,iDiCvmIU,qDAGE,0BAAA,GC5MZ,kBACE,SAAA,SACA,QAAA,KACA,YAAA,OACA,MAAA,KACA,QAAA,KAAA,QjC4RI,UAAA,KiC1RJ,MAAA,QACA,WAAA,KACA,iBAAA,KACA,OAAA,EhCKE,cAAA,EgCHF,gBAAA,KjBAI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,cAAA,KAAA,KAIA,uCiBhBN,kBjBiBQ,WAAA,MiBFN,kCACE,MAAA,QACA,iBAAA,QACA,WAAA,MAAA,EAAA,KAAA,EAAA,iBAEA,yCACE,iBAAA,gRACA,UAAA,gBAKJ,yBACE,YAAA,EACA,MAAA,QACA,OAAA,QACA,YAAA,KACA,QAAA,GACA,iBAAA,gRACA,kBAAA,UACA,gBAAA,QjBvBE,WAAA,UAAA,IAAA,YAIA,uCiBWJ,yBjBVM,WAAA,MiBsBN,wBACE,QAAA,EAGF,wBACE,QAAA,EACA,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,kBACE,cAAA,EAGF,gBACE,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,8BhCnCE,uBAAA,OACA,wBAAA,OgCqCA,gDhCtCA,uBAAA,mBACA,wBAAA,mBgC0CF,oCACE,WAAA,EAIF,6BhClCE,2BAAA,OACA,0BAAA,OgCqCE,yDhCtCF,2BAAA,mBACA,0BAAA,mBgC0CA,iDhC3CA,2BAAA,OACA,0BAAA,OgCgDJ,gBACE,QAAA,KAAA,QASA,qCACE,aAAA,EAGF,iCACE,aAAA,EACA,YAAA,EhCxFA,cAAA,EgC2FA,6CAAgB,WAAA,EAChB,4CAAe,cAAA,EAEf,mDhC9FA,cAAA,EiCnBJ,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,KAEA,WAAA,KAOA,kCACE,aAAA,MAEA,0CACE,MAAA,KACA,cAAA,MACA,MAAA,QACA,QAAA,kCAIJ,wBACE,MAAA,QCzBJ,YACE,QAAA,KhCGA,aAAA,EACA,WAAA,KgCAF,WACE,SAAA,SACA,QAAA,MACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QnBKI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCmBfN,WnBgBQ,WAAA,MmBPN,iBACE,QAAA,EACA,MAAA,QAEA,iBAAA,QACA,aAAA,QAGF,iBACE,QAAA,EACA,MAAA,QACA,iBAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKF,wCACE,YAAA,KAGF,6BACE,QAAA,EACA,MAAA,KlBlCF,iBAAA,QkBoCE,aAAA,QAGF,+BACE,MAAA,QACA,eAAA,KACA,iBAAA,KACA,aAAA,QC3CF,WACE,QAAA,QAAA,OAOI,kCnCqCJ,uBAAA,OACA,0BAAA,OmChCI,iCnCiBJ,wBAAA,OACA,2BAAA,OmChCF,0BACE,QAAA,OAAA,OpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MmChCF,0BACE,QAAA,OAAA,MpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MoC/BJ,OACE,QAAA,aACA,QAAA,MAAA,MrC8RI,UAAA,MqC5RJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,eAAA,SpCKE,cAAA,OoCAF,aACE,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KCvBF,OACE,SAAA,SACA,QAAA,KAAA,KACA,cAAA,KACA,OAAA,IAAA,MAAA,YrCWE,cAAA,OqCNJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KAGA,8BACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,QAAA,KAeF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,iBClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,6BACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,cClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,0BACE,MAAA,QD6CF,aClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,yBACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QCHF,wCACE,GAAK,sBAAA,MADP,gCACE,GAAK,sBAAA,MAKT,UACE,QAAA,KACA,OAAA,KACA,SAAA,OxCwRI,UAAA,OwCtRJ,iBAAA,QvCIE,cAAA,OuCCJ,cACE,QAAA,KACA,eAAA,OACA,gBAAA,OACA,SAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QxBZI,WAAA,MAAA,IAAA,KAIA,uCwBAN,cxBCQ,WAAA,MwBWR,sBvBYE,iBAAA,iKuBVA,gBAAA,KAAA,KAIA,uBACE,kBAAA,GAAA,OAAA,SAAA,qBAAA,UAAA,GAAA,OAAA,SAAA,qBAGE,uCAJJ,uBAKM,kBAAA,KAAA,UAAA,MCvCR,YACE,QAAA,KACA,eAAA,OAGA,aAAA,EACA,cAAA,ExCSE,cAAA,OwCLJ,qBACE,gBAAA,KACA,cAAA,QAEA,gCAEE,QAAA,uBAAA,KACA,kBAAA,QAUJ,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QAGA,8BAAA,8BAEE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAGF,+BACE,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,KACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,6BxCrCE,uBAAA,QACA,wBAAA,QwCwCF,4BxC3BE,2BAAA,QACA,0BAAA,QwC8BF,0BAAA,0BAEE,MAAA,QACA,eAAA,KACA,iBAAA,KAIF,wBACE,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,kCACE,iBAAA,EAEA,yCACE,WAAA,KACA,iBAAA,IAcF,uBACE,eAAA,IAGE,oDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,mDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,+CACE,WAAA,EAGF,yDACE,iBAAA,IACA,kBAAA,EAEA,gEACE,YAAA,KACA,kBAAA,IjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,2BACE,eAAA,IAGE,wDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,uDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,mDACE,WAAA,EAGF,6DACE,iBAAA,IACA,kBAAA,EAEA,oEACE,YAAA,KACA,kBAAA,KAcZ,kBxC9HI,cAAA,EwCiIF,mCACE,aAAA,EAAA,EAAA,IAEA,8CACE,oBAAA,ECpJJ,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,2BACE,MAAA,QACA,iBAAA,QAGE,wDAAA,wDAEE,MAAA,QACA,iBAAA,QAGF,yDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,wBACE,MAAA,QACA,iBAAA,QAGE,qDAAA,qDAEE,MAAA,QACA,iBAAA,QAGF,sDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,uBACE,MAAA,QACA,iBAAA,QAGE,oDAAA,oDAEE,MAAA,QACA,iBAAA,QAGF,qDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QCbR,WACE,WAAA,YACA,MAAA,IACA,OAAA,IACA,QAAA,MAAA,MACA,MAAA,KACA,WAAA,YAAA,0TAAA,MAAA,CAAA,IAAA,KAAA,UACA,OAAA,E1COE,cAAA,O0CLF,QAAA,GAGA,iBACE,MAAA,KACA,gBAAA,KACA,QAAA,IAGF,iBACE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBACA,QAAA,EAGF,oBAAA,oBAEE,eAAA,KACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,QAAA,IAIJ,iBACE,OAAA,UAAA,gBAAA,iBCtCF,OACE,MAAA,MACA,UAAA,K5CmSI,UAAA,Q4ChSJ,eAAA,KACA,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,MAAA,KAAA,gB3CUE,cAAA,O2CPF,gCACE,QAAA,EAGF,YACE,QAAA,KAIJ,iBACE,MAAA,oBAAA,MAAA,iBAAA,MAAA,YACA,UAAA,KACA,eAAA,KAEA,mCACE,cAAA,OAIJ,cACE,QAAA,KACA,YAAA,OACA,QAAA,MAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gB3CVE,uBAAA,mBACA,wBAAA,mB2CYF,yBACE,aAAA,SACA,YAAA,OAIJ,YACE,QAAA,OACA,UAAA,WC1CF,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,WAAA,OACA,WAAA,KAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BlBI,WAAA,UAAA,IAAA,S6BoBF,UAAA,mB7BhBE,uC6BcJ,0B7BbM,WAAA,M6BiBN,0BACE,UAAA,KAIF,kCACE,UAAA,YAIJ,yBACE,OAAA,kBAEA,wCACE,WAAA,KACA,SAAA,OAGF,qCACE,WAAA,KAIJ,uBACE,QAAA,KACA,YAAA,OACA,WAAA,kBAIF,eACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e5C3DE,cAAA,M4C+DF,QAAA,EAIF,gBACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,qBAAS,QAAA,EACT,qBAAS,QAAA,GAKX,cACE,QAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,Q5ChFE,uBAAA,kBACA,wBAAA,kB4CkFF,yBACE,QAAA,MAAA,MACA,OAAA,OAAA,OAAA,OAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,KACA,UAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,SACA,QAAA,OACA,WAAA,IAAA,MAAA,Q5CnGE,2BAAA,kBACA,0BAAA,kB4CwGF,gBACE,OAAA,OrCrFA,yBqC4FF,cACE,UAAA,MACA,OAAA,QAAA,KAGF,yBACE,OAAA,oBAGF,uBACE,WAAA,oBAOF,UAAY,UAAA,OrC7GV,yBqCiHF,U9CgkKF,U8C9jKI,UAAA,OrCnHA,0BqCwHF,UAAY,UAAA,QASV,kBACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,iCACE,OAAA,KACA,OAAA,E5CrLJ,cAAA,E4CyLE,gC5CzLF,cAAA,E4C6LE,8BACE,WAAA,KAGF,gC5CjMF,cAAA,EOyDA,4BqCoHA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5CrLJ,cAAA,E4CyLE,wC5CzLF,cAAA,E4C6LE,sCACE,WAAA,KAGF,wC5CjMF,cAAA,GOyDA,4BqCoHA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5CrLJ,cAAA,E4CyLE,wC5CzLF,cAAA,E4C6LE,sCACE,WAAA,KAGF,wC5CjMF,cAAA,GOyDA,4BqCoHA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5CrLJ,cAAA,E4CyLE,wC5CzLF,cAAA,E4C6LE,sCACE,WAAA,KAGF,wC5CjMF,cAAA,GOyDA,6BqCoHA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5CrLJ,cAAA,E4CyLE,wC5CzLF,cAAA,E4C6LE,sCACE,WAAA,KAGF,wC5CjMF,cAAA,GOyDA,6BqCoHA,2BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,0CACE,OAAA,KACA,OAAA,E5CrLJ,cAAA,E4CyLE,yC5CzLF,cAAA,E4C6LE,uCACE,WAAA,KAGF,yC5CjMF,cAAA,G6ClBJ,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,K/CsRI,UAAA,Q8C1RJ,UAAA,WACA,QAAA,EAEA,cAAS,QAAA,GAET,wBACE,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAEA,gCACE,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,6CAAA,gBACE,QAAA,MAAA,EAEA,4DAAA,+BACE,OAAA,EAEA,oEAAA,uCACE,IAAA,KACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,+CAAA,gBACE,QAAA,EAAA,MAEA,8DAAA,+BACE,KAAA,EACA,MAAA,MACA,OAAA,MAEA,sEAAA,uCACE,MAAA,KACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,gDAAA,mBACE,QAAA,MAAA,EAEA,+DAAA,kCACE,IAAA,EAEA,uEAAA,0CACE,OAAA,KACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,8CAAA,kBACE,QAAA,EAAA,MAEA,6DAAA,iCACE,MAAA,EACA,MAAA,MACA,OAAA,MAEA,qEAAA,yCACE,KAAA,KACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,K7C7FE,cAAA,O+CnBJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,K/CsRI,UAAA,QgDzRJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e/CIE,cAAA,M+CAF,wBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MAEA,+BAAA,gCAEE,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAMJ,4DAAA,+BACE,OAAA,mBAEA,oEAAA,uCACE,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBAGF,mEAAA,sCACE,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAMJ,8DAAA,+BACE,KAAA,mBACA,MAAA,MACA,OAAA,KAEA,sEAAA,uCACE,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAGF,qEAAA,sCACE,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAMJ,+DAAA,kCACE,IAAA,mBAEA,uEAAA,0CACE,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBAGF,sEAAA,yCACE,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAKJ,wEAAA,2CACE,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAKF,6DAAA,iCACE,MAAA,mBACA,MAAA,MACA,OAAA,KAEA,qEAAA,yCACE,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAGF,oEAAA,wCACE,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,gBACE,QAAA,MAAA,KACA,cAAA,EhDuJI,UAAA,KgDpJJ,iBAAA,QACA,cAAA,IAAA,MAAA,e/CtHE,uBAAA,kBACA,wBAAA,kB+CwHF,sBACE,QAAA,KAIJ,cACE,QAAA,KAAA,KACA,MAAA,QC/IF,UACE,SAAA,SAGF,wBACE,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCtBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDuBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OjClBI,WAAA,UAAA,IAAA,YAIA,uCiCQN,ejCPQ,WAAA,MjBinLR,oBACA,oBkDjmLA,sBAGE,QAAA,MlDomLF,0BkDhmLA,8CAEE,UAAA,iBlDmmLF,4BkDhmLA,4CAEE,UAAA,kBAWA,8BACE,QAAA,EACA,oBAAA,QACA,UAAA,KlD2lLJ,uDACA,qDkDzlLE,qCAGE,QAAA,EACA,QAAA,ElD0lLJ,yCkDvlLE,2CAEE,QAAA,EACA,QAAA,EjC/DE,WAAA,QAAA,GAAA,IAIA,uCjBspLN,yCkD9lLE,2CjCvDM,WAAA,MjB2pLR,uBkDvlLA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,KACA,YAAA,OACA,gBAAA,OACA,MAAA,IACA,QAAA,EACA,MAAA,KACA,WAAA,OACA,WAAA,IACA,OAAA,EACA,QAAA,GjCzFI,WAAA,QAAA,KAAA,KAIA,uCjB+qLN,uBkD1mLA,uBjCpEQ,WAAA,MjBorLR,6BADA,6BkD3lLE,6BAAA,6BAEE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAGF,uBACE,MAAA,ElD+lLF,4BkD1lLA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,kBAAA,UACA,oBAAA,IACA,gBAAA,KAAA,KAWF,4BACE,iBAAA,wPAEF,4BACE,iBAAA,yPAQF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,KACA,gBAAA,OACA,QAAA,EAEA,aAAA,IACA,cAAA,KACA,YAAA,IACA,WAAA,KAEA,sCACE,WAAA,YACA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,QAAA,EACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,EAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GjC5KE,WAAA,QAAA,IAAA,KAIA,uCiCwJJ,sCjCvJM,WAAA,MiC2KN,6BACE,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,QACA,KAAA,IACA,YAAA,QACA,eAAA,QACA,MAAA,KACA,WAAA,OlDqlLF,2CkD/kLE,2CAEE,OAAA,UAAA,eAGF,qDACE,iBAAA,KAGF,iCACE,MAAA,KE7NJ,kCACE,GAAK,UAAA,gBADP,0BACE,GAAK,UAAA,gBAIP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,KAAA,OAAA,SAAA,eAAA,UAAA,KAAA,OAAA,SAAA,eAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAQF,gCACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MANJ,wBACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MAKJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,KAAA,OAAA,SAAA,aAAA,UAAA,KAAA,OAAA,SAAA,aAGF,iBACE,MAAA,KACA,OAAA,KAIA,uCACE,gBpDqzLJ,coDnzLM,2BAAA,KAAA,mBAAA,MCjEN,WACE,SAAA,MACA,OAAA,EACA,QAAA,KACA,QAAA,KACA,eAAA,OACA,UAAA,KAEA,WAAA,OACA,iBAAA,KACA,gBAAA,YACA,QAAA,EpCKI,WAAA,UAAA,IAAA,YAIA,uCoCpBN,WpCqBQ,WAAA,MoCLR,kBACE,QAAA,KACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KAEA,6BACE,QAAA,MAAA,MACA,WAAA,OACA,aAAA,OACA,cAAA,OAIJ,iBACE,cAAA,EACA,YAAA,IAGF,gBACE,UAAA,EACA,QAAA,KAAA,KACA,WAAA,KAGF,iBACE,IAAA,EACA,KAAA,EACA,MAAA,MACA,aAAA,IAAA,MAAA,eACA,UAAA,kBAGF,eACE,IAAA,EACA,MAAA,EACA,MAAA,MACA,YAAA,IAAA,MAAA,eACA,UAAA,iBAGF,eACE,IAAA,EACA,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,cAAA,IAAA,MAAA,eACA,UAAA,kBAGF,kBACE,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,WAAA,IAAA,MAAA,eACA,UAAA,iBAGF,gBACE,UAAA,KF3EA,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GGJF,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,gBACE,MAAA,QAGE,sBAAA,sBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,aACE,MAAA,QAGE,mBAAA,mBAEE,MAAA,QANN,YACE,MAAA,QAGE,kBAAA,kBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QCLR,OACE,SAAA,SACA,MAAA,KAEA,eACE,QAAA,MACA,YAAA,uBACA,QAAA,GAGF,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KAKF,WACE,kBAAA,KADF,WACE,kBAAA,mBADF,YACE,kBAAA,oBADF,YACE,kBAAA,oBCrBJ,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAQE,YACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,K/CqCF,yB+CxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,M/CqCF,yB+CxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,M/CqCF,yB+CxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,M/CqCF,0B+CxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,M/CqCF,0B+CxCA,gBACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCtBN,iBzDsmMA,0D0DlmME,SAAA,mBACA,MAAA,cACA,OAAA,cACA,QAAA,YACA,OAAA,eACA,SAAA,iBACA,KAAA,wBACA,YAAA,iBACA,OAAA,YCXA,uBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,GCRJ,eCAE,SAAA,OACA,cAAA,SACA,YAAA,OC2CI,gBAEI,eAAA,mBAFJ,WAEI,eAAA,cAFJ,cAEI,eAAA,iBAFJ,cAEI,eAAA,iBAFJ,mBAEI,eAAA,sBAFJ,gBAEI,eAAA,mBAFJ,aAEI,MAAA,eAFJ,WAEI,MAAA,gBAFJ,YAEI,MAAA,eAFJ,eAEI,SAAA,eAFJ,iBAEI,SAAA,iBAFJ,kBAEI,SAAA,kBAFJ,iBAEI,SAAA,iBAFJ,UAEI,QAAA,iBAFJ,gBAEI,QAAA,uBAFJ,SAEI,QAAA,gBAFJ,QAEI,QAAA,eAFJ,SAEI,QAAA,gBAFJ,aAEI,QAAA,oBAFJ,cAEI,QAAA,qBAFJ,QAEI,QAAA,eAFJ,eAEI,QAAA,sBAFJ,QAEI,QAAA,eAFJ,QAEI,WAAA,EAAA,MAAA,KAAA,0BAFJ,WAEI,WAAA,EAAA,QAAA,OAAA,2BAFJ,WAEI,WAAA,EAAA,KAAA,KAAA,2BAFJ,aAEI,WAAA,eAFJ,iBAEI,SAAA,iBAFJ,mBAEI,SAAA,mBAFJ,mBAEI,SAAA,mBAFJ,gBAEI,SAAA,gBAFJ,iBAEI,SAAA,yBAAA,SAAA,iBAFJ,OAEI,IAAA,YAFJ,QAEI,IAAA,cAFJ,SAEI,IAAA,eAFJ,UAEI,OAAA,YAFJ,WAEI,OAAA,cAFJ,YAEI,OAAA,eAFJ,SAEI,KAAA,YAFJ,UAEI,KAAA,cAFJ,WAEI,KAAA,eAFJ,OAEI,MAAA,YAFJ,QAEI,MAAA,cAFJ,SAEI,MAAA,eAFJ,kBAEI,UAAA,+BAFJ,oBAEI,UAAA,2BAFJ,oBAEI,UAAA,2BAFJ,QAEI,OAAA,IAAA,MAAA,kBAFJ,UAEI,OAAA,YAFJ,YAEI,WAAA,IAAA,MAAA,kBAFJ,cAEI,WAAA,YAFJ,YAEI,aAAA,IAAA,MAAA,kBAFJ,cAEI,aAAA,YAFJ,eAEI,cAAA,IAAA,MAAA,kBAFJ,iBAEI,cAAA,YAFJ,cAEI,YAAA,IAAA,MAAA,kBAFJ,gBAEI,YAAA,YAFJ,gBAEI,aAAA,kBAFJ,kBAEI,aAAA,kBAFJ,gBAEI,aAAA,kBAFJ,aAEI,aAAA,kBAFJ,gBAEI,aAAA,kBAFJ,eAEI,aAAA,kBAFJ,cAEI,aAAA,kBAFJ,aAEI,aAAA,kBAFJ,cAEI,aAAA,eAFJ,UAEI,aAAA,cAFJ,UAEI,aAAA,cAFJ,UAEI,aAAA,cAFJ,UAEI,aAAA,cAFJ,UAEI,aAAA,cAFJ,MAEI,MAAA,cAFJ,MAEI,MAAA,cAFJ,MAEI,MAAA,cAFJ,OAEI,MAAA,eAFJ,QAEI,MAAA,eAFJ,QAEI,UAAA,eAFJ,QAEI,MAAA,gBAFJ,YAEI,UAAA,gBAFJ,MAEI,OAAA,cAFJ,MAEI,OAAA,cAFJ,MAEI,OAAA,cAFJ,OAEI,OAAA,eAFJ,QAEI,OAAA,eAFJ,QAEI,WAAA,eAFJ,QAEI,OAAA,gBAFJ,YAEI,WAAA,gBAFJ,WAEI,KAAA,EAAA,EAAA,eAFJ,UAEI,eAAA,cAFJ,aAEI,eAAA,iBAFJ,kBAEI,eAAA,sBAFJ,qBAEI,eAAA,yBAFJ,aAEI,UAAA,YAFJ,aAEI,UAAA,YAFJ,eAEI,YAAA,YAFJ,eAEI,YAAA,YAFJ,WAEI,UAAA,eAFJ,aAEI,UAAA,iBAFJ,mBAEI,UAAA,uBAFJ,OAEI,IAAA,YAFJ,OAEI,IAAA,iBAFJ,OAEI,IAAA,gBAFJ,OAEI,IAAA,eAFJ,OAEI,IAAA,iBAFJ,OAEI,IAAA,eAFJ,uBAEI,gBAAA,qBAFJ,qBAEI,gBAAA,mBAFJ,wBAEI,gBAAA,iBAFJ,yBAEI,gBAAA,wBAFJ,wBAEI,gBAAA,uBAFJ,wBAEI,gBAAA,uBAFJ,mBAEI,YAAA,qBAFJ,iBAEI,YAAA,mBAFJ,oBAEI,YAAA,iBAFJ,sBAEI,YAAA,mBAFJ,qBAEI,YAAA,kBAFJ,qBAEI,cAAA,qBAFJ,mBAEI,cAAA,mBAFJ,sBAEI,cAAA,iBAFJ,uBAEI,cAAA,wBAFJ,sBAEI,cAAA,uBAFJ,uBAEI,cAAA,kBAFJ,iBAEI,WAAA,eAFJ,kBAEI,WAAA,qBAFJ,gBAEI,WAAA,mBAFJ,mBAEI,WAAA,iBAFJ,qBAEI,WAAA,mBAFJ,oBAEI,WAAA,kBAFJ,aAEI,MAAA,aAFJ,SAEI,MAAA,YAFJ,SAEI,MAAA,YAFJ,SAEI,MAAA,YAFJ,SAEI,MAAA,YAFJ,SAEI,MAAA,YAFJ,SAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,KAEI,OAAA,YAFJ,KAEI,OAAA,iBAFJ,KAEI,OAAA,gBAFJ,KAEI,OAAA,eAFJ,KAEI,OAAA,iBAFJ,KAEI,OAAA,eAFJ,QAEI,OAAA,eAFJ,MAEI,aAAA,YAAA,YAAA,YAFJ,MAEI,aAAA,iBAAA,YAAA,iBAFJ,MAEI,aAAA,gBAAA,YAAA,gBAFJ,MAEI,aAAA,eAAA,YAAA,eAFJ,MAEI,aAAA,iBAAA,YAAA,iBAFJ,MAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,MAEI,WAAA,YAAA,cAAA,YAFJ,MAEI,WAAA,iBAAA,cAAA,iBAFJ,MAEI,WAAA,gBAAA,cAAA,gBAFJ,MAEI,WAAA,eAAA,cAAA,eAFJ,MAEI,WAAA,iBAAA,cAAA,iBAFJ,MAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,MAEI,WAAA,YAFJ,MAEI,WAAA,iBAFJ,MAEI,WAAA,gBAFJ,MAEI,WAAA,eAFJ,MAEI,WAAA,iBAFJ,MAEI,WAAA,eAFJ,SAEI,WAAA,eAFJ,MAEI,aAAA,YAFJ,MAEI,aAAA,iBAFJ,MAEI,aAAA,gBAFJ,MAEI,aAAA,eAFJ,MAEI,aAAA,iBAFJ,MAEI,aAAA,eAFJ,SAEI,aAAA,eAFJ,MAEI,cAAA,YAFJ,MAEI,cAAA,iBAFJ,MAEI,cAAA,gBAFJ,MAEI,cAAA,eAFJ,MAEI,cAAA,iBAFJ,MAEI,cAAA,eAFJ,SAEI,cAAA,eAFJ,MAEI,YAAA,YAFJ,MAEI,YAAA,iBAFJ,MAEI,YAAA,gBAFJ,MAEI,YAAA,eAFJ,MAEI,YAAA,iBAFJ,MAEI,YAAA,eAFJ,SAEI,YAAA,eAFJ,KAEI,QAAA,YAFJ,KAEI,QAAA,iBAFJ,KAEI,QAAA,gBAFJ,KAEI,QAAA,eAFJ,KAEI,QAAA,iBAFJ,KAEI,QAAA,eAFJ,MAEI,cAAA,YAAA,aAAA,YAFJ,MAEI,cAAA,iBAAA,aAAA,iBAFJ,MAEI,cAAA,gBAAA,aAAA,gBAFJ,MAEI,cAAA,eAAA,aAAA,eAFJ,MAEI,cAAA,iBAAA,aAAA,iBAFJ,MAEI,cAAA,eAAA,aAAA,eAFJ,MAEI,YAAA,YAAA,eAAA,YAFJ,MAEI,YAAA,iBAAA,eAAA,iBAFJ,MAEI,YAAA,gBAAA,eAAA,gBAFJ,MAEI,YAAA,eAAA,eAAA,eAFJ,MAEI,YAAA,iBAAA,eAAA,iBAFJ,MAEI,YAAA,eAAA,eAAA,eAFJ,MAEI,YAAA,YAFJ,MAEI,YAAA,iBAFJ,MAEI,YAAA,gBAFJ,MAEI,YAAA,eAFJ,MAEI,YAAA,iBAFJ,MAEI,YAAA,eAFJ,MAEI,cAAA,YAFJ,MAEI,cAAA,iBAFJ,MAEI,cAAA,gBAFJ,MAEI,cAAA,eAFJ,MAEI,cAAA,iBAFJ,MAEI,cAAA,eAFJ,MAEI,eAAA,YAFJ,MAEI,eAAA,iBAFJ,MAEI,eAAA,gBAFJ,MAEI,eAAA,eAFJ,MAEI,eAAA,iBAFJ,MAEI,eAAA,eAFJ,MAEI,aAAA,YAFJ,MAEI,aAAA,iBAFJ,MAEI,aAAA,gBAFJ,MAEI,aAAA,eAFJ,MAEI,aAAA,iBAFJ,MAEI,aAAA,eAFJ,gBAEI,YAAA,mCAFJ,MAEI,UAAA,iCAFJ,MAEI,UAAA,gCAFJ,MAEI,UAAA,8BAFJ,MAEI,UAAA,gCAFJ,MAEI,UAAA,kBAFJ,MAEI,UAAA,eAFJ,YAEI,WAAA,iBAFJ,YAEI,WAAA,iBAFJ,UAEI,YAAA,cAFJ,YAEI,YAAA,kBAFJ,WAEI,YAAA,cAFJ,SAEI,YAAA,cAFJ,WAEI,YAAA,iBAFJ,MAEI,YAAA,YAFJ,OAEI,YAAA,eAFJ,SAEI,YAAA,cAFJ,OAEI,YAAA,YAFJ,YAEI,WAAA,eAFJ,UAEI,WAAA,gBAFJ,aAEI,WAAA,iBAFJ,sBAEI,gBAAA,eAFJ,2BAEI,gBAAA,oBAFJ,8BAEI,gBAAA,uBAFJ,gBAEI,eAAA,oBAFJ,gBAEI,eAAA,oBAFJ,iBAEI,eAAA,qBAFJ,WAEI,YAAA,iBAFJ,aAEI,YAAA,iBAFJ,YAEI,UAAA,qBAAA,WAAA,qBAFJ,cAEI,MAAA,kBAFJ,gBAEI,MAAA,kBAFJ,cAEI,MAAA,kBAFJ,WAEI,MAAA,kBAFJ,cAEI,MAAA,kBAFJ,aAEI,MAAA,kBAFJ,YAEI,MAAA,kBAFJ,WAEI,MAAA,kBAFJ,YAEI,MAAA,eAFJ,WAEI,MAAA,kBAFJ,YAEI,MAAA,kBAFJ,eAEI,MAAA,yBAFJ,eAEI,MAAA,+BAFJ,YAEI,MAAA,kBAFJ,YAEI,iBAAA,kBAFJ,cAEI,iBAAA,kBAFJ,YAEI,iBAAA,kBAFJ,SAEI,iBAAA,kBAFJ,YAEI,iBAAA,kBAFJ,WAEI,iBAAA,kBAFJ,UAEI,iBAAA,kBAFJ,SAEI,iBAAA,kBAFJ,SAEI,iBAAA,eAFJ,UAEI,iBAAA,eAFJ,gBAEI,iBAAA,sBAFJ,aAEI,iBAAA,6BAFJ,iBAEI,oBAAA,cAAA,iBAAA,cAAA,YAAA,cAFJ,kBAEI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAFJ,kBAEI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAFJ,SAEI,eAAA,eAFJ,SAEI,eAAA,eAFJ,SAEI,cAAA,iBAFJ,WAEI,cAAA,YAFJ,WAEI,cAAA,gBAFJ,WAEI,cAAA,iBAFJ,WAEI,cAAA,gBAFJ,gBAEI,cAAA,cAFJ,cAEI,cAAA,gBAFJ,aAEI,uBAAA,iBAAA,wBAAA,iBAFJ,aAEI,wBAAA,iBAAA,2BAAA,iBAFJ,gBAEI,2BAAA,iBAAA,0BAAA,iBAFJ,eAEI,0BAAA,iBAAA,uBAAA,iBAFJ,SAEI,WAAA,kBAFJ,WAEI,WAAA,iBrDYN,yBqDdE,gBAEI,MAAA,eAFJ,cAEI,MAAA,gBAFJ,eAEI,MAAA,eAFJ,aAEI,QAAA,iBAFJ,mBAEI,QAAA,uBAFJ,YAEI,QAAA,gBAFJ,WAEI,QAAA,eAFJ,YAEI,QAAA,gBAFJ,gBAEI,QAAA,oBAFJ,iBAEI,QAAA,qBAFJ,WAEI,QAAA,eAFJ,kBAEI,QAAA,sBAFJ,WAEI,QAAA,eAFJ,cAEI,KAAA,EAAA,EAAA,eAFJ,aAEI,eAAA,cAFJ,gBAEI,eAAA,iBAFJ,qBAEI,eAAA,sBAFJ,wBAEI,eAAA,yBAFJ,gBAEI,UAAA,YAFJ,gBAEI,UAAA,YAFJ,kBAEI,YAAA,YAFJ,kBAEI,YAAA,YAFJ,cAEI,UAAA,eAFJ,gBAEI,UAAA,iBAFJ,sBAEI,UAAA,uBAFJ,UAEI,IAAA,YAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,gBAFJ,UAEI,IAAA,eAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,eAFJ,0BAEI,gBAAA,qBAFJ,wBAEI,gBAAA,mBAFJ,2BAEI,gBAAA,iBAFJ,4BAEI,gBAAA,wBAFJ,2BAEI,gBAAA,uBAFJ,2BAEI,gBAAA,uBAFJ,sBAEI,YAAA,qBAFJ,oBAEI,YAAA,mBAFJ,uBAEI,YAAA,iBAFJ,yBAEI,YAAA,mBAFJ,wBAEI,YAAA,kBAFJ,wBAEI,cAAA,qBAFJ,sBAEI,cAAA,mBAFJ,yBAEI,cAAA,iBAFJ,0BAEI,cAAA,wBAFJ,yBAEI,cAAA,uBAFJ,0BAEI,cAAA,kBAFJ,oBAEI,WAAA,eAFJ,qBAEI,WAAA,qBAFJ,mBAEI,WAAA,mBAFJ,sBAEI,WAAA,iBAFJ,wBAEI,WAAA,mBAFJ,uBAEI,WAAA,kBAFJ,gBAEI,MAAA,aAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,eAEI,MAAA,YAFJ,QAEI,OAAA,YAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,gBAFJ,QAEI,OAAA,eAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,eAFJ,WAEI,OAAA,eAFJ,SAEI,aAAA,YAAA,YAAA,YAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,gBAAA,YAAA,gBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,YAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,WAAA,YAAA,cAAA,YAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,gBAAA,cAAA,gBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,YAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,YAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,gBAFJ,SAEI,WAAA,eAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,eAFJ,YAEI,WAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,YAEI,aAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,YAEI,cAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,YAEI,YAAA,eAFJ,QAEI,QAAA,YAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,gBAFJ,QAEI,QAAA,eAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,eAFJ,SAEI,cAAA,YAAA,aAAA,YAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,gBAAA,aAAA,gBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,YAAA,YAAA,eAAA,YAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,gBAAA,eAAA,gBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,SAEI,eAAA,YAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,gBAFJ,SAEI,eAAA,eAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,eAEI,WAAA,eAFJ,aAEI,WAAA,gBAFJ,gBAEI,WAAA,kBrDYN,yBqDdE,gBAEI,MAAA,eAFJ,cAEI,MAAA,gBAFJ,eAEI,MAAA,eAFJ,aAEI,QAAA,iBAFJ,mBAEI,QAAA,uBAFJ,YAEI,QAAA,gBAFJ,WAEI,QAAA,eAFJ,YAEI,QAAA,gBAFJ,gBAEI,QAAA,oBAFJ,iBAEI,QAAA,qBAFJ,WAEI,QAAA,eAFJ,kBAEI,QAAA,sBAFJ,WAEI,QAAA,eAFJ,cAEI,KAAA,EAAA,EAAA,eAFJ,aAEI,eAAA,cAFJ,gBAEI,eAAA,iBAFJ,qBAEI,eAAA,sBAFJ,wBAEI,eAAA,yBAFJ,gBAEI,UAAA,YAFJ,gBAEI,UAAA,YAFJ,kBAEI,YAAA,YAFJ,kBAEI,YAAA,YAFJ,cAEI,UAAA,eAFJ,gBAEI,UAAA,iBAFJ,sBAEI,UAAA,uBAFJ,UAEI,IAAA,YAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,gBAFJ,UAEI,IAAA,eAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,eAFJ,0BAEI,gBAAA,qBAFJ,wBAEI,gBAAA,mBAFJ,2BAEI,gBAAA,iBAFJ,4BAEI,gBAAA,wBAFJ,2BAEI,gBAAA,uBAFJ,2BAEI,gBAAA,uBAFJ,sBAEI,YAAA,qBAFJ,oBAEI,YAAA,mBAFJ,uBAEI,YAAA,iBAFJ,yBAEI,YAAA,mBAFJ,wBAEI,YAAA,kBAFJ,wBAEI,cAAA,qBAFJ,sBAEI,cAAA,mBAFJ,yBAEI,cAAA,iBAFJ,0BAEI,cAAA,wBAFJ,yBAEI,cAAA,uBAFJ,0BAEI,cAAA,kBAFJ,oBAEI,WAAA,eAFJ,qBAEI,WAAA,qBAFJ,mBAEI,WAAA,mBAFJ,sBAEI,WAAA,iBAFJ,wBAEI,WAAA,mBAFJ,uBAEI,WAAA,kBAFJ,gBAEI,MAAA,aAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,eAEI,MAAA,YAFJ,QAEI,OAAA,YAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,gBAFJ,QAEI,OAAA,eAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,eAFJ,WAEI,OAAA,eAFJ,SAEI,aAAA,YAAA,YAAA,YAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,gBAAA,YAAA,gBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,YAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,WAAA,YAAA,cAAA,YAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,gBAAA,cAAA,gBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,YAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,YAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,gBAFJ,SAEI,WAAA,eAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,eAFJ,YAEI,WAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,YAEI,aAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,YAEI,cAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,YAEI,YAAA,eAFJ,QAEI,QAAA,YAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,gBAFJ,QAEI,QAAA,eAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,eAFJ,SAEI,cAAA,YAAA,aAAA,YAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,gBAAA,aAAA,gBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,YAAA,YAAA,eAAA,YAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,gBAAA,eAAA,gBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,SAEI,eAAA,YAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,gBAFJ,SAEI,eAAA,eAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,eAEI,WAAA,eAFJ,aAEI,WAAA,gBAFJ,gBAEI,WAAA,kBrDYN,yBqDdE,gBAEI,MAAA,eAFJ,cAEI,MAAA,gBAFJ,eAEI,MAAA,eAFJ,aAEI,QAAA,iBAFJ,mBAEI,QAAA,uBAFJ,YAEI,QAAA,gBAFJ,WAEI,QAAA,eAFJ,YAEI,QAAA,gBAFJ,gBAEI,QAAA,oBAFJ,iBAEI,QAAA,qBAFJ,WAEI,QAAA,eAFJ,kBAEI,QAAA,sBAFJ,WAEI,QAAA,eAFJ,cAEI,KAAA,EAAA,EAAA,eAFJ,aAEI,eAAA,cAFJ,gBAEI,eAAA,iBAFJ,qBAEI,eAAA,sBAFJ,wBAEI,eAAA,yBAFJ,gBAEI,UAAA,YAFJ,gBAEI,UAAA,YAFJ,kBAEI,YAAA,YAFJ,kBAEI,YAAA,YAFJ,cAEI,UAAA,eAFJ,gBAEI,UAAA,iBAFJ,sBAEI,UAAA,uBAFJ,UAEI,IAAA,YAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,gBAFJ,UAEI,IAAA,eAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,eAFJ,0BAEI,gBAAA,qBAFJ,wBAEI,gBAAA,mBAFJ,2BAEI,gBAAA,iBAFJ,4BAEI,gBAAA,wBAFJ,2BAEI,gBAAA,uBAFJ,2BAEI,gBAAA,uBAFJ,sBAEI,YAAA,qBAFJ,oBAEI,YAAA,mBAFJ,uBAEI,YAAA,iBAFJ,yBAEI,YAAA,mBAFJ,wBAEI,YAAA,kBAFJ,wBAEI,cAAA,qBAFJ,sBAEI,cAAA,mBAFJ,yBAEI,cAAA,iBAFJ,0BAEI,cAAA,wBAFJ,yBAEI,cAAA,uBAFJ,0BAEI,cAAA,kBAFJ,oBAEI,WAAA,eAFJ,qBAEI,WAAA,qBAFJ,mBAEI,WAAA,mBAFJ,sBAEI,WAAA,iBAFJ,wBAEI,WAAA,mBAFJ,uBAEI,WAAA,kBAFJ,gBAEI,MAAA,aAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,eAEI,MAAA,YAFJ,QAEI,OAAA,YAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,gBAFJ,QAEI,OAAA,eAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,eAFJ,WAEI,OAAA,eAFJ,SAEI,aAAA,YAAA,YAAA,YAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,gBAAA,YAAA,gBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,YAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,WAAA,YAAA,cAAA,YAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,gBAAA,cAAA,gBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,YAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,YAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,gBAFJ,SAEI,WAAA,eAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,eAFJ,YAEI,WAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,YAEI,aAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,YAEI,cAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,YAEI,YAAA,eAFJ,QAEI,QAAA,YAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,gBAFJ,QAEI,QAAA,eAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,eAFJ,SAEI,cAAA,YAAA,aAAA,YAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,gBAAA,aAAA,gBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,YAAA,YAAA,eAAA,YAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,gBAAA,eAAA,gBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,SAEI,eAAA,YAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,gBAFJ,SAEI,eAAA,eAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,eAEI,WAAA,eAFJ,aAEI,WAAA,gBAFJ,gBAEI,WAAA,kBrDYN,0BqDdE,gBAEI,MAAA,eAFJ,cAEI,MAAA,gBAFJ,eAEI,MAAA,eAFJ,aAEI,QAAA,iBAFJ,mBAEI,QAAA,uBAFJ,YAEI,QAAA,gBAFJ,WAEI,QAAA,eAFJ,YAEI,QAAA,gBAFJ,gBAEI,QAAA,oBAFJ,iBAEI,QAAA,qBAFJ,WAEI,QAAA,eAFJ,kBAEI,QAAA,sBAFJ,WAEI,QAAA,eAFJ,cAEI,KAAA,EAAA,EAAA,eAFJ,aAEI,eAAA,cAFJ,gBAEI,eAAA,iBAFJ,qBAEI,eAAA,sBAFJ,wBAEI,eAAA,yBAFJ,gBAEI,UAAA,YAFJ,gBAEI,UAAA,YAFJ,kBAEI,YAAA,YAFJ,kBAEI,YAAA,YAFJ,cAEI,UAAA,eAFJ,gBAEI,UAAA,iBAFJ,sBAEI,UAAA,uBAFJ,UAEI,IAAA,YAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,gBAFJ,UAEI,IAAA,eAFJ,UAEI,IAAA,iBAFJ,UAEI,IAAA,eAFJ,0BAEI,gBAAA,qBAFJ,wBAEI,gBAAA,mBAFJ,2BAEI,gBAAA,iBAFJ,4BAEI,gBAAA,wBAFJ,2BAEI,gBAAA,uBAFJ,2BAEI,gBAAA,uBAFJ,sBAEI,YAAA,qBAFJ,oBAEI,YAAA,mBAFJ,uBAEI,YAAA,iBAFJ,yBAEI,YAAA,mBAFJ,wBAEI,YAAA,kBAFJ,wBAEI,cAAA,qBAFJ,sBAEI,cAAA,mBAFJ,yBAEI,cAAA,iBAFJ,0BAEI,cAAA,wBAFJ,yBAEI,cAAA,uBAFJ,0BAEI,cAAA,kBAFJ,oBAEI,WAAA,eAFJ,qBAEI,WAAA,qBAFJ,mBAEI,WAAA,mBAFJ,sBAEI,WAAA,iBAFJ,wBAEI,WAAA,mBAFJ,uBAEI,WAAA,kBAFJ,gBAEI,MAAA,aAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,YAEI,MAAA,YAFJ,eAEI,MAAA,YAFJ,QAEI,OAAA,YAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,gBAFJ,QAEI,OAAA,eAFJ,QAEI,OAAA,iBAFJ,QAEI,OAAA,eAFJ,WAEI,OAAA,eAFJ,SAEI,aAAA,YAAA,YAAA,YAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,gBAAA,YAAA,gBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,aAAA,iBAAA,YAAA,iBAFJ,SAEI,aAAA,eAAA,YAAA,eAFJ,YAEI,aAAA,eAAA,YAAA,eAFJ,SAEI,WAAA,YAAA,cAAA,YAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,gBAAA,cAAA,gBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,iBAAA,cAAA,iBAFJ,SAEI,WAAA,eAAA,cAAA,eAFJ,YAEI,WAAA,eAAA,cAAA,eAFJ,SAEI,WAAA,YAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,gBAFJ,SAEI,WAAA,eAFJ,SAEI,WAAA,iBAFJ,SAEI,WAAA,eAFJ,YAEI,WAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,YAEI,aAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,YAEI,cAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,YAEI,YAAA,eAFJ,QAEI,QAAA,YAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,gBAFJ,QAEI,QAAA,eAFJ,QAEI,QAAA,iBAFJ,QAEI,QAAA,eAFJ,SAEI,cAAA,YAAA,aAAA,YAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,gBAAA,aAAA,gBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,cAAA,iBAAA,aAAA,iBAFJ,SAEI,cAAA,eAAA,aAAA,eAFJ,SAEI,YAAA,YAAA,eAAA,YAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,gBAAA,eAAA,gBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,iBAAA,eAAA,iBAFJ,SAEI,YAAA,eAAA,eAAA,eAFJ,SAEI,YAAA,YAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,gBAFJ,SAEI,YAAA,eAFJ,SAEI,YAAA,iBAFJ,SAEI,YAAA,eAFJ,SAEI,cAAA,YAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,gBAFJ,SAEI,cAAA,eAFJ,SAEI,cAAA,iBAFJ,SAEI,cAAA,eAFJ,SAEI,eAAA,YAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,gBAFJ,SAEI,eAAA,eAFJ,SAEI,eAAA,iBAFJ,SAEI,eAAA,eAFJ,SAEI,aAAA,YAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,gBAFJ,SAEI,aAAA,eAFJ,SAEI,aAAA,iBAFJ,SAEI,aAAA,eAFJ,eAEI,WAAA,eAFJ,aAEI,WAAA,gBAFJ,gBAEI,WAAA,kBrDYN,0BqDdE,iBAEI,MAAA,eAFJ,eAEI,MAAA,gBAFJ,gBAEI,MAAA,eAFJ,cAEI,QAAA,iBAFJ,oBAEI,QAAA,uBAFJ,aAEI,QAAA,gBAFJ,YAEI,QAAA,eAFJ,aAEI,QAAA,gBAFJ,iBAEI,QAAA,oBAFJ,kBAEI,QAAA,qBAFJ,YAEI,QAAA,eAFJ,mBAEI,QAAA,sBAFJ,YAEI,QAAA,eAFJ,eAEI,KAAA,EAAA,EAAA,eAFJ,cAEI,eAAA,cAFJ,iBAEI,eAAA,iBAFJ,sBAEI,eAAA,sBAFJ,yBAEI,eAAA,yBAFJ,iBAEI,UAAA,YAFJ,iBAEI,UAAA,YAFJ,mBAEI,YAAA,YAFJ,mBAEI,YAAA,YAFJ,eAEI,UAAA,eAFJ,iBAEI,UAAA,iBAFJ,uBAEI,UAAA,uBAFJ,WAEI,IAAA,YAFJ,WAEI,IAAA,iBAFJ,WAEI,IAAA,gBAFJ,WAEI,IAAA,eAFJ,WAEI,IAAA,iBAFJ,WAEI,IAAA,eAFJ,2BAEI,gBAAA,qBAFJ,yBAEI,gBAAA,mBAFJ,4BAEI,gBAAA,iBAFJ,6BAEI,gBAAA,wBAFJ,4BAEI,gBAAA,uBAFJ,4BAEI,gBAAA,uBAFJ,uBAEI,YAAA,qBAFJ,qBAEI,YAAA,mBAFJ,wBAEI,YAAA,iBAFJ,0BAEI,YAAA,mBAFJ,yBAEI,YAAA,kBAFJ,yBAEI,cAAA,qBAFJ,uBAEI,cAAA,mBAFJ,0BAEI,cAAA,iBAFJ,2BAEI,cAAA,wBAFJ,0BAEI,cAAA,uBAFJ,2BAEI,cAAA,kBAFJ,qBAEI,WAAA,eAFJ,sBAEI,WAAA,qBAFJ,oBAEI,WAAA,mBAFJ,uBAEI,WAAA,iBAFJ,yBAEI,WAAA,mBAFJ,wBAEI,WAAA,kBAFJ,iBAEI,MAAA,aAFJ,aAEI,MAAA,YAFJ,aAEI,MAAA,YAFJ,aAEI,MAAA,YAFJ,aAEI,MAAA,YAFJ,aAEI,MAAA,YAFJ,aAEI,MAAA,YAFJ,gBAEI,MAAA,YAFJ,SAEI,OAAA,YAFJ,SAEI,OAAA,iBAFJ,SAEI,OAAA,gBAFJ,SAEI,OAAA,eAFJ,SAEI,OAAA,iBAFJ,SAEI,OAAA,eAFJ,YAEI,OAAA,eAFJ,UAEI,aAAA,YAAA,YAAA,YAFJ,UAEI,aAAA,iBAAA,YAAA,iBAFJ,UAEI,aAAA,gBAAA,YAAA,gBAFJ,UAEI,aAAA,eAAA,YAAA,eAFJ,UAEI,aAAA,iBAAA,YAAA,iBAFJ,UAEI,aAAA,eAAA,YAAA,eAFJ,aAEI,aAAA,eAAA,YAAA,eAFJ,UAEI,WAAA,YAAA,cAAA,YAFJ,UAEI,WAAA,iBAAA,cAAA,iBAFJ,UAEI,WAAA,gBAAA,cAAA,gBAFJ,UAEI,WAAA,eAAA,cAAA,eAFJ,UAEI,WAAA,iBAAA,cAAA,iBAFJ,UAEI,WAAA,eAAA,cAAA,eAFJ,aAEI,WAAA,eAAA,cAAA,eAFJ,UAEI,WAAA,YAFJ,UAEI,WAAA,iBAFJ,UAEI,WAAA,gBAFJ,UAEI,WAAA,eAFJ,UAEI,WAAA,iBAFJ,UAEI,WAAA,eAFJ,aAEI,WAAA,eAFJ,UAEI,aAAA,YAFJ,UAEI,aAAA,iBAFJ,UAEI,aAAA,gBAFJ,UAEI,aAAA,eAFJ,UAEI,aAAA,iBAFJ,UAEI,aAAA,eAFJ,aAEI,aAAA,eAFJ,UAEI,cAAA,YAFJ,UAEI,cAAA,iBAFJ,UAEI,cAAA,gBAFJ,UAEI,cAAA,eAFJ,UAEI,cAAA,iBAFJ,UAEI,cAAA,eAFJ,aAEI,cAAA,eAFJ,UAEI,YAAA,YAFJ,UAEI,YAAA,iBAFJ,UAEI,YAAA,gBAFJ,UAEI,YAAA,eAFJ,UAEI,YAAA,iBAFJ,UAEI,YAAA,eAFJ,aAEI,YAAA,eAFJ,SAEI,QAAA,YAFJ,SAEI,QAAA,iBAFJ,SAEI,QAAA,gBAFJ,SAEI,QAAA,eAFJ,SAEI,QAAA,iBAFJ,SAEI,QAAA,eAFJ,UAEI,cAAA,YAAA,aAAA,YAFJ,UAEI,cAAA,iBAAA,aAAA,iBAFJ,UAEI,cAAA,gBAAA,aAAA,gBAFJ,UAEI,cAAA,eAAA,aAAA,eAFJ,UAEI,cAAA,iBAAA,aAAA,iBAFJ,UAEI,cAAA,eAAA,aAAA,eAFJ,UAEI,YAAA,YAAA,eAAA,YAFJ,UAEI,YAAA,iBAAA,eAAA,iBAFJ,UAEI,YAAA,gBAAA,eAAA,gBAFJ,UAEI,YAAA,eAAA,eAAA,eAFJ,UAEI,YAAA,iBAAA,eAAA,iBAFJ,UAEI,YAAA,eAAA,eAAA,eAFJ,UAEI,YAAA,YAFJ,UAEI,YAAA,iBAFJ,UAEI,YAAA,gBAFJ,UAEI,YAAA,eAFJ,UAEI,YAAA,iBAFJ,UAEI,YAAA,eAFJ,UAEI,cAAA,YAFJ,UAEI,cAAA,iBAFJ,UAEI,cAAA,gBAFJ,UAEI,cAAA,eAFJ,UAEI,cAAA,iBAFJ,UAEI,cAAA,eAFJ,UAEI,eAAA,YAFJ,UAEI,eAAA,iBAFJ,UAEI,eAAA,gBAFJ,UAEI,eAAA,eAFJ,UAEI,eAAA,iBAFJ,UAEI,eAAA,eAFJ,UAEI,aAAA,YAFJ,UAEI,aAAA,iBAFJ,UAEI,aAAA,gBAFJ,UAEI,aAAA,eAFJ,UAEI,aAAA,iBAFJ,UAEI,aAAA,eAFJ,gBAEI,WAAA,eAFJ,cAEI,WAAA,gBAFJ,iBAEI,WAAA,kBChCV,0BD8BM,MAEI,UAAA,iBAFJ,MAEI,UAAA,eAFJ,MAEI,UAAA,kBAFJ,MAEI,UAAA,kBCbV,aDWM,gBAEI,QAAA,iBAFJ,sBAEI,QAAA,uBAFJ,eAEI,QAAA,gBAFJ,cAEI,QAAA,eAFJ,eAEI,QAAA,gBAFJ,mBAEI,QAAA,oBAFJ,oBAEI,QAAA,qBAFJ,cAEI,QAAA,eAFJ,qBAEI,QAAA,sBAFJ,cAEI,QAAA","sourcesContent":["/*!\n * Bootstrap v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n font-size: $font-size-root;\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: $body-text-align;\n background-color: $body-bg; // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`
` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`